
/* ===== Variables ===== */
:root {
  --green-dark: #1a4d1a;
  --green-darker: #083119;
  --green-heading: #385C3A;
  --gold: #B79C4F;
  --gold-mid: #c4a95a;
  --gold-light: #f0e6c8;
  --gold-dark: #a68e46;
  --gold-darker: #9a7b2d;
  --gold-hover-light: #e8dbb8;
  --text-dark: #1a1a1a;
  --text-body: #4A4A4A;
  --marble-bg: #f8f6f3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Open Sans', system-ui, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-body);
  background: var(--marble-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== Marble background (sections) ===== */
.section {
  background: var(--marble-bg);
  background-image: url('images/white-marble-bg.jpeg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  border-top: 4px solid var(--gold);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background: url('images/white-stone.png') center / cover no-repeat;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow-x: hidden;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 96px;
  width: auto;
}
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-dark); }

/* Language toggle (English | Spanish) */
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--sans);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-lang-option {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: #888;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang-option:hover {
  color: var(--text-body);
}
.nav-lang-option.active {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-lang-sep {
  color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Shared base for nav CTA buttons */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Green (phone) CTA */
.nav-cta-btn.nav-cta-phone {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}
.nav-cta-btn.nav-cta-phone:hover {
  background: var(--green-darker);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

/* Gold CTA – same as Home Page #B79C4F */
.nav-cta-btn:not(.nav-cta-phone) {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav-cta-btn:not(.nav-cta-phone):hover {
  background: var(--gold-dark);
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4rem) 3rem clamp(1.5rem, 6vw, 4rem);
  text-align: left;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #d4af37;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-headline-brand {
  font-size: 1.45em;
  display: inline-block;
}
.hero-headline-accent {
  color: #d4af37;
  display: block;
  margin-top: 0.25rem;
}
/* Hero: headline only */
.hero-content-only .hero-headline { margin-bottom: 0; }

/* ===== Hero Scar: section height = full image (no crop) ===== */
.hero-scar {
  min-height: 0;
  align-items: stretch;
  overflow: visible;
}
.hero-scar .hero-bg {
  position: relative;
  inset: auto;
  flex: 0 0 auto;
  width: 100%;
}
.hero-scar .hero-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  vertical-align: bottom;
}
.hero-scar .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex: none;
  width: auto;
  max-width: 85%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(4vh, 8vw, 10vh);
  padding-bottom: clamp(2rem, 6vw, 4rem);
  padding-left: clamp(2.5rem, 8vw, 5rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  margin-left: clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  overflow: visible;
}
.hero-scar .hero-content > * {
  pointer-events: auto;
}
.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  opacity: 0.95;
}
.hero-headline-scar {
  display: block;
  margin: 0;
  line-height: 0.95;
  max-width: 100%;
}
.hero-headline-line {
  display: block;
}
/* Service name: smaller supporting line so main headline dominates */
.hero-headline-scar .hero-headline-service {
  display: block !important;
  white-space: normal;
  letter-spacing: 0.18em;
  word-spacing: 0.3em;
  font-size: 0.45em;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 0.2em;
  opacity: 0.92;
  font-weight: 500;
}
.hero-headline-scar .hero-headline-location {
  font-size: 0.45em;
  opacity: 0.9;
  font-weight: 500;
}
/* Force block; no extra gap between "Every Scar" and "Has A Story." */
.hero-headline-scar .hero-headline-line {
  display: block !important;
  white-space: normal;
}
.hero-headline-scar .hero-headline-line:nth-child(3) {
  margin-top: 0;
}
.hero-headline-main,
.hero-headline-accent-script {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 8vw, 6.25rem);
  font-weight: 700;
  font-style: italic;
  display: inline;
  white-space: normal;
}
/* Same gold gradient as CTA button */
.hero-headline-scar .hero-headline-main,
.hero-headline-scar .hero-headline-accent-script {
  background: linear-gradient(135deg, #8B6914, #D4AF37, #F5D060, #C9A227, #8B6914);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #C9A227;
  text-shadow: none;
}
/* Spanish: sized to sit within the green area without touching before/after graphics */
html[lang="es"] .hero-headline-scar .hero-headline-main,
html[lang="es"] .hero-headline-scar .hero-headline-accent-script {
  font-size: clamp(3.25rem, 7.5vw, 5.75rem);
}

/* ===== Hero sub (white marble section below hero) ===== */
.hero-sub {
  padding: 4rem 1.5rem;
}
.hero-sub-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-sub-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.hero-sub-headline .text-green { color: var(--green-heading); }
.hero-sub-headline .text-gold { color: var(--gold); }
.hero-sub-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 2rem;
}
.hero-sub-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.hero-sub-card {
  background: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  min-width: 140px;
}
.hero-sub-card-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hero-sub-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
}
.hero-sub-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.hero-sub-link {
  color: var(--green-heading);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.hero-sub-link:hover { text-decoration: underline; }
.hero-sub-note {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0 0 1.5rem;
  opacity: 0.9;
}
.hero-sub-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
.hero-sub-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  color: var(--text-body);
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  padding: 0 0.25rem;
}
.hero-sub-benefits li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.hero-sub-benefits .stars { font-size: 0.85em; }
.hero-sub-benefits .icon-caduceus,
.hero-sub-benefits .icon-sparkle,
.hero-sub-benefits .icon-microscope,
.hero-sub-benefits .icon-pin,
.hero-sub-benefits .icon-suites {
  width: 14px;
  height: 14px;
}
.stars { color: #c9a84c; }
.icon-capsule, .icon-check, .icon-box, .icon-suites, .icon-caduceus, .icon-sparkle, .icon-microscope, .icon-pin {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a8d5a2'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.icon-capsule {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e57373' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath fill='%23ffd54f' d='M12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z'/%3E%3C/svg%3E");
}
.icon-suites {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}
.icon-box {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238d6e63'%3E%3Cpath d='M20 8H4V6h16v2zm-2 6H6v-2h12v2zm4-8H2v16h20V6z'/%3E%3C/svg%3E");
}
.icon-caduceus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M12 2c.55 0 1 .45 1 1v1h2V3c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v2h1c.55 0 1 .45 1 1s-.45 1-1 1h-2.17c.42.74.67 1.58.67 2.5 0 2.22-1.5 4.08-3.5 4.66V20h2c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1h2v-2.34c-2-.58-3.5-2.44-3.5-4.66 0-.92.25-1.76.67-2.5H5c-.55 0-1-.45-1-1s.45-1 1-1h1V5H5c-.55 0-1-.45-1-1s.45-1 1-1h1V3c0-.55.45-1 1-1s1 .45 1 1v1h2V3c0-.55.45-1 1-1zm-2 9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z'/%3E%3C/svg%3E");
}
.icon-sparkle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M12 2l1.5 4.5L18 8l-4.5 1.5L12 14l-1.5-4.5L6 8l4.5-1.5L12 2zm-2 16l1.2 3.6L14 20l-2.8-1.2L10 16l-1.2 2.8L6 20l2.8-1.2L10 16z'/%3E%3C/svg%3E");
}
.icon-microscope {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2378909a'%3E%3Cpath d='M19.5 3h-3v2h1.5v2.09c-2.39.25-4.24 2.28-4.48 4.66L4.5 14.59V16h-2v2h2v2h2v-2h2.52l2.41-2.41c.35.17.72.28 1.11.32V21h4v-2h-2.5v-4.09c2.39-.25 4.24-2.28 4.48-4.66L19.5 7.09V5h1.5V3zm-4 4.09V9h-2.91c.05-.5.2-.97.45-1.41L15.5 7.09zM7.5 12.41l2.41-2.41c.35.17.72.28 1.11.32V18h-4v-3.09c2.39-.25 4.24-2.28 4.48-4.66L7.5 7.09v5.32z'/%3E%3C/svg%3E");
}
.icon-pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d32f2f'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* ===== Gold CTA button (same as Home Page #B79C4F) ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}
.btn-gold.btn-link { background: transparent; box-shadow: none; color: var(--gold); }
.btn-gold.btn-link:hover { color: var(--gold-darker); text-decoration: underline; transform: none; }
.btn-submit { width: 100%; margin-top: 0.5rem; }

