
/* ===== 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;
  --display: 'Bebas Neue', Impact, 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-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 77, 26, 0.4);
}

/* 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);
}
.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;
  width: 100%;
  height: 95vh;
  min-height: 400px;
  max-height: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem) clamp(1.5rem, 6vw, 4rem);
  text-align: left;
  box-sizing: border-box;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 800;
  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: headline on left (emerald) only, no overlap with before/after image ===== */
.hero-scar .hero-content {
  flex: 0 0 auto;
  width: min(48%, 520px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(2.25rem, 8vw, 5rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
  padding-left: clamp(1.5rem, 5vw, 3.5rem);
  padding-right: clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}
.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 block: new font and layout for men's med spa (scales with viewport) */
.hero-headline-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: clamp(0.2rem, 0.5vw, 0.5rem) clamp(1rem, 2.5vw, 1.25rem) clamp(0.75rem, 1.5vw, 1rem) 0;
  border-radius: 4px;
  box-sizing: border-box;
}
.hero-headline-block::before {
  content: '';
  position: absolute;
  inset: 0 -0.5rem -0.35rem -1.5rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  border-radius: 4px;
  z-index: -1;
  pointer-events: none;
}
.hero-headline-overline {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-headline-rule {
  width: 2.5em;
  height: 2px;
  background: var(--gold);
  margin: clamp(0.4em, 1vw, 0.6em) 0 clamp(0.3em, 0.8vw, 0.4em) 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.hero-headline-scar {
  display: block;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
/* Each line on its own row, no mid-line wrap */
.hero-headline-line {
  display: block;
  white-space: nowrap;
}
.hero-headline-scar .hero-headline-line {
  display: block !important;
}
/* Space between the three lines (Perform Better / Look Better / Age Better) – scales with viewport */
.hero-headline-scar .hero-headline-line + .hero-headline-line {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}
.hero-headline-nowrap {
  white-space: nowrap;
}
/* Men headline: Oswald (bold, masculine) + home page CTA gold (#B79C4F) */
.hero-headline-scar .hero-headline-support,
.hero-headline-scar .hero-headline-location {
  font-size: 0.45em !important;
  opacity: 0.9;
  font-weight: 500;
}
.hero-headline-scar .hero-headline-main,
.hero-headline-scar .hero-headline-accent-script {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.85rem, 7vw, 5.25rem);
  font-weight: 700;
  font-style: normal;
  display: block;
  white-space: nowrap;
  color: #B79C4F;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.6);
}
.hero-headline-main {
  font-family: var(--display);
  font-size: clamp(3.75rem, 9vw, 7rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.04em;
  line-height: 1.15;
  display: block;
}
.hero-headline-location {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65), 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.12em;
  margin: 0.5em 0 0;
  opacity: 0.95;
}
.hero-location-nowrap {
  white-space: nowrap;
}

/* ===== 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(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.2;
  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: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub-card {
  background: #fff;
  padding: 1.25rem 1rem;
  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: 0;
}
.hero-sub-card-value {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.hero-sub-card-star {
  color: var(--gold);
  margin-right: 0.15em;
}
.hero-sub-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  line-height: 1.3;
}
.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: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.75rem;
  color: var(--text-body);
  font-size: 0.9rem;
}
.hero-sub-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stars { color: #c9a84c; }
.icon-capsule, .icon-check, .icon-box, .icon-suite {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.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-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-suite {
  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 3L2 9v12h6v-6h8v6h6V9L12 3zm0 2.18l4 2.5v1.32H8V7.68l4-2.5zM4 10.82l7 4.18v5h2v-5l7-4.18V10L12 7.18 4 10v.82z'/%3E%3C/svg%3E");
}

/* ===== Men's Services (same layout as other sections: marble, label, headline, list) ===== */
.section-services-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.section-services-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-services-headline {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--green-heading);
  margin: 0 0 0.35rem;
  text-align: center;
  line-height: 1.25;
}
.section-services-headline .text-gold { color: var(--gold); }
.section-services-sub {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 2rem;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.services-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.services-item::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.section-services-cta-line {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.btn-services-cta {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.section-services-phone {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}
.section-services-phone a {
  color: var(--green-heading);
  font-weight: 600;
  text-decoration: none;
}
.section-services-phone a:hover { text-decoration: underline; color: var(--gold-dark); }

/* ===== 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; }
.btn-green {
  display: inline-block;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--green-dark);
  transition: all 0.3s ease;
}
.btn-green:hover {
  background: var(--green-darker);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== 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: 800;
  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;
}

/* Gap section: larger label and headline */
.section-gap .section-label {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.section-gap .section-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

/* ===== 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); }
  .gap-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}
@media (max-width: 560px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
}

/* ===== The Gap (problem most men ignore) ===== */
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 1rem;
}
.gap-block {
  position: relative;
}
.gap-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.gap-title {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.gap-body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

/* ===== Why Henderson Men Choose BP Royal + Comparison Table ===== */
.section-why-choose .section-intro {
  max-width: 720px;
}
.why-choose-grid {
  margin-top: 1.5rem;
}
.why-choose-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}
.why-choose-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 2rem;
}
.why-choose-card {
  background: #fff;
  padding: 1.5rem 1.25rem;
  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: left;
}
.why-choose-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.why-choose-body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
.compare-table-wrap {
  margin-top: 3rem;
}
.compare-table-heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-heading);
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.3;
}
.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--text-body);
  vertical-align: top;
}
.compare-table thead th {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-heading);
  background: rgba(201, 168, 76, 0.08);
  border-bottom: 2px solid var(--gold);
}
.compare-table .compare-col-bp {
  color: var(--green-heading);
  font-weight: 600;
}
.compare-table .compare-col-bp .compare-check {
  color: var(--green-dark);
}
.compare-check {
  color: var(--green-dark);
  font-weight: 700;
  margin-right: 0.35rem;
}
.compare-x {
  color: #b33;
  font-weight: 700;
  margin-right: 0.35rem;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .gap-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-four { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}
@media (max-width: 560px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr; }
  .why-choose-four { grid-template-columns: 1fr; }
  .why-choose-two { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
}

/* ===== Every Treatment Dosed for Men ===== */
.section-treatments .section-intro {
  max-width: 720px;
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 1rem;
}
.treatment-card {
  background: #fff;
  padding: 1.5rem 1.25rem;
  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: left;
}
.treatment-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.treatment-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-heading);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.treatment-tagline {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 0.6rem;
}
.treatment-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}
.treatment-desc strong { color: var(--text-dark); }
.treatment-tags {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-body);
  margin: 0 0 0.75rem;
  opacity: 0.9;
}
.treatments-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.treatments-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
}

