/* =============================================
   CROWNING HAIR — MAIN STYLESHEET
   Enqueued via functions.php. The WordPress theme-identification
   header lives in the root /style.css
   ============================================= */

/* =============================================
   GLOBAL — tokens, base, components (was css/styles.css)
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,700;0,800;1,700;1,800&family=Work+Sans:wght@400;500;600&family=Poppins:wght@400;500&display=swap');

/* =============================================
   DESIGN TOKENS — CROWNING HAIR
   ============================================= */

:root {
  --color-accent:      #9DB5BF;
  --color-dark:        #282828;
  --color-body-text:   #282828;
  --color-heading:     #282828;
  --color-muted:       #6B6B6B;
  --color-bg-light:    #F6F6F6;
  --color-white:       #FFFFFF;
  --color-black:       #000000;

  --font-heading:      'Plus Jakarta Sans', sans-serif;
  --font-body:         'Work Sans', sans-serif;
  --font-accent:       'Poppins', sans-serif;

  --fs-h1:   57px;
  --fs-h2:   45px;
  --fs-h3:   35px;
  --fs-btn:  16px;
  --fs-body: 15px;

  --fw-bold:     700;
  --fw-semibold: 600;
  --fw-medium:   500;
  --fw-regular:  400;

  --sp-hero:    180px;
  --sp-sec-lg:  120px;
  --sp-sec:     100px;
  --sp-sec-sm:  80px;
  --sp-gap-lg:  50px;
  --sp-card:    40px;
  --sp-el:      24px;
  --sp-inline:  16px;

  --r-oval:    110px;
  --r-pill:     50px;
  --r-card:     20px;
  --r-field:     8px;
}

/* =============================================
   RESET
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-body-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-heading);
  line-height: 1.08;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  color: var(--color-body-text);
  line-height: 1.75;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-sec-sm);
}

.section           { padding: var(--sp-sec) 0; }
.section--large    { padding: var(--sp-sec-lg) 0; }
.section--dark     { background: var(--color-dark); }
.section--light    { background: var(--color-bg-light); }
.text-white        { color: var(--color-white) !important; }
.text-accent       { color: var(--color-accent) !important; }
.text-center       { text-align: center; }

/* =============================================
   SECTION LABELS & HEADINGS
   ============================================= */

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-inline);
}

.section-desc {
  font-family: var(--font-accent);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 560px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: var(--fw-semibold);
  padding: 16px 36px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn--primary:hover { background: #444444; border-color: #444444; }

.btn--secondary {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn--secondary:hover { background: var(--color-dark); color: var(--color-white); }

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn--dark:hover { background: #444444; }

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--accent:hover { background: #8aa5b0; border-color: #8aa5b0; }

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.navbar .container {
  height: 100%;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/* Logo — flush left */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Right group: links + CTA — flush right */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar__links a:hover,
.navbar__links a.active { color: var(--color-accent); }

.navbar .btn { font-size: 14px; padding: 10px 24px; white-space: nowrap; }

/* Hamburger — mobile only */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown */
.navbar__mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding: 16px 24px 24px;
  z-index: 999;
}

.navbar__mobile.is-open { display: block; }

.navbar__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.navbar__mobile ul li a {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-heading);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}

.navbar__mobile ul li:last-child a { border-bottom: none; }
.navbar__mobile ul li a:hover { color: var(--color-accent); }

.navbar__mobile .navbar__mobile-cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  width: 100%;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  background: var(--color-dark);
  padding-top: calc(72px + var(--sp-sec-lg));
  padding-bottom: var(--sp-sec-lg);
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-el);
}

.page-hero p {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  background: var(--color-dark);
  padding: var(--sp-sec-lg) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner h2 { color: var(--color-white); margin-bottom: var(--sp-el); }

.cta-banner p {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto var(--sp-gap-lg);
}

.cta-banner__btns {
  display: flex;
  gap: var(--sp-el);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--color-dark);
  padding: 80px 0 0;
  color: var(--color-white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-sec-sm);
  padding-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-el);
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: var(--color-muted);
}

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer__socials a { display: flex; align-items: center; opacity: 0.6; transition: opacity 0.2s; }
.footer__socials a:hover { opacity: 1; }
.footer__socials img { width: 20px; height: 20px; object-fit: contain; }

.footer__col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--sp-el);
}

.footer__links { display: flex; flex-direction: column; gap: 11px; }

