/* Marina Bodywork. Design system
   Forest dominant, sand accent, cream ground.
   Display: Cormorant Garamond. Body: DM Sans.
*/

:root {
  --forest: #1C3A2B;
  --forest-dim: #14291F;
  --forest-soft: #2A4A3A;
  --sand: #D4B896;
  --sand-soft: #E8D5B5;
  --sand-deep: #B8965E;
  --cream: #FAFAF8;
  --cream-warm: #F4EFE6;
  --ink: #1A1A1A;
  --ink-soft: #2C2C2C;
  --fog: #6B7C74;
  --fog-soft: #8A9690;
  --line: rgba(28, 58, 43, 0.10);
  --line-strong: rgba(28, 58, 43, 0.18);
  --logo-h: 72px;
  --logo-h-mobile: 56px;
  --logo-footer-h: 120px;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-card: 0 1px 2px rgba(28,58,43,0.04), 0 8px 24px rgba(28,58,43,0.06);
  --shadow-lift: 0 1px 2px rgba(28,58,43,0.05), 0 18px 40px rgba(28,58,43,0.10);
  --shadow-sand: 0 1px 2px rgba(184,150,94,0.10), 0 20px 50px rgba(184,150,94,0.18);

  --t: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 96px;
  --container: 1200px;
  --container-narrow: 900px;
  --container-reading: 720px;

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--forest); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; color: var(--forest); margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--sand); color: var(--forest); }

:focus-visible {
  outline: 2px solid var(--sand-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Typography scale */
.h1 { font-family: var(--display); font-weight: 500; font-size: clamp(42px, 6.4vw, 64px); line-height: 1.05; letter-spacing: -0.02em; color: var(--forest); }
.h2 { font-family: var(--display); font-weight: 500; font-size: clamp(34px, 4.6vw, 48px); line-height: 1.1; letter-spacing: -0.015em; color: var(--forest); }
.h3 { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 2.6vw, 32px); line-height: 1.2; color: var(--forest); }
.h4 { font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.25; color: var(--forest); }
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  display: inline-block;
  margin: 0 0 var(--s-2);
}
.eyebrow--sand { color: var(--sand-deep); }
.eyebrow--cream { color: var(--sand); }
.lede { font-size: 20px; line-height: 1.65; color: var(--fog); }
.muted { color: var(--fog); }

