:root {
  --bg: #080b0c;
  --bg-2: #0d1112;
  --panel: #101617;
  --panel-soft: #121a1b;
  --text: #f2f4f1;
  --muted: #9da6a5;
  --line: rgba(255,255,255,.10);
  --teal: #10a8a5;
  --teal-soft: #73cac3;
  --lime: #b9ce38;
  --white: #ffffff;
  --rail: 132px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

::selection { background: var(--teal); color: #041010; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #080b0c; }
::-webkit-scrollbar-thumb { background: #273233; border: 3px solid #080b0c; border-radius: 999px; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

main, footer { margin-right: var(--rail); }
.section { position: relative; padding: 130px clamp(28px, 7vw, 120px); overflow: hidden; }
.section-number {
  position: absolute;
  top: 70px;
  right: clamp(30px, 6vw, 100px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  color: rgba(255,255,255,.25);
}
.kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-soft);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; }
h2 {
  font-size: clamp(42px, 5.7vw, 82px);
  font-weight: 500;
  letter-spacing: -.045em;
  max-width: 960px;
  margin-bottom: 0;
}
h2 em, h1 em, blockquote em {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--lime);
}

/* Desktop side rail */
.side-rail {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  background: rgba(10,13,14,.94);
  border-left: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.rail-brand {
  height: 132px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.rail-brand img { width: 83px; height: 83px; object-fit: cover; }
.rail-nav { flex: 1; display: flex; flex-direction: column; }
.rail-nav a {
  flex: 1;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #81898a;
  transition: background .3s ease, color .3s ease;
}
.rail-nav a span { font-size: 9px; color: #464f50; transition: color .3s ease; }
.rail-nav a:hover, .rail-nav a.active { background: #101718; color: var(--white); }
.rail-nav a:hover span, .rail-nav a.active span { color: var(--teal); }
.rail-actions { display: grid; grid-template-columns: 1fr 1fr; }
.rail-actions a {
  min-height: 66px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: #98a0a0;
  transition: color .3s ease, background .3s ease;
}
.rail-actions a:nth-child(2n) { border-right: 0; }
.rail-actions a:last-child { grid-column: 1 / -1; border-right: 0; }
.rail-actions a:hover { color: var(--white); background: #101718; }
.rail-actions .rail-whatsapp { color: var(--lime); }
.rail-actions svg { width: 19px; height: 19px; }

.mobile-header, .mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1011;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg-custom.webp');
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.025);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,9,10,.94) 0%, rgba(6,11,12,.76) 38%, rgba(5,10,11,.26) 68%, rgba(5,8,8,.40) 100%),
    linear-gradient(0deg, rgba(5,8,9,.70) 0%, rgba(5,8,9,0) 47%, rgba(5,8,9,.25) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 68% 42%, rgba(185,206,56,.08), transparent 27%), radial-gradient(circle at 42% 56%, rgba(16,168,165,.12), transparent 34%);
  pointer-events: none;
}
.hero-word {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 12px;
  top: auto;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  font-size: clamp(112px, 8.1vw, 156px);
  font-weight: 300;
  letter-spacing: .055em;
  color: rgba(255,255,255,.08);
  line-height: .82;
  user-select: none;
  pointer-events: none;
}
.hero-shell {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 16vw));
  margin-left: clamp(80px, 14vw, 220px);
  display: grid;
  grid-template-columns: minmax(0, 680px) 250px;
  align-items: end;
  gap: clamp(34px, 5vw, 78px);
}
.hero-card {
  position: relative;
  padding: clamp(38px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(8,18,19,.89), rgba(7,13,14,.72));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(7px);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 700;
  color: #b8c3c1;
}
.eyebrow span { width: 30px; height: 1px; background: var(--teal); }
h1 {
  margin-bottom: 26px;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 500;
  letter-spacing: -.055em;
  max-width: 720px;
}
.hero-lead { max-width: 575px; font-size: 16px; color: #bdc6c5; }
.hero-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #031011; border-color: var(--teal); }
.button-primary:hover { background: #22b7b1; border-color: #22b7b1; }
.button-ghost { color: #dce3e2; background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.06); }
.hero-meta {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  color: #7f8988;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero-note { align-self: center; max-width: 220px; color: rgba(238,242,239,.68); font-size: 12px; }
.note-line { display: block; width: 52px; height: 1px; background: var(--lime); margin-bottom: 18px; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: clamp(36px, 7vw, 100px);
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
  color: rgba(255,255,255,.45);
}
.scroll-cue i { display: block; width: 70px; height: 1px; background: rgba(255,255,255,.25); position: relative; }
.scroll-cue i::after { content: ""; position: absolute; top: -2px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); animation: travel 2.4s ease-in-out infinite; }
@keyframes travel { 0%,100% { left: 0; opacity: .3; } 50% { left: 65px; opacity: 1; } }

/* About */
.section-about { background: #0c1011; }
.section-about::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -270px;
  left: -220px;
  border: 1px solid rgba(16,168,165,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(16,168,165,.015), 0 0 0 140px rgba(16,168,165,.012);
}
.content-grid {
  position: relative;
  z-index: 1;
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
}
.section-heading h2 { font-size: clamp(46px, 5.2vw, 78px); }
.about-copy { padding-bottom: 6px; color: #909999; }
.about-copy .large-copy { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.55; color: #d7dcda; }
.wellness-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.wellness-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.10);
  color: #a7b1af;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Approach */
.section-approach { background: #0a0e0f; border-top: 1px solid rgba(255,255,255,.04); }
.approach-intro { max-width: 1040px; margin: 0 auto 82px; }
.approach-intro > p:last-child { max-width: 640px; margin-top: 28px; color: #8d9795; }
.approach-cards { max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach-card {
  position: relative;
  min-height: 390px;
  padding: 46px 36px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  transition: background .35s ease, transform .35s ease;
}
.approach-card:last-child { border-right: 0; }
.approach-card:hover { background: rgba(16,168,165,.055); transform: translateY(-4px); }
.card-index { position: absolute; top: 18px; right: 22px; font-size: 9px; color: #4c5555; letter-spacing: .14em; }
.approach-icon { width: 62px; height: 62px; color: var(--teal-soft); margin-bottom: 50px; }
.approach-icon svg { width: 100%; height: 100%; stroke-width: 1.15; }
.approach-card h3 { font-size: 24px; font-weight: 500; margin-bottom: 18px; }
.approach-card p { margin: 0; color: #8e9897; font-size: 14px; }

/* Therapies */
.section-therapies { background: #101617; }
.section-therapies::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(16,168,165,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(16,168,165,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 45%, black 80%, transparent);
}
.therapies-heading { position: relative; z-index: 1; max-width: 1350px; margin: 0 auto 74px; display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.therapies-heading > p { max-width: 400px; color: #929c9b; margin: 0 0 9px; }
.therapy-grid { position: relative; z-index: 1; max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.therapy-card {
  min-height: 420px;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.008));
  overflow: hidden;
  position: relative;
  transition: border-color .35s ease, transform .35s ease;
}
.therapy-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -120px;
  top: -130px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.012), 0 0 0 84px rgba(255,255,255,.008);
}
.therapy-card:hover { transform: translateY(-4px); border-color: rgba(115,202,195,.35); }
.therapy-topline { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.therapy-topline span { font-size: 9px; letter-spacing: .16em; color: #5d6867; }
.therapy-topline i { width: 46px; height: 1px; background: var(--teal); }
.therapy-card h3 { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 500; margin-bottom: 20px; color: #eef1ed; }
.therapy-card > p { max-width: 530px; color: #9aa4a2; }
.treatments { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.08); }
.treatments > div { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 13px; }
.treatments span { color: #d8ddda; }
.treatments strong { color: var(--lime); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.therapy-note { position: relative; z-index: 1; max-width: 1350px; margin: 24px auto 0; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; border: 1px solid rgba(185,206,56,.16); background: rgba(185,206,56,.025); color: #919b98; font-size: 12px; }
.therapy-note svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--lime); margin-top: 1px; }
.therapy-note p { margin: 0; }

/* Quote */
.section-quote { min-height: 520px; background: #091011; display: grid; place-items: center; }
.section-quote::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(16,168,165,.12), transparent 40%); }
.section-quote blockquote { position: relative; z-index: 1; max-width: 1050px; margin: 0 auto; text-align: center; font-family: var(--serif); font-size: clamp(38px, 5vw, 70px); line-height: 1.18; color: #dfe4df; }
.quote-leaf { position: absolute; width: 220px; height: 110px; border: 1px solid rgba(185,206,56,.12); border-radius: 100% 0 100% 0; transform: rotate(-18deg); }

/* Contact */
.section-contact { min-height: 720px; background: #0a0d0e; padding-top: 150px; }
.contact-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,9,10,.92) 0%, rgba(6,12,13,.64) 48%, rgba(6,12,13,.72) 100%), radial-gradient(circle at 78% 24%, rgba(186, 211, 77, .18), transparent 28%), radial-gradient(circle at 64% 64%, rgba(29, 146, 132, .16), transparent 36%), url('assets/contact-bg-custom-clean.webp') center 58% / cover no-repeat; filter: saturate(1.18) brightness(.82) contrast(1.04); transform: scale(1.02); opacity: .96; }
.contact-panel { position: relative; z-index: 1; max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid rgba(255,255,255,.12); background: rgba(7,12,13,.78); backdrop-filter: blur(10px); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.contact-main { padding: clamp(42px, 6vw, 78px); border-right: 1px solid var(--line); }
.contact-main h2 { font-size: clamp(46px, 5vw, 72px); }
.contact-main > p:not(.kicker) { color: #a1acab; max-width: 570px; margin: 28px 0 34px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; }
.contact-item { min-height: 180px; padding: 30px 34px 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.008)); }
.contact-item:nth-child(2n) { border-right: 0; }
.contact-item:nth-last-child(-n+2) { border-bottom: 0; }
.contact-label { display: inline-flex; align-items: center; gap: 12px; min-height: 34px; }
.contact-label svg { width: 34px; height: 34px; padding: 8px; color: var(--teal-soft); opacity: .96; flex: 0 0 auto; border-radius: 999px; background: linear-gradient(135deg, rgba(16,168,165,.16), rgba(185,206,56,.10)); border: 1px solid rgba(115,202,195,.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03); }
.contact-label span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .22em; color: #9bb4b2; font-weight: 800; }
.contact-item a { color: #eef3ef; font-size: 15px; line-height: 1.55; font-weight: 500; transition: color .25s ease, transform .25s ease; word-break: break-word; max-width: 240px; }
.contact-item a:hover { color: var(--lime); transform: translateX(2px); }
.professional-note { position: relative; z-index: 1; max-width: 1250px; margin: 28px auto 0; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.44); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.professional-note i { flex: 1; height: 1px; background: rgba(255,255,255,.10); }
.professional-note strong { font-weight: 600; color: rgba(185,206,56,.70); }

/* Footer */
footer { min-height: 140px; padding: 28px clamp(28px, 7vw, 120px); display: flex; align-items: center; gap: 24px; background: #07090a; border-top: 1px solid rgba(255,255,255,.06); color: #586160; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-brand img { width: 70px; height: 70px; object-fit: cover; }
footer p { margin: 0; color: #858e8c; text-transform: none; font-family: var(--serif); font-style: italic; font-size: 16px; letter-spacing: 0; }
footer > span { margin-left: auto; }

.floating-whatsapp { display: none; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .10s; }
.reveal.delay-2 { transition-delay: .20s; }

@media (max-width: 1180px) {
  :root { --rail: 112px; }
  .rail-brand { height: 112px; }
  .rail-brand img { width: 74px; height: 74px; }
  .hero-shell { width: calc(100% - 13vw); margin-left: 11vw; grid-template-columns: minmax(0, 650px) 190px; }
  .content-grid { gap: 60px; }
  .approach-card { padding: 42px 28px; }
}

@media (max-width: 960px) {
  :root { --rail: 0px; }
  main, footer { margin-right: 0; }
  .side-rail { display: none; }
  .mobile-header {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(5,9,10,.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .mobile-brand { display: inline-flex; align-items: center; }
  .mobile-brand img { width: 54px; height: 54px; object-fit: cover; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(115,202,195,.22);
    border-radius: 50%;
    background: rgba(10,18,19,.72);
    display: grid;
    place-content: center;
    gap: 7px;
    color: #eff5f3;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
  }
  .menu-toggle:active { transform: scale(.96); }
  .menu-toggle[aria-expanded="true"] { border-color: rgba(185,206,56,.45); background: rgba(18,27,25,.92); }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: currentColor; transition: transform .3s ease, width .3s ease; transform-origin: center; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 89;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 90% 12%, rgba(185,206,56,.09), transparent 28%),
      radial-gradient(circle at 10% 82%, rgba(16,168,165,.10), transparent 34%),
      linear-gradient(160deg, rgba(5,10,11,.995), rgba(8,15,15,.995));
    transform: translate3d(100%,0,0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
    transition: transform .42s cubic-bezier(.22,.61,.36,1), opacity .3s ease, visibility 0s linear .42s;
  }
  .mobile-menu.open {
    transform: translate3d(0,0,0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .42s cubic-bezier(.22,.61,.36,1), opacity .3s ease, visibility 0s linear 0s;
  }
  .mobile-menu-inner { min-height: calc(100svh - 78px); padding: 32px 24px 24px; display: flex; flex-direction: column; }
  .mobile-menu-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .mobile-menu-intro > span { color: var(--teal-soft); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .24em; }
  .mobile-menu-intro p { margin: 0; max-width: 180px; color: #697573; font-size: 10px; line-height: 1.5; text-align: right; }
  .mobile-menu-links { display: grid; }
  .mobile-menu-links a {
    min-height: 82px;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #eef3f1;
    transition: color .25s ease, padding-left .25s ease, background .25s ease;
  }
  .mobile-menu-links a:hover { color: var(--lime); padding-left: 4px; background: linear-gradient(90deg, rgba(16,168,165,.04), transparent 65%); }
  .mobile-link-number { color: var(--teal-soft); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
  .mobile-link-label { font-family: 'Manrope', sans-serif; font-size: clamp(26px, 8vw, 34px); font-weight: 400; letter-spacing: -.04em; }
  .mobile-link-arrow { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; color: #75817f; font-size: 14px; transition: color .25s ease, border-color .25s ease, transform .25s ease; }
  .mobile-menu-links a:hover .mobile-link-arrow { color: var(--lime); border-color: rgba(185,206,56,.28); transform: translate(2px,-2px); }
  .mobile-menu-footer { margin-top: auto; padding-top: 28px; }
  .mobile-menu .mobile-book {
    min-height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: linear-gradient(90deg, var(--teal), #27b9af);
    color: #041011;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    box-shadow: 0 14px 36px rgba(0,0,0,.20);
  }
  .mobile-menu .mobile-book span:last-child { font-size: 20px; font-weight: 400; }
  .mobile-menu-meta { padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; color: #65706e; font-size: 9px; line-height: 1.5; text-transform: uppercase; letter-spacing: .12em; }
  .mobile-menu-meta a { color: #8e9a97; text-transform: none; letter-spacing: 0; font-size: 10px; }
  body.menu-open { overflow: hidden; touch-action: none; }
  body.menu-open .floating-whatsapp { opacity: 0; pointer-events: none; }
  .hero { min-height: 100svh; padding-top: 78px; }
  .hero-shell { width: auto; margin: 0 clamp(22px, 7vw, 70px); grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .hero-card { max-width: 700px; }
  .hero-word { display: none; }
  .scroll-cue { left: 24px; bottom: 26px; }
  .content-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-copy { max-width: 700px; }
  .approach-cards { grid-template-columns: 1fr; border-bottom: 0; }
  .approach-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .approach-icon { margin-bottom: 30px; }
  .therapies-heading { align-items: start; flex-direction: column; gap: 28px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 75;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: #0a1110;
    box-shadow: 0 14px 35px rgba(0,0,0,.35);
  }
  .floating-whatsapp svg { width: 25px; height: 25px; }
}

@media (max-width: 700px) {
  .section { padding: 92px 22px; }
  .section-number { top: 38px; right: 22px; }
  h2 { font-size: clamp(40px, 12vw, 58px); }
  .hero-image { background-position: 58% 50%; }
  .hero-wash { background: linear-gradient(90deg, rgba(5,9,10,.95), rgba(5,9,10,.72)), linear-gradient(0deg, rgba(5,8,9,.65), transparent 50%); }
  .hero-shell { margin: 0 18px; width: calc(100% - 36px); align-self: center; }
  .hero-card { padding: 30px 24px 28px; background: rgba(7,14,15,.80); }
  h1 { font-size: clamp(44px, 13.2vw, 67px); line-height: .98; overflow-wrap: anywhere; }
  .hero-lead { font-size: 14px; }
  .hero-cta-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { margin-top: 30px; gap: 10px 18px; }

  .scroll-cue { display: none; }
  .section-heading h2 { font-size: clamp(40px, 12vw, 56px); }
  .approach-intro { margin-bottom: 50px; }
  .approach-card { padding: 36px 24px; }
  .therapy-grid { grid-template-columns: 1fr; }
  .therapy-card { min-height: 0; padding: 32px 24px; }
  .therapy-card h3 { font-size: 40px; }
  .treatments > div { font-size: 12px; }
  .section-quote { min-height: 440px; padding-left: 24px; padding-right: 24px; }
  .section-quote blockquote { font-size: clamp(34px, 10vw, 48px); }
  .section-contact { min-height: auto; padding-top: 110px; }
  .contact-main { padding: 36px 24px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-item { min-height: 135px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .contact-item:last-child { border-bottom: 0 !important; }
  .professional-note { align-items: flex-start; flex-direction: column; gap: 8px; }
  .professional-note i { width: 100%; flex: auto; }
  footer { padding: 26px 22px 90px; min-height: auto; flex-wrap: wrap; }
  footer > span { width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .contact-label span { font-size: 9.5px; letter-spacing: .18em; }
  .contact-label svg { width: 30px; height: 30px; padding: 7px; }
  .contact-item a { font-size: 14px; }
}

/* Client refinements */
@media (min-width: 981px) {
  .hero-word {
    left: 14px;
    bottom: 4px;
    font-size: clamp(150px, 12vw, 220px);
    line-height: .74;
    letter-spacing: .035em;
  }
  .hero-note {
    max-width: 285px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(238,242,239,.76);
  }
}

/* Four equal desktop rail actions: email, Facebook, Instagram, WhatsApp */
.rail-actions a:last-child { grid-column: auto; }
.rail-actions .rail-whatsapp { color: var(--lime); }
.rail-actions svg .svg-fill { fill: currentColor; stroke: none; }

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.social-links a { max-width: none; }

@media (max-width: 980px) {
  .mobile-menu-social {
    padding-top: 18px;
    display: flex;
    gap: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-menu-social a {
    color: #a7b3b0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mobile-menu-social a:hover { color: var(--lime); }
}