/* ===== Section typography ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.25;
}
.text-gold { color: var(--gold); }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-body);
  font-size: 1rem;
}

/* ===== Journey / Timeline ===== */
.section-journey .section-inner { max-width: 720px; }
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  margin-left: -4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.timeline-content { margin-left: 0; }
.timeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.timeline-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

/* ===== Four Reasons ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 1rem;
}
.reason-block {
  position: relative;
}
.reason-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1rem;
  max-width: 80%;
}
.reason-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.reason-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.reason-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

/* ===== The Science (two columns) ===== */
.section-headline.science-headline { text-align: left; }
.science-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.science-col p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.science-col p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .science-two-col { grid-template-columns: 1fr; }
}

/* ===== Why This Works ===== */
.why-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-works-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.why-works-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.why-works-up { background: rgba(56, 92, 58, 0.12); color: var(--green-heading); }
.why-works-down { background: rgba(201, 168, 76, 0.2); color: var(--gold-dark); }
.why-works-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}
.why-works-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.why-works-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .why-works-grid { grid-template-columns: 1fr; }
}

/* ===== Who We Help ===== */
.who-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.who-help-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.who-help-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.who-help-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
}
.who-help-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .who-help-grid { grid-template-columns: 1fr; }
}

/* ===== The Program (timeline) ===== */
.section-program-inner { max-width: 720px; }
.program-intro {
  text-align: center;
  margin: 0 auto 2rem;
  color: var(--text-body);
  font-size: 1rem;
  max-width: 560px;
}
.program-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.program-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.program-item {
  position: relative;
  padding-bottom: 2rem;
}
.program-item:last-child { padding-bottom: 0; }
.program-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}
.program-marker-check {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-size: 0.9rem;
}
.program-content { margin-left: 0; }
.program-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin: 0 0 0.25rem;
}
.program-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.program-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