/* Section / container */
.section { padding: var(--s-8) var(--s-3); }
.section--tight { padding: var(--s-7) var(--s-3); }
.section--dark { background: var(--forest); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark .lede, .section--dark .muted { color: rgba(250,250,248,0.78); }
.section--dark .eyebrow { color: var(--sand); }
.section--pale { background: var(--cream-warm); }
.section--cream { background: var(--cream); }
.section--surface {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.container { max-width: var(--container); margin: 0 auto; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; }
.container--reading { max-width: var(--container-reading); margin: 0 auto; }

@media (max-width: 720px) {
  .section { padding: var(--s-7) var(--s-3); }
  .section--tight { padding: var(--s-6) var(--s-3); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--forest); color: var(--sand); box-shadow: var(--shadow-card); }
.btn--primary:hover { background: var(--forest-soft); color: var(--sand-soft); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn--sand { background: var(--sand); color: var(--forest); }
.btn--sand:hover { background: var(--sand-soft); color: var(--forest); transform: translateY(-1px); box-shadow: var(--shadow-sand); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(212,184,150,0.45); }
.btn--ghost-light:hover { border-color: var(--sand); color: var(--sand); }
.btn--link {
  height: auto; padding: 0; border-radius: 0;
  background: transparent; color: var(--forest);
  border-bottom: 1.5px solid var(--sand-deep);
  border-radius: 0;
}
.btn--link:hover { color: var(--forest-soft); border-bottom-color: var(--forest); }
.section--dark .btn--link { color: var(--sand); border-bottom-color: var(--sand); }
.section--dark .btn--link:hover { color: var(--cream); border-bottom-color: var(--cream); }
.btn--lg { height: 60px; padding: 0 32px; font-size: 17px; }
.btn--sm { height: 44px; padding: 0 20px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.nav.scrolled {
  background: rgba(250,250,248,0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(28,58,43,0.04);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 22px; color: var(--forest); font-weight: 500;
  letter-spacing: -0.005em;
}
.nav__logo img { height: var(--logo-h); width: auto; }
@media (max-width: 720px) { .nav__logo img { height: var(--logo-h-mobile); } }
.nav__links {
  display: flex; gap: var(--s-4);
  margin-left: var(--s-5);
  flex: 1;
}
.nav__links a {
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.01em;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--sand-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--forest); }
.nav__right { display: flex; align-items: center; gap: var(--s-2); margin-left: auto; }
.nav__cta { background: var(--sand); color: var(--forest); height: 44px; padding: 0 20px; border-radius: 999px; font-weight: 500; font-size: 15px; display: inline-flex; align-items: center; transition: background var(--t-fast); }
.nav__cta:hover { background: var(--sand-soft); color: var(--forest); }
.nav__cta--alt { background: var(--forest); color: var(--sand); }
.nav__cta--alt:hover { background: var(--forest-soft, #1d2b25); color: var(--sand); }

.lang {
  display: inline-flex; align-items: center; gap: 2px;
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 4px;
  border-radius: 999px;
  font-size: 12px;
}
.lang button {
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 0;
  background: transparent;
  transition: background var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
  opacity: 0.55;
}
.lang__flag {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.lang button.is-on { background: var(--forest); opacity: 1; }
.lang button:not(.is-on):hover { opacity: 1; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
}
.hamburger span {
  width: 18px; height: 1.5px; background: var(--forest);
  position: relative;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--forest);
  transition: transform var(--t-fast);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  transform: translateY(-100%);
  transition: transform var(--t);
  z-index: 90;
  padding: var(--s-4) var(--s-3) var(--s-7);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: var(--s-2);
}
.drawer.is-open { transform: translateY(0); }
.drawer a { font-family: var(--display); font-size: 32px; color: var(--forest); padding: var(--s-2) 0; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: var(--s-3); width: 100%; }

/* Mobile sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 80;
  background: var(--forest);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0 8px 28px rgba(28,58,43,0.25);
}
.sticky-cta a {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--sand);
}
.sticky-cta a.is-sand { background: var(--sand); color: var(--forest); }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* WhatsApp float */
.wa-float {
  display: none;
  position: fixed;
  right: 14px;
  bottom: 78px;
  z-index: 81;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
  align-items: center; justify-content: center;
  color: white;
}
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 720px) {
  .wa-float { display: inline-flex; }
}

/* Footer */
.footer { background: var(--forest); color: var(--cream); padding: var(--s-7) var(--s-3) var(--s-4); }
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-5); padding-bottom: var(--s-5); border-bottom: 1px solid rgba(212,184,150,0.18); }
.footer__brand img { height: var(--logo-footer-h); width: auto; filter: brightness(0) saturate(100%) invert(89%) sepia(15%) saturate(454%) hue-rotate(346deg) brightness(94%) contrast(90%); margin-bottom: var(--s-3); }
.footer__tag { font-family: var(--display); font-style: italic; font-size: 26px; color: var(--sand); line-height: 1.25; }
.footer h4 { color: var(--sand); font-size: 14px; font-family: var(--body); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-bottom: var(--s-3); }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(250,250,248,0.85); font-size: 15px; }
.footer ul a:hover { color: var(--sand); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-3); font-size: 13px; color: rgba(250,250,248,0.6); flex-wrap: wrap; gap: var(--s-2); }
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .footer__brand { grid-column: 1 / -1; }
}