.footer__links a {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-accent); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bar p {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* =============================================
   VISIT INFO — shared across pages
   ============================================= */

.visit__info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.visit__info-label img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.visit__info-text {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

@media (max-width: 1200px) {
  :root { --fs-h1: 46px; --fs-h2: 38px; --fs-h3: 28px; }
  .container { padding: 0 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --fs-h1: 36px; --fs-h2: 28px; --fs-h3: 22px;
    --sp-hero: 100px; --sp-sec-lg: 64px; --sp-sec: 52px; --sp-sec-sm: 36px;
    --sp-gap-lg: 36px; --sp-card: 28px;
  }
  .container { padding: 0 24px; }
  .navbar__right { display: none; }
  .navbar__hamburger { display: flex; }
  .footer { padding: 52px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bar { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { padding-top: calc(72px + 48px); padding-bottom: 48px; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .cta-banner__btns .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 28px; --fs-h2: 22px; --fs-h3: 18px;
    --sp-sec-lg: 52px; --sp-sec: 40px; --sp-sec-sm: 28px;
    --fs-btn: 15px;
  }
  .container { padding: 0 16px; }
  .btn { padding: 14px 24px; }
  .footer__logo { font-size: 15px; }
}


/* =============================================
   PAGE: HOME (was css/page-index.css)
   ============================================= */
    /* =============================================
       HOME — PAGE-SPECIFIC STYLES
       ============================================= */

    /* ── HERO ──────────────────────────────────── */

    .hero {
      padding-top: 72px;
      background: var(--color-white);
      position: relative;
      overflow: hidden;
    }

    .hero__bg-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1900px;
      height: 1500px;
      background: radial-gradient(ellipse at center, rgba(157, 181, 191, 0.32) 0%, transparent 55%);
      pointer-events: none;
      z-index: 0;
    }

    .hero__inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 40px 80px 80px;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: center;
      gap: 56px;
      position: relative;
    }

    /* Left column — value prop + CTA */
    .hero__left {
      display: flex;
      flex-direction: column;
      padding: 0;
      position: relative;
      z-index: 2;
    }

    .hero__eyebrow {
      display: block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: var(--fw-semibold);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin: 0 0 22px;
    }

    .hero__headline {
      font-family: var(--font-heading);
      font-size: clamp(34px, 4.6vw, 68px);
      font-weight: 800;
      font-style: italic;
      line-height: 1.05;
      text-transform: uppercase;
      color: #1a1a1a;
      letter-spacing: -0.005em;
      margin: 0 0 22px;
    }

    .hero__subline {
      font-family: var(--font-accent);
      font-size: 16px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.65;
      max-width: 520px;
      margin: 0 0 26px;
    }

    /* Feature list — demoted from headline to small chip row */
    .hero__feature-list {
      list-style: none;
      margin: 0 0 32px;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
    }

    .hero__feature-list li {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: var(--fw-semibold);
      letter-spacing: 0.16em;
      line-height: 1;
      text-transform: uppercase;
      color: #444;
      position: relative;
      white-space: nowrap;
    }

    .hero__feature-list li:not(:last-child)::after {
      content: "·";
      position: absolute;
      right: -14px;
      top: 50%;
      transform: translateY(-55%);
      color: #B0B0B0;
      font-size: 16px;
    }

    .hero__cta {
      align-self: flex-start;
      margin: 0 0 20px;
    }

    .hero__trust {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.5;
      margin: 0 0 24px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .hero__stars {
      color: #d4a85a;
      letter-spacing: 0.06em;
      font-size: 14px;
      flex-shrink: 0;
    }

    .hero__trust-sep {
      color: #B0B0B0;
      padding: 0 2px;
    }

    .hero__socials {
      display: flex;
      gap: 10px;
      margin: 0;
    }

    .hero__social {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: border-color 0.2s;
      flex-shrink: 0;
    }
    .hero__social:hover { border-color: var(--color-accent); }
    .hero__social img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      display: block;
    }

    /* Right column — model image */
    .hero__media {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    /* Symmetric accent halo around the photo — clean, no peek */
    .hero__bg-shape {
      position: absolute;
      top: -14px;
      right: -14px;
      bottom: -14px;
      left: -14px;
      background: var(--color-accent);
      border-radius: 22px;
      z-index: 0;
      pointer-events: none;
    }

    .hero__video-wrap {
      width: 100%;
      height: 660px;
      position: relative;
      z-index: 1;
      border-radius: 12px;
      overflow: hidden;
      background: var(--color-accent);
      box-shadow: 0 14px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    }

    .hero__video-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Small Before inset over the After image — kept deliberately understated */
    .hero__before {
      position: absolute;
      bottom: 24px;
      left: 24px;
      width: 170px;
      border-radius: 4px;
      background: white;
      padding: 8px 8px 30px;
      box-shadow: 4px 8px 24px rgba(0,0,0,0.22);
      z-index: 2;
    }

    .hero__before img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    .hero__before-label {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      background: #676b6c;
      color: white;
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 14px;
      border-radius: 30px;
    }

    /* ── BENEFITS STRIP ────────────────────────── */

    .benefits-strip {
      background: var(--color-bg-light);
      padding: 56px 0;
    }

    .benefits-strip__grid {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 24px;
    }

    .benefit {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }

    .benefit__icon {
      width: 64px;
      height: 64px;
      object-fit: contain;
    }

    .benefit__label {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: var(--fw-bold);
      line-height: 1.25;
      color: var(--color-heading);
      max-width: 14ch;
    }

    /* ── SERVICES PREVIEW ──────────────────────── */

    .services-preview {
      padding: 20px 0 0;
      background: var(--color-white);
      overflow: hidden;
    }

    .services-preview__head {
      text-align: center;
      margin-bottom: 16px;
    }

    .services-preview__heading {
      font-family: var(--font-heading);
      font-size: clamp(26px, 3vw, 46px);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      color: var(--color-dark);
      line-height: 1.0;
      margin-bottom: 20px;
    }

    .btn--chip {
      padding: 5px 18px;
      font-size: 12px;
      border-radius: 50px;
    }

    /* Vertical stage: heading → model → "you can…" header → cards → CTA */
    /* Stage: 2-column model + content layout */
    .services-preview__stage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: stretch;
      position: relative;
      margin-top: 24px;
    }

    /* Subline beneath heading */
    .services-preview__subline {
      font-family: var(--font-accent);
      font-size: 16px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.6;
      max-width: 640px;
      margin: 12px auto 0;
      text-align: center;
    }

    /* Left column — model wrap is absolute so it doesn't drive column height */
    .sp-media {
      position: relative;
      min-height: 420px;
    }

    .sp-bg-shape { display: none; }

    .sp-model-wrap {
      position: absolute;
      inset: 0;
      z-index: 1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 14px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    }

    .sp-model {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 10%;
      display: block;
    }

    .sp-fade { display: none; }

    /* Right column — content stack, vertically centered against the model */
    .sp-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 32px;
      padding-top: 4px;
    }

    /* "So natural, you'll forget it's there" headline */
    .sp-headline {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 800;
      color: var(--color-dark);
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin: 0;
    }

    /* Benefit list with vertical accent bar */
    .sp-benefits {
      list-style: none;
      margin: 0;
      padding: 6px 0 6px 22px;
      border-left: 3px solid rgba(0,0,0,0.14);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .sp-benefits li {
      font-family: var(--font-accent);
      font-size: clamp(16px, 1.3vw, 19px);
      font-weight: var(--fw-regular);
      color: var(--color-dark);
      line-height: 1.3;
    }

    .sp-cta {
      margin: 0;
    }

    /* ── FEATURES ──────────────────────────────── */

    .features {
      padding: var(--sp-sec-lg) 0;
      background: var(--color-white);
      overflow: hidden;
    }

    .features__head {
      text-align: center;
      margin-bottom: 56px;
    }

    .features__heading {
      font-family: var(--font-heading);
      font-size: clamp(22px, 4vw, 55px);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      color: var(--color-dark);
      line-height: 1.1;
      margin-bottom: 16px;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .features__desc {
      font-family: var(--font-accent);
      font-size: 18px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 32px;
    }

    /* CTA below the grid */
    .features__cta {
      text-align: center;
      margin-top: 44px;
    }

    .features__cta .btn {
      padding: 20px 52px;
      font-size: 18px;
    }

    /* Checkerboard grid — alternating text panels + images */
    .features__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(2, minmax(360px, auto));
      gap: 16px;
      align-items: stretch;
    }

    /* Bottom row swaps so text sits on the right (image on the left) */
    .features__grid > :nth-child(3) { grid-column: 2; grid-row: 2; }
    .features__grid > :nth-child(4) { grid-column: 1; grid-row: 2; }

    .feat-panel {
      border-radius: var(--r-card);
      overflow: hidden;
    }

    /* Text panel */
    .feat-panel--text {
      background: #f5f3ed;
      border: 1px solid rgba(0,0,0,0.05);
      padding: 48px 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 28px;
    }

    .feat-panel__title {
      font-family: var(--font-heading);
      font-size: clamp(26px, 2.6vw, 42px);
      font-weight: 800;
      color: var(--color-dark);
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin: 0;
    }

    .feat-panel__list {
      list-style: none;
      margin: 0;
      padding: 4px 0 4px 20px;
      border-left: 3px solid rgba(0,0,0,0.14);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .feat-panel__list li {
      font-family: var(--font-accent);
      font-size: clamp(15px, 1.2vw, 18px);
      font-weight: var(--fw-regular);
      color: var(--color-dark);
      line-height: 1.4;
    }

    /* Image panel */
    .feat-panel--media {
      min-height: 360px;
    }

    .feat-panel--media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── TESTIMONIALS ──────────────────────────── */

    .testimonials {
      padding: var(--sp-sec-lg) 0;
      background: #F5F8F9;
      overflow: hidden;
    }

    .testimonials__layout {
      display: grid;
      grid-template-columns: 480px 1fr;
      gap: 72px;
      align-items: start;
      margin-bottom: 72px;
    }

    /* Photo column */
    .testimonials__photo-col {
      position: relative;
      padding-bottom: 50px;
    }

    .testimonials__bg-shape {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      width: 360px;
      height: 460px;
      background: var(--color-accent);
      border-radius: 30px 180px 20px 20px;
      z-index: 0;
    }

    .testimonials__photo-main {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 660px;
      object-fit: contain;
      object-position: center bottom;
      display: block;
    }

    .testimonials__before {
      position: absolute;
      bottom: 0;
      right: -32px;
      width: 240px;
      border-radius: 4px;
      background: white;
      padding: 10px 10px 32px;
      box-shadow: 4px 8px 24px rgba(0,0,0,0.22);
      z-index: 2;
    }

    .testimonials__before img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: center 26%;
      display: block;
    }

    .testimonials__before-label {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: #676b6c;
      color: white;
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: var(--fw-bold);
      padding: 4px 20px;
      border-radius: 10px;
      white-space: nowrap;
      box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
    }

    /* Text column */
    .testimonials__text {
      padding-top: 24px;
    }

    .testimonials__text .label {
      display: block;
      text-align: center;
      margin-bottom: 20px;
    }

    .testimonials__heading {
      font-family: var(--font-heading);
      font-size: clamp(30px, 3.6vw, 52px);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      color: var(--color-dark);
      line-height: 1.05;
      margin-bottom: 28px;
      text-align: center;
    }

    /* Row: open-quote on left, stars on right */
    .testimonials__q-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .testimonials__q-mark {
      font-family: Georgia, 'Times New Roman', serif;
      font-style: italic;
      font-size: 64px;
      font-weight: bold;
      color: var(--color-accent);
      line-height: 1.0;
    }

    .testimonials__q-mark--close {
      display: block;
      text-align: right;
      margin-top: 8px;
    }

    .testimonials__stars {
      display: block;
      text-align: center;
      color: #FBBC05;
      font-size: 26px;
      letter-spacing: 4px;
      margin-bottom: 16px;
    }

    .testimonials__quote-text {
      font-family: var(--font-accent);
      font-size: 19px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.75;
      text-align: center;
      margin-bottom: 4px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .testimonials__author {
      font-family: var(--font-accent);
      font-size: 16px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      text-align: center;
      margin-top: 16px;
    }

    /* Review cards row */
    .reviews {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: var(--color-white);
      border-radius: var(--r-card);
      border: 1px solid #95a2a7;
      padding: 28px;
    }

    .review-card__stars {
      color: #FBBC05;
      font-size: 20px;
      letter-spacing: 2px;
      margin-bottom: 14px;
      text-align: center;
    }

    .review-card__text {
      font-family: var(--font-accent);
      font-size: 14px;
      font-weight: var(--fw-regular);
      color: var(--color-dark);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .review-card__author {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: var(--fw-semibold);
      color: var(--color-dark);
    }

    /* ── BEFORE & AFTER ────────────────────────── */

    .ba {
      padding: clamp(48px, 7vw, 88px) 0;
      background: #f5f3ed;
      overflow: hidden;
    }

    .ba__head {
      text-align: center;
      margin-bottom: 44px;
    }

    .ba__heading {
      font-family: var(--font-heading);
      font-size: clamp(24px, 3vw, 44px);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      color: var(--color-dark);
      line-height: 1.1;
      margin-top: 12px;
    }

    .ba__subline {
      font-family: var(--font-accent);
      font-size: 16px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.6;
      max-width: 560px;
      margin: 14px auto 0;
    }

    .ba__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      max-width: 940px;
      margin: 0 auto;
    }

    /* One transformation card = before|after pair + caption */
    .ba-card {
      margin: 0;
      background: var(--color-white);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: var(--r-card);
      padding: 12px;
      box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    }

    .ba-card__pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .ba-card__shot {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
    }

    .ba-card__shot img {
      width: 100%;
      height: clamp(220px, 28vw, 300px);
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Cut-out "after" images sit on a clean studio backdrop, shown whole */
    .ba-card__shot--cutout {
      background: linear-gradient(180deg, #eef2f3 0%, #dbe3e5 100%);
    }

    .ba-card__shot--cutout img {
      object-fit: contain;
      object-position: center bottom;
    }

    .ba-card__tag {
      position: absolute;
      left: 10px;
      bottom: 10px;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      padding: 4px 14px;
      border-radius: 8px;
      letter-spacing: 0.04em;
    }

    .ba-card__tag--before { background: #676b6c; }
    .ba-card__tag--after { background: var(--color-accent); }

    .ba-card__caption {
      text-align: center;
      padding: 16px 8px 6px;
    }

    .ba-card__stars {
      display: block;
      color: #FBBC05;
      font-size: 16px;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .ba-card__quote {
      font-family: var(--font-accent);
      font-size: 14.5px;
      font-weight: var(--fw-regular);
      color: var(--color-dark);
      line-height: 1.55;
      max-width: 360px;
      margin: 0 auto 8px;
    }

    .ba-card__name {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: var(--fw-semibold);
      color: var(--color-muted);
      letter-spacing: 0.02em;
    }

    @media (max-width: 768px) {
      .ba__grid { grid-template-columns: 1fr; gap: 18px; max-width: 460px; }
      .ba-card__shot img { height: clamp(200px, 50vw, 260px); }
    }

    /* ── VISIT ─────────────────────────────────── */

    .visit {
      padding: var(--sp-sec-lg) 0;
      background: var(--color-white);
      overflow: hidden;
    }

    .visit__head {
      text-align: center;
      margin-bottom: 56px;
    }

    .visit__heading {
      font-family: var(--font-heading);
      font-size: clamp(26px, 3.2vw, 46px);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      color: var(--color-dark);
      line-height: 1.05;
    }

    .visit__layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 28px;
      align-items: stretch;
    }

    .visit__card {
      background: var(--color-dark);
      border-radius: 24px;
      padding: 48px 44px;
    }

    .visit__info-item {
      margin-bottom: 36px;
    }
    .visit__info-item:last-child { margin-bottom: 0; }

    .visit__map {
      border-radius: 24px;
      overflow: hidden;
      min-height: 380px;
    }

    .visit__map iframe {
      width: 100%;
      height: 100%;
      min-height: 380px;
      border: 0;
      display: block;
    }

    /* ── RESPONSIVE ────────────────────────────── */

    @media (max-width: 1200px) {
      .hero__inner { padding: 32px 48px 72px; gap: 40px; }
      .hero__headline { font-size: clamp(32px, 4.4vw, 58px); }
      .hero__video-wrap { height: 580px; }
      .hero__bg-shape { top: -12px; right: -12px; bottom: -12px; left: -12px; border-radius: 20px; }
      .hero__before { bottom: 22px; left: 22px; width: 160px; padding: 7px 7px 28px; }
      .hero__before img { height: 140px; }
      .features__grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials__layout { grid-template-columns: min(380px, 45%) 1fr; gap: 48px; }
      .services-preview__stage { gap: 40px; }
    }

    @media (max-width: 1024px) {
      .hero__inner { padding: 32px 32px 64px; gap: 32px; }
      .hero__headline { font-size: clamp(28px, 4.2vw, 48px); margin-bottom: 18px; }
      .hero__subline { font-size: 15px; margin-bottom: 22px; }
      .hero__feature-list { gap: 18px; margin-bottom: 26px; }
      .hero__video-wrap { height: 520px; }
      .hero__bg-shape { top: -10px; right: -10px; bottom: -10px; left: -10px; border-radius: 18px; }
      .hero__before { bottom: 18px; left: 18px; width: 140px; padding: 6px 6px 24px; }
      .hero__before img { height: 120px; }
      .hero__before-label { font-size: 10px; padding: 2px 12px; }
      .services-preview__stage { gap: 32px; }
      .sp-content { gap: 24px; }
      .testimonials__layout { grid-template-columns: 1fr 1fr; gap: 40px; }
      .testimonials__before { right: 0; }
      .visit__layout { grid-template-columns: 1fr 1.2fr; }
    }

    @media (max-width: 768px) {
      /* Benefits strip — 2 columns */
      .benefits-strip { padding: 44px 0; }
      .benefits-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
      .benefit__icon { width: 56px; height: 56px; }
      .benefit__label { font-size: 16px; }

      /* Hero — stack with media on top, then text */
      .hero__bg-glow { display: none; }
      .hero__inner {
        grid-template-columns: 1fr;
        padding: 24px 20px 32px;
        gap: 28px;
      }
      .hero__media { order: 1; }
      .hero__left { order: 2; padding: 0; }
      .hero__video-wrap {
        width: 100%;
        height: clamp(360px, 82vw, 460px);
      }
      .hero__video-wrap img { object-position: center top; }
      .hero__bg-shape { top: -8px; right: -8px; bottom: -8px; left: -8px; border-radius: 16px; }
      .hero__eyebrow { font-size: 10px; margin-bottom: 14px; letter-spacing: 0.22em; }
      .hero__headline { font-size: clamp(28px, 7.6vw, 42px); margin-bottom: 16px; }
      .hero__subline { font-size: 14px; margin-bottom: 20px; }
      .hero__feature-list { gap: 16px; margin-bottom: 22px; }
      .hero__feature-list li { font-size: 11px; letter-spacing: 0.14em; }
      .hero__feature-list li:not(:last-child)::after { right: -10px; font-size: 14px; }
      .hero__cta { width: 100%; box-sizing: border-box; display: flex; justify-content: center; padding: 14px 20px; font-size: 14px; }
      .hero__trust { font-size: 12px; gap: 6px; margin-bottom: 18px; }
      .hero__stars { font-size: 13px; }
      .hero__socials { gap: 8px; }
      .hero__social { width: 36px; height: 36px; }
      .hero__social img { width: 14px; height: 14px; }

      /* Services preview — stack to single column on mobile */
      .services-preview__stage {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 16px;
      }
      .services-preview__subline { font-size: 14px; max-width: 100%; }
      .sp-media { min-height: clamp(420px, 80vw, 560px); }
      .sp-content { padding-top: 0; gap: 22px; }

      /* Hero before-inset — mobile sizing */
      .hero__before { bottom: 16px; left: 12px; width: 110px; padding: 5px 5px 22px; }
      .hero__before img { height: 90px; }
      .hero__before-label { font-size: 9px; padding: 2px 10px; bottom: 5px; }

      /* Features — stack to single column */
      .features__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
      }
      .features__grid > :nth-child(3),
      .features__grid > :nth-child(4) { grid-column: 1; grid-row: auto; }
      .feat-panel--text { padding: 32px 26px; gap: 22px; }
      .feat-panel--media { min-height: clamp(260px, 70vw, 380px); }

      /* Testimonials */
      .testimonials__layout { grid-template-columns: 1fr; gap: 32px; }
      .testimonials__photo-col { padding-bottom: 0; max-width: 460px; margin: 0 auto; width: 100%; }
      .testimonials__bg-shape {
        bottom: 24px;
        width: min(86%, 380px);
        height: clamp(360px, 78vw, 460px);
        border-radius: 24px 120px 18px 18px;
      }
      .testimonials__photo-main {
        height: clamp(380px, 92vw, 540px);
        object-fit: contain;
        object-position: center bottom;
        border-radius: 8px;
      }
      .testimonials__before {
        right: auto;
        left: 14px;
        bottom: 14px;
        width: min(140px, 36vw);
        padding: 8px 8px 26px;
        border-radius: 6px;
        box-shadow: 4px 6px 18px rgba(0,0,0,0.28);
      }
      .testimonials__before img { height: clamp(110px, 28vw, 150px); object-position: center 20%; }
      .testimonials__before-label { font-size: 11px; padding: 3px 14px; bottom: 8px; }
      .testimonials__heading { font-size: clamp(24px, 7vw, 40px); }
      .reviews { grid-template-columns: 1fr; gap: 12px; }
      .review-card { padding: 20px; }

      /* Visit */
      .visit__layout { grid-template-columns: 1fr; gap: 16px; }
      .visit__card { padding: 32px 28px; }
      .visit__map { min-height: clamp(220px, 60vw, 300px); }
      .visit__map iframe { min-height: clamp(220px, 60vw, 300px); }
    }

    @media (max-width: 480px) {
      /* Hero */
      .hero__inner { padding: 20px 16px 24px; gap: 22px; }
      .hero__headline { font-size: clamp(26px, 8.8vw, 36px); margin-bottom: 14px; }
      .hero__subline { font-size: 13.5px; margin-bottom: 18px; }
      .hero__feature-list { gap: 14px; }
      .hero__feature-list li { font-size: 10px; letter-spacing: 0.12em; }
      .hero__feature-list li:not(:last-child)::after { right: -9px; font-size: 13px; }
      .hero__video-wrap { height: clamp(320px, 86vw, 400px); }
      .hero__bg-shape { top: -6px; right: -6px; bottom: -6px; left: -6px; border-radius: 14px; }
      .hero__before { width: 95px; padding: 4px 4px 20px; bottom: 12px; left: 12px; }
      .hero__before img { height: 78px; }

      /* Services preview */
      .sp-media { min-height: clamp(380px, 86vw, 480px); }

      /* Features */
      .feat-panel--text { padding: 28px 22px; }

      /* Testimonials */
      .testimonials__photo-col { max-width: 100%; }
      .testimonials__bg-shape {
        width: min(86%, 340px);
        height: clamp(340px, 90vw, 420px);
        bottom: 18px;
      }
      .testimonials__photo-main {
        height: clamp(360px, 100vw, 480px);
        object-position: center 16%;
      }
      .testimonials__before {
        left: 10px;
        bottom: 10px;
        width: min(112px, 32vw);
        padding: 6px 6px 22px;
        box-shadow: 3px 5px 14px rgba(0,0,0,0.3);
      }
      .testimonials__before img { height: clamp(90px, 26vw, 120px); }
      .testimonials__before-label { font-size: 10px; padding: 2px 12px; bottom: 6px; }
      .testimonials__quote-text { font-size: 15px; }

      /* Visit */
      .visit__card { padding: 24px 20px; }
      .visit__map { min-height: 200px; }
    }


/* =============================================
   PAGE: SERVICES (was css/page-services.css)
   ============================================= */
    /* =========================================
       SERVICES — PAGE-SPECIFIC STYLES
       ========================================= */

    /* ── LIFESTYLE ────────────────────────────── */
    .lifestyle {
      padding: 60px 0;
      background: #fff;
      margin-top: 72px;
    }
    .lifestyle__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .lifestyle__img-wrap {
      position: relative;
    }

    /* Before / After Slider */
    .ba-slider {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-card);
      cursor: ew-resize;
      user-select: none;
      touch-action: none;
      height: clamp(320px, calc(100vh - 320px), 480px);
    }
    .ba-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }
    .ba-img--before {
      clip-path: inset(0 50% 0 0);
    }
    .ba-handle {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      background: rgba(255,255,255,0.55);
      z-index: 5;
      cursor: ew-resize;
    }
    .ba-handle__knob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 14px rgba(0,0,0,0.22);
      color: #282828;
    }
    .ba-label {
      position: absolute;
      bottom: 20px;
      z-index: 6;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      pointer-events: none;
      transition: none;
    }
    .ba-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 6;
    }
    .ba-overlay--before { clip-path: inset(0 50% 0 0); }
    .ba-overlay--after  { clip-path: inset(0 0 0 50%); }
    .ba-label--before {
      left: 25%;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.18);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(6px);
    }
    .ba-label--after {
      left: 75%;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.92);
      color: #282828;
      border: 1px solid rgba(0,0,0,0.08);
    }

    /* Natural Results badge */
    .lifestyle__badge {
      position: absolute;
      bottom: -20px;
      right: -50px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: var(--color-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 6;
      padding: 14px;
    }
    .lifestyle__badge-text {
      font-family: var(--font-heading);
      font-size: 22px;
      font-style: italic;
      font-weight: 800;
      text-transform: uppercase;
      color: #282828;
      line-height: 1.2;
    }

    .lifestyle__content .label { margin-bottom: 16px; }
    .lifestyle__heading {
      font-family: var(--font-heading);
      font-size: clamp(26px, 3.2vw, 46px);
      font-weight: 800;
      text-transform: uppercase;
      color: #282828;
      line-height: 1.05;
      margin-bottom: 28px;
    }
    .lifestyle__text {
      font-family: var(--font-accent);
      font-size: 15px;
      font-weight: 400;
      color: #555;
      line-height: 1.9;
      margin-bottom: 20px;
    }

    /* ── THREE PILLARS ────────────────────────── */
    .pillars {
      padding: 100px 0;
      background: var(--color-bg-light);
    }
    .pillars__head {
      text-align: center;
      margin-bottom: 60px;
    }
    .pillars__heading {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 800;
      color: #282828;
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .pillars__heading em {
      font-style: italic;
      font-weight: 800;
    }
    .pillars__desc {
      font-family: var(--font-accent);
      font-size: 15px;
      font-weight: 400;
      color: #6B6B6B;
      max-width: 680px;
      margin: 0 auto 28px;
      line-height: 1.8;
    }
    .pillars__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .pillar-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--color-accent);
      display: flex;
      flex-direction: column;
    }
    .pillar-card__img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      flex-shrink: 0;
    }
    .pillar-card__body {
      background: var(--color-accent);
      padding: 22px 20px 26px;
      border-radius: 16px 16px 0 0;
      margin-top: -16px;
      position: relative;
      flex: 1;
    }
    .pillar-card__title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.25;
    }
    .pillar-card__desc {
      font-family: var(--font-accent);
      font-size: 13px;
      font-weight: 400;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
    }

    /* Designed to Move With You */
    .pillars__life {
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 60px;
      align-items: center;
      margin-top: 80px;
      padding-top: 80px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .pillars__life-heading {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 800;
      text-transform: uppercase;
      color: #282828;
      margin: 12px 0 16px;
      line-height: 1.1;
    }
    .pillars__life-text {
      font-family: var(--font-accent);
      font-size: 15px;
      font-weight: 400;
      color: #555;
      line-height: 1.85;
    }
    .pillars__life-photos {
      display: grid;
      grid-template-columns: 0.8fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .pillars__life-col-main {
      position: relative;
    }
    .pillars__life-main {
      border-radius: 20px;
      overflow: hidden;
      height: 480px;
      position: relative;
      z-index: 1;
    }
    .pillars__life-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .pillars__life-pool {
      position: absolute;
      bottom: -45px;
      left: -22px;
      width: 44%;
      height: 155px;
      border-radius: 16px;
      overflow: hidden;
      z-index: 2;
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }
    .pillars__life-pool img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .pillars__life-col-side {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pillars__life-top-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .pillars__life-badge {
      display: inline-block;
      background: #b8c6ce;
      color: #1a1a1a;
      border-radius: 14px;
      padding: 14px 20px;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 800;
      font-style: italic;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.3;
      position: relative;
      z-index: 3;
      margin-bottom: -18px;
      margin-left: 90px;
    }
    .pillars__life-sm {
      border-radius: 14px;
      width: 216px;
      height: 216px;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }
    .pillars__life-lg {
      border-radius: 14px;
      width: 100%;
      height: 250px;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    /* ── 7-STEP PROCESS ───────────────────────── */
    .process {
      padding: 100px 0;
      background: #fff;
    }
    .process__head {
      text-align: center;
      margin-bottom: 80px;
    }
    .process__heading {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 800;
      text-transform: uppercase;
      color: #282828;
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .process__desc {
      font-family: var(--font-accent);
      font-size: 15px;
      font-weight: 400;
      color: #6B6B6B;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .process__steps {
      position: relative;
    }
    .process__steps::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.1);
      z-index: 0;
    }
    .step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 80px;
      position: relative;
    }
    .step::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 50%;
      transform: translateX(-50%);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #fff;
      border: 6px solid var(--color-accent);
      box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
      z-index: 1;
    }
    .step:last-child { margin-bottom: 0; }
    .step--odd .step__text  { order: 1; max-width: 380px; justify-self: end; }
    .step--odd .step__img   { order: 2; justify-self: start; }
    .step--even .step__img  { order: 1; justify-self: end; }
    .step--even .step__text { order: 2; max-width: 380px; justify-self: start; }
    .step__img {
      max-width: 380px;
      width: 100%;
    }
    .step__img img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: var(--r-card);
      display: block;
    }
    .step--odd .step__text  { text-align: right; }
    .step--even .step__text { text-align: left; }
    .step__num {
      font-family: var(--font-heading);
      font-size: 72px;
      font-weight: 800;
      color: var(--color-accent);
      opacity: 0.45;
      line-height: 1;
      margin-bottom: 4px;
    }
    .step__title {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      color: #282828;
      margin-bottom: 12px;
    }
    .step__desc {
      font-family: var(--font-accent);
      font-size: 15px;
      font-weight: 400;
      color: #6B6B6B;
      line-height: 1.85;
    }

    /* ── RESPONSIVE ───────────────────────────── */
    @media (max-width: 1100px) {
      .pillars__grid { grid-template-columns: repeat(2, 1fr); }
      .pillars__life { grid-template-columns: 1fr; gap: 40px; }
      .pillars__life-photos { max-width: 640px; margin: 0 auto; }
    }

    @media (max-width: 900px) {
      .lifestyle__inner { grid-template-columns: 1fr; gap: 40px; }
      .ba-slider { height: clamp(280px, 60vw, 420px); }
      .lifestyle__badge { right: 0; }
      .process__steps::before { display: none; }
      .step { grid-template-columns: 1fr; gap: 24px; margin-bottom: 52px; }
      .step::before { display: none; }
      .step--odd .step__text,
      .step--even .step__text {
        text-align: left;
        max-width: 100%;
        justify-self: stretch;
        order: 2;
      }
      .step--odd .step__img,
      .step--even .step__img { order: 1; justify-self: stretch; max-width: 100%; }
    }

    @media (max-width: 768px) {
      .lifestyle { padding: 40px 0; }
      .lifestyle__badge {
        position: absolute;
        top: 14px;
        right: 14px;
        bottom: auto;
        left: auto;
        width: min(96px, 26vw);
        height: min(96px, 26vw);
        margin: 0;
        padding: 10px;
      }
      .lifestyle__badge-text { font-size: clamp(12px, 3.4vw, 15px); }

      .pillars { padding: 56px 0; }
      .pillars__head { margin-bottom: 32px; }
      .pillars__grid { grid-template-columns: 1fr; gap: 14px; }
      .pillar-card__img { height: clamp(160px, 45vw, 220px); }

      .pillars__life { margin-top: 48px; padding-top: 48px; }

      /* "Designed to Move With You" — mobile face/hair grid */
      .pillars__life-photos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 440px;
        margin: 0 auto;
      }
      .pillars__life-col-main,
      .pillars__life-col-side,
      .pillars__life-top-group { display: contents; }

      .pillars__life-main,
      .pillars__life-pool,
      .pillars__life-sm,
      .pillars__life-lg {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: none;
      }
      .pillars__life-main img,
      .pillars__life-pool img,
      .pillars__life-sm,
      .pillars__life-lg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      /* per-image focal points — keep hair + face centred */
      .pillars__life-main img {
        object-position: center top;
        transform: scale(1.5);
        transform-origin: 50% 16%;
      }
      .pillars__life-pool img { object-position: center 38%; }
      .pillars__life-sm       { object-position: 57% center; }
      .pillars__life-lg       { object-position: center 28%; }

      /* "7 weeks" badge becomes a banner spanning both columns */
      .pillars__life-badge {
        grid-column: 1 / -1;
        align-self: center;
        margin: 0;
        text-align: center;
        font-size: 15px;
        padding: 16px 18px;
        border-radius: 14px;
      }

      .process { padding: 56px 0; }
      .process__head { margin-bottom: 40px; }
      .step__num { font-size: clamp(36px, 10vw, 52px); }
      .step__title { font-size: clamp(17px, 4.5vw, 22px); }
      .step__img img { height: clamp(180px, 50vw, 240px); }
      .ba-slider { height: clamp(240px, 60vw, 340px); }
    }

    @media (max-width: 480px) {
      .lifestyle__inner { gap: 24px; }
      .ba-slider { height: clamp(200px, 60vw, 280px); }
      .pillars__grid { gap: 10px; }
      .pillar-card__img { height: clamp(140px, 45vw, 180px); }
      .step { gap: 16px; margin-bottom: 40px; }
      .step__num { font-size: clamp(32px, 9vw, 44px); }
      .step__img img { height: clamp(160px, 48vw, 200px); }
      .process__head { margin-bottom: 32px; }
    }