/* ===== Why Choose Us ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-choose-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  text-align: center;
}
.why-choose-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.why-choose-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.why-choose-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* ===== Our Commitment ===== */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.commitment-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.commitment-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.commitment-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.commitment-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .commitment-grid { grid-template-columns: 1fr; }
}

/* ===== Real Stories ===== */
.section-stories-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

/* Shine effect frame for REAL STORIES (user-supplied code) */
.testimonials-headline-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px 16px;
  background: transparent;
  border: 10px solid #c9a84c;
  border-radius: 0;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(201, 168, 76, 0.45),
    0 6px 24px rgba(143, 111, 34, 0.28);
}
.testimonials-headline-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  padding: 10px;
  background: linear-gradient(165deg, #e8d5a3 0%, #d4af37 20%, #f5e6b8 50%, #c9a84c 80%, #9a7b2d 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.testimonials-headline-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  padding: 10px;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 248, 220, 1) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  animation: frameShimmer 2.5s linear infinite;
}
@keyframes frameShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.testimonials-headline {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-heading);
  letter-spacing: 0.02em;
}

.stories-left {
  text-align: left;
}
.stories-desc {
  margin: 1.25rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
}
.stories-left .btn-gold { margin-top: 0.5rem; }

.stories-right { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-stars {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}
.testimonial-name {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-meta {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.9;
}
.testimonial-verified {
  margin: 0;
  font-size: 0.75rem;
  color: #5a9e5a;
  font-weight: 600;
}

@media (max-width: 800px) {
  .section-stories-inner { grid-template-columns: 1fr; }
  .stories-left { margin-bottom: 0.5rem; text-align: center; }
  .testimonials-headline-frame { margin-left: auto; }
}

/* ===== FAQ ===== */
.section-faq .section-inner { max-width: 680px; }
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(201, 168, 76, 0.08); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.25rem 1rem;
}
.faq-answer p {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== Consultation ===== */
.consultation-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.consultation-headline {
  margin: 0 0 0.5rem;
  text-align: left;
}
.consultation-sub {
  font-size: 1.1rem;
  color: var(--green-heading);
  font-weight: 600;
  text-align: left;
  margin: 0 0 0.75rem;
}
.consultation-desc {
  text-align: left;
  margin: 0 0 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}
.contact-phone {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.contact-phone:hover { color: var(--green-darker); }
.contact-item span { color: var(--green-heading); font-size: 0.95rem; }
.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.contact-icon-phone { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 013.07-8.67A2 2 0 0119.4 2h3a2 2 0 012 2.18 19.79 19.79 0 01-3.07 8.67'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-pin { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-clock { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center/14px no-repeat; }

.consultation-benefits {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.consultation-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.consultation-how-fast {
  background: rgba(255,255,255,0.7);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}
.consultation-how-fast h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}
.consultation-how-fast p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}
.consultation-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-body);
  text-align: center;
}

.consultation-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.25rem;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 1.25rem;
}
.consultation-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-heading);
  margin-bottom: 0.35rem;
}
.consultation-form input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: #fafafa;
}
.consultation-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: var(--sans);
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: #fafafa;
}
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.consultation-form textarea {
  resize: vertical;
  min-height: 80px;
}
.section-consultation .section-label { text-align: center; }
.section-consultation .consultation-headline.section-headline { text-align: center; margin-bottom: 1.5rem; }
.consultation-intro {
  font-size: 1.1rem;
  color: var(--green-heading);
  font-weight: 600;
  text-align: left;
  margin: 0 0 0.5rem;
}