/* Hero (index) */
.hero {
  padding: calc(var(--nav-h) + var(--s-7)) var(--s-3) var(--s-7);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.hero__text { max-width: 620px; }
.hero h1 { font-size: clamp(42px, 5.6vw, 64px); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: var(--s-3); }
.hero__sub { font-size: 20px; color: var(--fog); line-height: 1.65; margin-bottom: var(--s-3); max-width: 540px; }
.hero__price { font-family: var(--display); font-size: 22px; color: var(--forest); font-style: italic; margin-bottom: var(--s-4); display: flex; align-items: center; gap: 12px; }
.hero__price::before {
  content: ""; width: 28px; height: 1px; background: var(--sand-deep);
}
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lift);
}
.hero__media::after {
  content: ""; position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-xl);
  z-index: -1;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero__media img { aspect-ratio: 4/5; max-height: 560px; }
  .hero { padding-top: calc(var(--nav-h) + var(--s-5)); }
}

/* Page hero (dark) */
.page-hero {
  padding: calc(var(--nav-h) + var(--s-7)) var(--s-3) var(--s-7);
  background: var(--forest);
  color: var(--cream);
}
.page-hero h1 { color: var(--cream); font-size: clamp(42px, 6vw, 68px); line-height: 1.04; margin-bottom: var(--s-3); max-width: 16ch; }
.page-hero__sub { font-size: 20px; line-height: 1.65; color: rgba(250,250,248,0.8); max-width: 60ch; margin-bottom: var(--s-4); }
.page-hero .eyebrow { color: var(--sand); }

/* Combination 3-column */
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
.combo-card {
  padding: var(--s-4);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,184,150,0.18);
}
.combo-card .eyebrow { font-size: 11px; color: rgba(212,184,150,0.85); margin-bottom: var(--s-3); }
.combo-card h3 { color: var(--cream); font-size: 24px; line-height: 1.2; margin-bottom: var(--s-2); }
.combo-card p { color: rgba(250,250,248,0.78); font-size: 16px; line-height: 1.7; margin: 0; }
.combo-card--winner {
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sand);
}
.combo-card--winner .eyebrow { color: var(--forest); opacity: 0.7; }
.combo-card--winner h3 { color: var(--forest); }
.combo-card--winner p { color: var(--forest); }
.combo-close { text-align: center; margin-top: var(--s-6); font-family: var(--display); font-style: italic; font-size: clamp(22px, 2.4vw, 28px); color: var(--sand); max-width: 38ch; margin-left: auto; margin-right: auto; line-height: 1.4; }
.combo-cta { text-align: center; margin-top: var(--s-4); }
@media (max-width: 900px) {
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card--winner { transform: none; }
}

/* Service cards (signposts) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.svc-card {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.svc-card h3 { font-size: 26px; margin-bottom: var(--s-2); }
.svc-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; flex: 1; margin-bottom: var(--s-3); }
.svc-card__meta { font-size: 13px; color: var(--fog); margin-bottom: var(--s-3); letter-spacing: 0.02em; }
.svc-card__badge {
  position: absolute; top: -10px; right: 20px;
  background: var(--sand); color: var(--forest);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

/* Diagnostic */
.diag {
  background: var(--forest);
  color: var(--cream);
}
.diag h2 { color: var(--cream); text-align: center; max-width: 22ch; margin: 0 auto var(--s-5); }
.diag__tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-2); }
.diag__tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,184,150,0.22);
  border-radius: var(--r);
  padding: var(--s-3) var(--s-2);
  text-align: left;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.4;
  font-family: var(--body);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  min-height: 110px;
  display: flex; align-items: flex-end;
}
.diag__tile:hover { background: rgba(212,184,150,0.08); border-color: var(--sand); transform: translateY(-2px); }
.diag__tile.is-on { background: var(--sand); color: var(--forest); border-color: var(--sand); }
.diag__result {
  margin-top: var(--s-3);
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: none;
  animation: revealIn 420ms cubic-bezier(0.22,1,0.36,1);
}
.diag__result.is-open { display: block; }
.diag__result h3 { color: var(--forest); font-size: 28px; margin-bottom: var(--s-2); }
.diag__result p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin: 0 0 var(--s-3); }
.diag__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s-3); }
.diag__tag { background: var(--cream-warm); color: var(--forest); font-size: 13px; padding: 6px 12px; border-radius: 999px; }
@media (max-width: 900px) { .diag__tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .diag__tiles { grid-template-columns: 1fr; } }