/* =============================================
   PAGE: CONTACT (was css/page-contact.css)
   ============================================= */
    /* =========================================
       CONTACT — PAGE-SPECIFIC STYLES
       ========================================= */

    /* Contact Section */
    .contact { padding: var(--sp-sec-lg) 0; }

    .contact__inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--sp-sec-lg);
      align-items: start;
    }

    /* Info side */
    .info__entry {
      display: flex;
      gap: var(--sp-el);
      margin-bottom: 36px;
    }

    .info__icon {
      width: 48px;
      height: 48px;
      border-radius: var(--r-field);
      background: rgba(157,181,191,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .info__label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: var(--fw-semibold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-muted);
      margin-bottom: 5px;
    }

    .info__value {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: var(--fw-bold);
      color: var(--color-heading);
    }

    .info__value a {
      color: inherit;
      transition: color 0.2s;
    }

    .info__value a:hover { color: var(--color-accent); }

    /* Hours card */
    .hours {
      background: var(--color-dark);
      border-radius: 24px;
      padding: 48px 44px;
    }

    /* Form side */
    .form-card {
      background: var(--color-bg-light);
      border-radius: var(--r-card);
      padding: 52px;
    }

    .form-card h2 { font-size: 28px; margin-bottom: 8px; }

    .form-card__sub {
      font-family: var(--font-accent);
      font-size: var(--fs-body);
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      margin-bottom: var(--sp-gap-lg);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-el);
      margin-bottom: var(--sp-el);
    }

    .form-group { display: flex; flex-direction: column; gap: 7px; }
    .form-group--full { grid-column: 1 / -1; }

    label {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: var(--fw-semibold);
      color: var(--color-heading);
    }

    input, textarea, select {
      font-family: var(--font-body);
      font-size: var(--fs-body);
      font-weight: var(--fw-medium);
      color: var(--color-heading);
      background: var(--color-white);
      border: 1.5px solid rgba(0,0,0,0.09);
      border-radius: var(--r-field);
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
      width: 100%;
    }

    input::placeholder, textarea::placeholder { color: var(--color-muted); font-weight: var(--fw-regular); }

    input:focus, textarea:focus, select:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(157,181,191,0.2);
    }

    textarea {
      resize: vertical;
      min-height: 136px;
      font-family: var(--font-accent);
      font-weight: var(--fw-regular);
    }

    select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 42px;
      color: var(--color-heading);
    }

    select option[value=''] { color: var(--color-muted); }

    .form-submit-btn {
      width: 100%;
      justify-content: center;
      font-size: 16px;
      padding: 18px;
      border: none;
      cursor: pointer;
    }

    .form-note {
      font-family: var(--font-accent);
      font-size: 13px;
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      margin-top: 12px;
    }

    /* FAQ */
    .faq { background: var(--color-bg-light); padding: var(--sp-sec-lg) 0; }

    .faq__header { text-align: center; margin-bottom: var(--sp-gap-lg); }
    .faq__header h2 { margin-bottom: var(--sp-el); }

    .faq__list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 860px;
      margin: 0 auto;
    }

    .faq__section-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: var(--fw-semibold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-top: 20px;
      margin-bottom: 4px;
    }

    .faq__section-label:first-child { margin-top: 0; }

    .faq-item {
      background: var(--color-white);
      border-radius: var(--r-card);
      overflow: hidden;
    }

    .faq-item__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px var(--sp-card);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 16px;
    }

    .faq-item__trigger span:first-child {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: var(--fw-bold);
      color: var(--color-heading);
    }

    .faq-item__icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.25s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item__icon svg {
      width: 13px;
      height: 13px;
      stroke: var(--color-muted);
      transition: stroke 0.25s;
    }

    .faq-item.is-open .faq-item__icon {
      background: rgba(157,181,191,0.18);
      transform: rotate(180deg);
    }

    .faq-item.is-open .faq-item__icon svg { stroke: var(--color-accent); }

    .faq-item__body {
      overflow: hidden;
      height: 0;
      opacity: 0;
      padding: 0 var(--sp-card) 22px;
      transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity 0.28s ease;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .faq-tip {
      margin-top: 14px;
      padding: 12px 16px;
      background: rgba(157,181,191,0.12);
      border-left: 3px solid var(--color-accent);
      border-radius: 0 var(--r-field) var(--r-field) 0;
      font-family: var(--font-accent);
      font-size: 13px;
      font-weight: var(--fw-medium);
      color: var(--color-heading);
      line-height: 1.65;
    }

    .faq-item__body p {
      font-family: var(--font-accent);
      font-size: var(--fs-body);
      font-weight: var(--fw-regular);
      color: var(--color-muted);
      line-height: 1.8;
      padding-top: 16px;
    }

    /* ── HERO ACCENTS ─────────────────────────── */
    .contact-hero {
      position: relative;
      overflow: hidden;
      padding-top: calc(72px + 64px);
      padding-bottom: 72px;
    }
    .contact-hero .container { position: relative; z-index: 2; }

    .contact-hero__watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-heading);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      font-size: clamp(90px, 20vw, 300px);
      line-height: 1;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.04);
      white-space: nowrap;
      pointer-events: none;
      z-index: 0;
    }

    .contact-hero__glow {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      max-width: 120%;
      background: radial-gradient(ellipse at center, rgba(157, 181, 191, 0.30) 0%, transparent 65%);
      pointer-events: none;
      z-index: 1;
    }

    .contact-hero__chips {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 28px auto 0;
    }
    .contact-hero__chips li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: var(--fw-medium);
      color: rgba(255, 255, 255, 0.82);
      padding: 9px 18px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--r-pill);
    }
    .contact-hero__chips li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-accent);
    }

    /* ── INFO COLUMN ──────────────────────────── */
    .contact-info__title { font-size: 32px; margin-bottom: 32px; }
    .contact-info .info__entry { margin-bottom: 24px; }

    .contact-map {
      border-radius: var(--r-card);
      overflow: hidden;
      height: 220px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      margin-bottom: 24px;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .contact-socials { margin-top: 24px; }
    .contact-socials__label {
      display: block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: var(--fw-semibold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-muted);
      margin-bottom: 12px;
    }
    .contact-socials__icons { display: flex; gap: 10px; }
    .contact-socials__icons a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
    }
    .contact-socials__icons a:hover { border-color: var(--color-accent); }
    .contact-socials__icons img { width: 18px; height: 18px; object-fit: contain; }

    /* ── FORM CARD ACCENT ─────────────────────── */
    .form-card { border-top: 4px solid var(--color-accent); }

    /* ── REASSURANCE STRIP ────────────────────── */
    .reassure {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px 48px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .reassure li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: var(--fw-medium);
      color: var(--color-heading);
    }
    .reassure svg { width: 22px; height: 22px; flex-shrink: 0; }

    /* Responsive */
    @media (max-width: 1200px) {
      .contact__inner { grid-template-columns: 1fr; gap: 48px; }
      .form-card { padding: clamp(24px, 4vw, 40px); }
      .contact-map { height: 260px; }
    }

    @media (max-width: 768px) {
      .contact { padding: var(--sp-sec) 0; }
      .contact-hero { padding-top: calc(72px + 40px); padding-bottom: 52px; }
      .contact-hero__chips { gap: 8px; margin-top: 22px; }
      .contact-hero__chips li { font-size: 12px; padding: 7px 14px; }
      .contact-info__title { font-size: clamp(24px, 6vw, 30px); margin-bottom: 24px; }
      .contact-map { height: 220px; }
      .reassure {
        gap: 14px;
        margin-top: 40px;
        padding-top: 28px;
        flex-direction: column;
        align-items: flex-start;
      }
      .contact__inner { gap: 36px; }
      .form-row { grid-template-columns: 1fr; }
      .form-card {
        padding: clamp(20px, 5vw, 32px);
        border-radius: 16px;
      }
      .form-card h2 { font-size: clamp(18px, 5vw, 24px); }
      .form-card__sub { font-size: 13px; }
      .hours { padding: clamp(24px, 6vw, 36px) clamp(20px, 5vw, 28px); border-radius: 16px; }
      .info__entry { gap: 12px; }
      .info__icon { width: 40px; height: 40px; }
      .faq-item__trigger { padding: 16px 18px; gap: 10px; }
      .faq-item__trigger span:first-child { font-size: clamp(13px, 3.5vw, 16px); }
      .faq-item__body { padding: 0 18px 16px; }
      .faq__list { gap: 8px; }
      .faq__header { margin-bottom: 32px; }
    }

    @media (max-width: 480px) {
      .form-card { padding: 18px 14px; }
      .form-card h2 { font-size: 18px; }
      .hours { padding: 20px 16px; }
      .contact-map { height: 200px; }
      .contact-hero__chips li { font-size: 11px; padding: 6px 12px; }
      .info__entry { gap: 10px; }
      .info__icon { width: 36px; height: 36px; flex-shrink: 0; }
      .info__value { font-size: 13px; }
      .faq-item__trigger { padding: 14px 14px; }
      .faq-item__trigger span:first-child { font-size: 13px; }
      .faq-item__body { padding: 0 14px 12px; }
      input, textarea, select { padding: 12px 14px; font-size: 15px; }
    }