/* ===== 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; }
}

/* ===== 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-text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}
.testimonial-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-body);
  opacity: 0.9;
}

@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;
}
.faq-answer a {
  color: var(--green-heading);
  font-weight: 600;
  text-decoration: none;
}
.faq-answer a:hover {
  text-decoration: underline;
  color: var(--gold-dark);
}

/* ===== 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;
  font-weight: 800;
}
.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 h3.consultation-how-fast-title,
.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;
}

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

/* ===== Footer (old layout: centered single column, gold marble BG) ===== */
.site-footer {
  position: relative;
  background: #e8e2d8;
  background-image: url('../images/white-marble-bg.jpeg');
  background-size: cover;
  background-position: center;
  padding: 2.5rem 1.5rem 1rem;
  border-top: 4px solid var(--gold);
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(232, 226, 216, 0.4) 50%, rgba(201, 168, 76, 0.08) 100%);
  pointer-events: none;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-inner-old {
  text-align: center;
}
.footer-main {
  max-width: 520px;
  margin: 0 auto 1.25rem;
}
.footer-brand-name {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}
.footer-brand-name .footer-gold {
  color: var(--gold-darker);
}
.footer-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin: 0 0 0.75rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.footer-address {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}
.footer-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  display: inline-block;
}
.footer-phone:hover {
  color: var(--gold-darker);
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-body);
  margin: 0 auto 1.5rem;
  max-width: 640px;
  line-height: 1.5;
}
.footer-copy .footer-phone {
  font-size: inherit;
}
.footer-links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.footer-heading {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-legal {
  font-size: 0.8rem;
  color: var(--text-body);
  margin: 0;
}
.footer-legal a {
  color: var(--green-heading);
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--gold-darker);
  text-decoration: underline;
}

/* Footer SEO / disclaimer text — very low visibility */
.footer-seo-text {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-seo-line1,
.footer-seo-line2 {
  font-size: 0.6rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.22);
  margin: 0 0 0.35rem;
  font-weight: 400;
}
.footer-seo-line2 {
  margin-bottom: 0;
}

/* Footer keyword block — subtle, no box */
.footer-keywords {
  padding: 0.5rem 0 0;
  text-align: center;
  margin-top: 0.75rem;
}
.footer-keywords-copy,
.footer-keywords-text {
  font-size: 0.55rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.25);
  margin: 0 0 0.25rem;
  font-weight: 400;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-keywords-text {
  margin-bottom: 0;
}