/* Social proof */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.testimonial {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--s-4);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.testimonial h3 { font-size: 22px; line-height: 1.2; }
.testimonial blockquote { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial cite { font-style: normal; font-size: 14px; color: var(--fog); }
.reviews-strip { text-align: center; margin-top: var(--s-4); font-size: 16px; }
.reviews-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest); font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.reviews-strip a:hover { border-color: var(--sand-deep); background: var(--cream-warm); }
.reviews-strip__stars { color: var(--sand-deep); letter-spacing: 1px; font-size: 15px; }
.reviews-strip__g { display: inline-block; flex-shrink: 0; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* Not-for-everyone */
.disqualifiers { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4) var(--s-5); margin-top: var(--s-5); }
.disqualifier { display: flex; gap: var(--s-2); align-items: flex-start; }
.disqualifier__mark { color: var(--sand); font-size: 26px; line-height: 1; font-family: var(--display); flex-shrink: 0; }
.disqualifier h4 { color: var(--cream); font-size: 22px; margin-bottom: 4px; line-height: 1.25; }
.disqualifier p { color: rgba(250,250,248,0.78); margin: 0; font-size: 16px; line-height: 1.7; }
@media (max-width: 720px) { .disqualifiers { grid-template-columns: 1fr; } }

/* Consult */
.consult { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-6); align-items: center; }
.consult__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lift); }
@media (max-width: 900px) { .consult { grid-template-columns: 1fr; gap: var(--s-4); } .consult__media { order: -1; max-width: 480px; margin: 0 auto; } }

/* FAQ */
.faq { max-width: 820px; margin: var(--s-5) auto 0; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  text-align: left;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--forest);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--forest-soft); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sand-deep);
  position: relative;
  transition: transform var(--t), background var(--t-fast);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--forest); height: 1.5px;
}
.faq__icon::before { width: 12px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); transition: transform var(--t-fast); }
.faq__item.is-open .faq__icon { background: var(--sand); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 460ms cubic-bezier(0.22,1,0.36,1);
}
.faq__a > div {
  padding: 0 0 var(--s-3);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
  max-width: 64ch;
}

/* Method page */
.fascia-panels { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-5); }
.fascia-panel {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--s-4);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.fascia-panel h3 { font-size: 26px; margin-bottom: var(--s-2); }
.fascia-panel .label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-deep); font-weight: 600; margin-bottom: var(--s-2); }
.fascia-panel p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: var(--s-2); }
.fascia-panel p:last-child { margin-bottom: 0; }
.fascia-panel strong { color: var(--forest); font-weight: 600; }
@media (max-width: 800px) { .fascia-panels { grid-template-columns: 1fr; } }

.modality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
.modality-card {
  padding: var(--s-4);
  border-radius: var(--r-lg);
  background: white;
  border-top: 4px solid var(--sand);
  box-shadow: var(--shadow-card);
}
.modality-card h3 { font-size: 24px; margin-bottom: var(--s-2); }
.modality-card .price { font-family: var(--display); font-style: italic; color: var(--sand-deep); font-size: 18px; margin-bottom: var(--s-2); }
.modality-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0; }
@media (max-width: 720px) { .modality-grid { grid-template-columns: 1fr; } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
.stat { text-align: center; padding: var(--s-3); }
.stat__num { font-family: var(--display); font-size: 56px; line-height: 1; color: var(--sand); margin-bottom: var(--s-2); font-weight: 500; }
.stat__label { color: rgba(250,250,248,0.78); font-size: 15px; line-height: 1.5; }
.stat__src { font-size: 12px; color: rgba(250,250,248,0.5); margin-top: 8px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* Massage page */
.service-block {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  margin-bottom: var(--s-4);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: stretch;
}
.service-block--signature { background: var(--cream-warm); border-color: var(--sand); }
.service-block__media { background: var(--forest); }
.service-block__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.service-block__body { padding: var(--s-5); }
.service-block__badge { display: inline-block; background: var(--sand); color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: var(--s-2); }
.service-block h2 { font-size: clamp(30px, 3.4vw, 40px); margin-bottom: 6px; }
.service-block__meta { font-family: var(--display); font-style: italic; color: var(--sand-deep); font-size: 20px; margin-bottom: var(--s-3); }
.service-block p { color: var(--ink-soft); font-size: 17px; line-height: 1.75; margin-bottom: var(--s-2); }
.benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px var(--s-3);
  margin: var(--s-3) 0;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.benefits li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.55;
}
.benefits li::before {
  content: ""; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand-deep); margin-top: 9px;
}
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block__media img { aspect-ratio: 16/10; max-height: 320px; }
  .benefits { grid-template-columns: 1fr; }
}