@media (max-width: 760px) {
  .consultation-two-col { grid-template-columns: 1fr; }
}

/* ===== Related Services (marble layout) ===== */
.related-services-section {
  background: #f8f6f3;
  background-image: url('images/white-stone.png');
  background-size: cover;
  background-position: center;
  padding: 70px 40px;
}
.related-services-section .related-services-subtitle {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #4a4a4a;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
}
.related-services-section .related-services-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a4d1a;
  text-align: center;
  margin: 0 0 36px;
  border: none;
  background: none;
}
.related-services-section .related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.related-services-section .related-services-card {
  text-decoration: none;
  display: block;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-top: 2px solid var(--gold);
  padding: 28px 24px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.related-services-section .related-services-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}
.related-services-section .related-services-card h3 {
  font-family: var(--serif);
  color: var(--green-dark);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.related-services-section .related-services-card p {
  color: var(--text-body);
  font-size: 0.85rem;
  margin: 0 0 14px;
  line-height: 1.6;
}
.related-services-section .related-services-card .related-services-cta {
  color: var(--gold-dark);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.related-services-section .related-services-card:hover .related-services-cta {
  color: var(--gold-darker);
}
@media (max-width: 600px) {
  .related-services-section { padding: 50px 20px; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--marble-bg);
  background-image: url('images/white-marble-bg.jpeg');
  background-size: cover;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 4px solid var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}
.footer-phone {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}
.footer-phone:hover { color: var(--green-darker); }
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.9;
  margin: 0 0 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.footer-legal {
  font-size: 0.8rem;
}
.footer-legal a {
  color: var(--gold);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ===== Popup consultation form ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay[hidden] {
  display: none !important;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.popup-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow: visible;
}
.popup-form-wrap {
  margin: 0;
  overflow-y: auto;
  max-height: 90vh;
  padding-top: 3rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-body);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: color 0.2s, background 0.2s;
}
.popup-close:hover {
  color: var(--text-dark);
  background: #f5f5f5;
}

/* ===== Mobile & responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-lang-toggle { padding: 5px 10px; font-size: 0.8rem; }
  .nav-ctas { gap: 8px; }
  .nav-cta-btn { min-width: 0; padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .nav-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .nav-logo {
    flex: 0 0 auto;
  }
  .nav-lang-toggle {
    margin-left: auto;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .nav-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  .section {
    padding: 2.5rem 1rem;
  }
  .section-inner {
    padding: 0;
  }
  .hero {
    min-height: 65vh;
  }
  /* Scar hero: no white padding – section height = image only; gold text left on green marble */
  .hero.hero-scar {
    min-height: 0;
    display: block;
    position: relative;
  }
  .hero.hero-scar .hero-bg {
    position: relative;
    width: 100%;
  }
  .hero.hero-scar .hero-bg img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero.hero-scar .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: auto;
    max-width: 90%;
    margin: 0;
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem) clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: transparent;
  }
  .hero.hero-scar .hero-headline-line:nth-child(3) {
    margin-top: 0;
  }
  .hero.hero-scar .hero-headline-service {
    font-size: 0.38em;
    letter-spacing: 0.12em;
    word-spacing: 0.2em;
  }
  .hero.hero-scar .hero-headline-location {
    font-size: 0.38em;
  }
  .hero.hero-scar .hero-headline-main,
  .hero.hero-scar .hero-headline-accent-script {
    font-size: clamp(1.75rem, 6vw, 2.6rem);
    line-height: 1.2;
  }
  .hero-content {
    padding: 1.75rem 1rem 2rem 1rem;
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  }
  .hero-headline-main,
  .hero-headline-accent-script {
    font-size: clamp(3.25rem, 8.5vw, 5.25rem);
  }
  .hero-tagline {
    font-size: clamp(0.65rem, 2vw, 0.8rem);
  }
  .hero-sub {
    padding: 2.5rem 1rem;
  }
  .hero-sub-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .hero-sub-desc {
    margin-bottom: 1.5rem;
  }
  .hero-sub-cards {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-sub-card {
    min-width: 100%;
    padding: 1rem 1.25rem;
  }
  .hero-sub-cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.5rem;
  }
  .hero-sub-cta-row .btn-gold {
    width: 100%;
    justify-content: center;
  }
  .hero-sub-benefits {
    gap: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
  .hero-sub-benefits .icon-caduceus,
  .hero-sub-benefits .icon-sparkle,
  .hero-sub-benefits .icon-microscope,
  .hero-sub-benefits .icon-pin,
  .hero-sub-benefits .icon-suites {
    width: 12px;
    height: 12px;
  }
  .section-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
  }
  .section-intro {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  .timeline {
    padding-left: 1.75rem;
  }
  .timeline-marker {
    width: 12px;
    height: 12px;
    left: -1.75rem;
    margin-left: -3px;
  }
  .timeline-title {
    font-size: 1.25rem;
  }
  .timeline-body {
    font-size: 0.9rem;
  }
  .timeline-item {
    padding-bottom: 2rem;
  }
  .reasons-grid {
    gap: 1.5rem 1rem;
    margin-top: 0.5rem;
  }
  .reason-num {
    font-size: 2rem;
  }
  .reason-title {
    font-size: 0.75rem;
  }
  .reason-body {
    font-size: 0.85rem;
  }
  .science-two-col {
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .science-col p {
    font-size: 0.9rem;
  }
  .section-stories-inner {
    gap: 2rem;
  }
  .testimonials-headline-frame {
    padding: 12px 20px 14px;
  }
  .testimonials-headline {
    font-size: 1.5rem;
  }
  .testimonial-card {
    padding: 1.25rem;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .consultation-two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .consultation-form-wrap {
    order: -1;
    padding: 1.5rem;
  }
  .faq-question {
    padding: 1rem 1rem;
    min-height: 48px;
    align-items: center;
  }
  .form-title {
    font-size: 1.35rem;
  }
  .consultation-how-fast {
    padding: 0.875rem 1rem;
  }
  .site-footer {
    padding: 1.5rem 1rem 1.25rem;
  }
  .footer-bottom {
    padding: 0 0.5rem;
  }
  .footer-copy {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .footer-seo {
    font-size: 0.75rem;
  }
  .footer-legal {
    font-size: 0.75rem;
  }
  .popup-overlay {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  .popup-box {
    max-width: 100%;
  }
  .popup-close {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 10px 12px;
    gap: 8px;
  }
  .nav-lang-toggle { padding: 4px 8px; font-size: 0.75rem; }
  .nav-logo img {
    height: 64px;
  }
  .nav-cta-btn {
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 14px;
  }
  .section {
    padding: 2rem 1rem;
  }
  .hero {
    min-height: 55vh;
  }
  .hero.hero-scar .hero-content {
    width: auto;
    max-width: 92%;
    padding: 1rem clamp(0.75rem, 3vw, 1.25rem) 1.25rem clamp(0.75rem, 3vw, 1.25rem);
  }
  .hero.hero-scar .hero-headline-line:nth-child(3) {
    margin-top: 0;
  }
  .hero.hero-scar .hero-headline-service {
    font-size: 0.35em;
    letter-spacing: 0.1em;
    word-spacing: 0.15em;
  }
  .hero.hero-scar .hero-headline-location {
    font-size: 0.35em;
  }
  .hero.hero-scar .hero-headline-main,
  .hero.hero-scar .hero-headline-accent-script {
    font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  }
  .hero-content {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 7vw, 2.25rem);
  }
  .hero-headline-main,
  .hero-headline-accent-script {
    font-size: clamp(2.75rem, 8vw, 4rem);
  }
  .hero-tagline {
    font-size: clamp(0.6rem, 2.5vw, 0.75rem);
    letter-spacing: 0.15em;
  }
  .hero-sub-headline {
    font-size: 1.5rem;
  }
  .hero-sub-note {
    font-size: 0.8rem;
  }
  .btn-gold {
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }
  .section-label {
    font-size: 0.7rem;
  }
  .section-headline {
    font-size: 1.5rem;
  }
  .timeline-label {
    font-size: 0.65rem;
  }
  .timeline-title {
    font-size: 1.1rem;
  }
  .reason-num {
    font-size: 1.75rem;
  }
  .testimonials-headline {
    font-size: 1.35rem;
  }
  .consultation-headline {
    font-size: 1.35rem;
  }
  .consultation-sub {
    font-size: 1rem;
  }
  .contact-item {
    margin-bottom: 1rem;
  }
  .footer-copy {
    font-size: 0.8rem;
  }
}