/* ===== 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;
    max-width: 100vw;
  }
  main {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-inner {
    min-width: 0;
    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;
  }
  .nav-cta-btn.nav-cta-consult {
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
  }
  section {
    padding: 2.5rem 1rem;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .section-inner {
    padding: 0 0.25rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero {
    height: 75vh;
    min-height: 360px;
    max-height: none;
  }
  /* Men's one-pager: move headline below the man image on mobile */
  .hero.hero-scar {
    flex-direction: column;
    height: auto;
    min-height: 0;
    align-items: stretch;
  }
  .hero.hero-scar .hero-bg {
    position: relative;
    height: 55vh;
    min-height: 280px;
    max-height: 420px;
    flex-shrink: 0;
  }
  .hero.hero-scar .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero.hero-scar .hero-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 2rem 1.25rem 2.5rem;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(180deg, var(--green-darker) 0%, #0d2818 100%);
  }
  .hero.hero-scar .hero-headline-block {
    margin-top: 0;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .hero.hero-scar .hero-headline-block::before {
    display: none;
  }
  .hero.hero-scar .hero-headline,
  .hero.hero-scar .hero-headline-scar,
  .hero.hero-scar .hero-headline-line,
  .hero.hero-scar .hero-headline-main {
    text-align: center;
    width: 100%;
  }
  /* PERFORM BETTER. LOOK BETTER. AGE BETTER. – centered, stacked, no truncation */
  .hero.hero-scar .hero-headline-scar .hero-headline-main {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: clamp(2rem, 9vw, 3.25rem);
  }
  .hero.hero-scar .hero-headline-rule {
    margin-left: auto;
    margin-right: auto;
  }
  .hero.hero-scar .hero-headline-location {
    text-align: center;
    width: 100%;
  }
  .hero-content {
    padding: clamp(1.5rem, 4vw, 1.75rem) 1rem clamp(1.5rem, 4vw, 2rem) 1rem;
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(1.85rem, 7vw, 2.75rem);
  }
  .hero-headline-overline {
    letter-spacing: 0.18em;
    font-size: clamp(1.4rem, 5vw, 1.85rem);
  }
  .hero-headline-main {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  .hero-headline-scar .hero-headline-support,
  .hero-headline-scar .hero-headline-location {
    font-size: 0.45em !important;
  }
  /* Every Treatment section: stack cards and center headline + intro */
  .section-treatments .section-inner {
    text-align: center;
  }
  .section-treatments .section-label,
  .section-treatments .section-headline,
  .section-treatments .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .section-treatments .section-intro {
    max-width: 100%;
  }
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .treatment-card {
    text-align: left;
    max-width: 100%;
  }
  .hero-tagline {
    font-size: clamp(0.65rem, 2vw, 0.8rem);
  }
  .hero-sub {
    padding: 2.5rem 1rem;
  }
  .section-services-headline {
    font-size: clamp(1.85rem, 6vw, 2.75rem);
  }
  .services-item {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
  .hero-sub-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-sub-headline {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-sub-desc {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    padding: 0 4px;
  }
  .hero-sub-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .hero-sub-card {
    padding: 0.875rem 0.75rem;
    min-width: 0;
  }
  .hero-sub-card-value {
    font-size: 1.25rem;
  }
  .hero-sub-card-label {
    font-size: 0.65rem;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .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;
    white-space: normal;
    text-align: center;
  }
  .hero-sub-note {
    font-size: 0.8rem;
  }
  .hero-sub-benefits {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    font-size: 0.8rem;
    padding: 0 4px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-sub-benefits li {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
  }
  .section-headline {
    font-size: clamp(1.45rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .section-gap .section-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section-gap .section-label { font-size: 0.8rem; }
  .section-gap .section-headline {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .section-intro {
    margin-bottom: 1.25rem;
    padding: 0 4px;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .gap-block {
    min-width: 0;
  }
  .gap-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .gap-body {
    font-size: 0.875rem;
    word-wrap: break-word;
  }
  .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-block {
    min-width: 0;
  }
  .reason-num {
    font-size: 1.85rem;
  }
  .reason-title {
    font-size: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .gap-grid {
    gap: 1.25rem 1rem;
  }
  .gap-num {
    font-size: 1.6rem;
  }
  .gap-title {
    font-size: 0.75rem;
  }
  .reason-body {
    font-size: 0.85rem;
    word-wrap: break-word;
  }
  .treatment-card,
  .why-choose-card {
    min-width: 0;
  }
  .treatment-title,
  .why-choose-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-question span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .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-two-col {
    gap: 1.25rem;
  }
  .consultation-form-wrap {
    order: -1;
    padding: 1.25rem 1rem;
    min-width: 0;
  }
  .consultation-form input {
    max-width: 100%;
    box-sizing: border-box;
  }
  .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 1rem;
  }
  .footer-links-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    padding-top: 0.75rem;
  }
  .footer-legal {
    font-size: 0.75rem;
  }
  .popup-overlay {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: 1.5rem;
    overflow-y: auto;
  }
  .popup-box {
    max-width: min(360px, calc(100% - 1.5rem));
    width: 100%;
    max-height: 88vh;
    margin: auto 0;
  }
  .popup-form-wrap {
    padding: 1.5rem 1.25rem 1.25rem;
    padding-top: 2.5rem;
    max-height: 88vh;
    overflow-y: auto;
  }
  .popup-box .form-title {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
  }
  .popup-box .form-subtitle,
  .popup-box .popup-form-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .popup-box .consultation-form label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  .popup-box .consultation-form input {
    padding: 8px 10px;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  .popup-box .btn-submit {
    padding: 10px 14px;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  .popup-box .consultation-disclaimer {
    font-size: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
  }
  .popup-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.35rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}

@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 0.75rem;
  }
  .section-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-sub-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-sub-headline {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }
  .hero-sub-card-label {
    font-size: 0.6rem;
  }
  .section-headline {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }
  .section-gap .section-headline {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }
  .footer-copy {
    font-size: 0.75rem;
    word-wrap: break-word;
  }
  .hero {
    height: 65vh;
    min-height: 320px;
    max-height: none;
  }
  /* Keep Men's one-pager headline below image on small mobile */
  .hero.hero-scar {
    height: auto;
  }
  .hero.hero-scar .hero-bg {
    height: 50vh;
    min-height: 260px;
    max-height: 380px;
  }
  .hero-content {
    padding: clamp(1.25rem, 4vw, 1.5rem) 1rem;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
  }
  .hero-headline-overline {
    letter-spacing: 0.15em;
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
  .hero-headline-main {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
  .hero.hero-scar .hero-headline-scar .hero-headline-main {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }
  .hero-headline-scar .hero-headline-support,
  .hero-headline-scar .hero-headline-location {
    font-size: 0.45em !important;
  }
  .hero-tagline {
    font-size: clamp(0.6rem, 2.5vw, 0.75rem);
    letter-spacing: 0.15em;
  }
  .hero-sub-note {
    font-size: 0.75rem;
  }
  .hero-sub-benefits {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  /* Popup form: even smaller on small mobile */
  .popup-overlay {
    padding: 0.5rem;
    padding-top: 1rem;
  }
  .popup-box {
    max-width: min(320px, calc(100% - 1rem));
    max-height: 90vh;
  }
  .popup-form-wrap {
    padding: 1.25rem 1rem 1rem;
    padding-top: 2.25rem;
  }
  .popup-box .form-title {
    font-size: 1.1rem;
  }
  .popup-box .form-subtitle,
  .popup-box .popup-form-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .popup-box .consultation-form input {
    padding: 6px 10px;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  .popup-box .btn-submit {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .popup-box .consultation-disclaimer {
    font-size: 0.7rem;
  }
  .popup-close {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.2rem;
    top: 0.4rem;
    right: 0.4rem;
  }
  .btn-gold {
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }
  .section-label {
    font-size: 0.7rem;
  }
  .section-gap .section-label { font-size: 0.8rem; }
  .section-headline {
    font-size: 1.5rem;
  }
  .section-gap .section-headline { font-size: 1.75rem; margin-bottom: 1rem; }
  .timeline-label {
    font-size: 0.65rem;
  }
  .timeline-title {
    font-size: 1.1rem;
  }
  .reason-num {
    font-size: 1.75rem;
  }
  .gap-num {
    font-size: 1.5rem;
  }
  .gap-title {
    font-size: 0.75rem;
  }
  .testimonials-headline {
    font-size: 1.35rem;
  }
  .consultation-headline {
    font-size: 1.35rem;
  }
  .consultation-sub {
    font-size: 1rem;
  }
  .contact-item {
    margin-bottom: 1rem;
  }
  .footer-links-row {
    grid-template-columns: 1fr;
  }
}