.combo-strip {
  background: var(--sand);
  color: var(--forest);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  margin: var(--s-3) 0 var(--s-4);
}
.combo-strip strong { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 22px; display: block; margin-bottom: 4px; }

/* Choose */
.choose { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.choose-card {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: var(--s-4);
}
.choose-card .if {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand-deep); font-weight: 600; margin-bottom: var(--s-2);
}
.choose-card h3 { font-size: 22px; line-height: 1.25; margin-bottom: 6px; }
.choose-card p { color: var(--ink-soft); font-size: 15px; margin: 0; line-height: 1.7; }
@media (max-width: 800px) { .choose { grid-template-columns: 1fr; } }

/* Pricing table */
.pricing {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-card);
  margin-top: var(--s-4);
}
.pricing__row {
  display: grid; grid-template-columns: 1fr auto; gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.pricing__row:last-child { border-bottom: 0; padding-bottom: 0; }
.pricing__row:first-child { padding-top: 0; }
.pricing__name { font-family: var(--display); font-size: 24px; color: var(--forest); margin-bottom: 4px; }
.pricing__sub { font-size: 14px; color: var(--fog); line-height: 1.55; }
.pricing__price { font-family: var(--display); font-size: 28px; color: var(--forest); font-style: italic; text-align: right; }
.pricing__cta { margin-top: var(--s-2); }
.pricing__note { font-size: 13px; color: var(--fog); margin-top: 8px; max-width: 64ch; }

/* Guarantee strip */
.guarantee {
  background: var(--sand);
  color: var(--forest);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  text-align: center;
  margin: var(--s-5) auto 0;
  max-width: 800px;
}
.guarantee .label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: var(--s-2); }
.guarantee p { font-family: var(--display); font-size: clamp(22px, 2.6vw, 28px); line-height: 1.35; font-style: italic; margin: 0; }

/* Training page */
.session-structure { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-2); margin-top: var(--s-4); counter-reset: step; }
.structure-step {
  background: white;
  border-radius: var(--r);
  padding: var(--s-3);
  border: 1px solid var(--line);
  counter-increment: step;
  position: relative;
}
.structure-step::before {
  content: counter(step);
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--sand);
  display: block; margin-bottom: var(--s-2);
}
.structure-step p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .session-structure { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .session-structure { grid-template-columns: 1fr; } }

.specialty-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-4); justify-content: center; }
.specialty-chip {
  background: var(--sand);
  color: var(--forest);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* PT plan selector */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.plan-card {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--s-4);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  text-align: left;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--sand-deep); }
.plan-card__name { font-family: var(--display); font-size: 28px; color: var(--forest); margin-bottom: 4px; }
.plan-card__price { font-family: var(--display); font-style: italic; font-size: 32px; color: var(--sand-deep); margin-bottom: var(--s-2); }
.plan-card__per { font-size: 14px; color: var(--fog); margin-bottom: var(--s-3); }
.plan-card__feats { list-style: none; padding: 0; margin: 0 0 var(--s-3); display: flex; flex-direction: column; gap: 8px; }
.plan-card__feats li { font-size: 15px; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; line-height: 1.55; }
.plan-card__feats li::before { content: "✓"; color: var(--sand-deep); font-weight: 700; flex-shrink: 0; }
.plan-card__badge { position: absolute; top: -10px; right: 20px; background: var(--sand); color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; }
.plan-card__badge--alt { background: var(--forest); color: var(--sand); }
.plan-card__cta { margin-top: auto; width: 100%; }
.plan-card:hover .plan-card__cta { background: var(--forest-soft); }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }


/* Single-session strip */
.single-strip {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
  margin-top: var(--s-4);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); flex-wrap: wrap;
}
.single-strip .name { font-family: var(--display); font-size: 26px; color: var(--forest); margin-bottom: 0; }
.single-strip .sub { font-size: 14px; color: var(--fog); }
.plan-note {
  margin-top: var(--s-4);
  font-size: 15px;
  line-height: 1.65;
  color: var(--fog);
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Outcomes (training) */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.outcome {
  background: var(--forest);
  color: var(--cream);
  padding: var(--s-4);
  border-radius: var(--r-lg);
}
.outcome .label { color: var(--sand); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: var(--s-2); }
.outcome p { color: var(--cream); font-family: var(--display); font-size: 24px; line-height: 1.3; font-style: italic; margin: 0; }
@media (max-width: 900px) { .outcomes { grid-template-columns: 1fr; } }

/* About page */
.about-hero {
  position: relative;
  height: 80vh; min-height: 540px; max-height: 760px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-hero__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: var(--s-7) var(--s-3) var(--s-5);
  background: linear-gradient(180deg, rgba(28,58,43,0) 0%, rgba(28,58,43,0.92) 60%, rgba(28,58,43,0.97) 100%);
  color: var(--cream);
}
.about-hero__inner { max-width: var(--container); margin: 0 auto; }
.about-hero h1 { color: var(--cream); font-size: clamp(40px, 5.6vw, 64px); line-height: 1.05; margin-bottom: var(--s-2); }
.about-hero .title { font-size: 16px; color: var(--sand); letter-spacing: 0.04em; }

.about-bio { max-width: 64ch; margin: 0 auto; }
.about-bio p { font-size: 19px; line-height: 1.85; color: var(--ink-soft); margin-bottom: var(--s-3); }
.about-bio p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 64px; line-height: 0.9;
  color: var(--sand-deep);
  float: left; padding: 4px 10px 0 0;
}

.creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.cred {
  background: white;
  padding: var(--s-3);
  border-radius: var(--r);
  border: 1px solid var(--line);
  text-align: center;
  font-family: var(--body);
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.4;
  min-height: 100px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 720px) { .creds { grid-template-columns: 1fr 1fr; } }

.about-letter {
  border-left: 3px solid var(--sand);
  padding: var(--s-3) var(--s-5);
  text-align: left;
}
.about-letter .eyebrow { display: block; margin-bottom: var(--s-3); }
.about-letter__quote {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  font-weight: 400;
}
.about-letter__sign {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}

.partner-strip {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-4);
  margin-top: var(--s-5);
}
.partner-strip img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.partner-strip p { color: var(--cream); margin: 0; font-size: 16px; line-height: 1.65; }
.partner-strip h4 { color: var(--sand); font-family: var(--body); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }
@media (max-width: 720px) { .partner-strip { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 160ms; }
.stagger-3 { transition-delay: 240ms; }
.stagger-4 { transition-delay: 320ms; }
.stagger-5 { transition-delay: 400ms; }
.stagger-6 { transition-delay: 480ms; }

@keyframes revealIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Utilities */
.center { text-align: center; }
.mt-1 { margin-top: var(--s-2); }
.mt-2 { margin-top: var(--s-3); }
.mt-3 { margin-top: var(--s-4); }
.mt-4 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mb-2 { margin-bottom: var(--s-3); }
.mx-auto { margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--line); border: 0; margin: var(--s-5) 0; }
.section--dark .divider { background: rgba(212,184,150,0.18); }
