/* ============================================================
   FUNCTIONAL THERAPY FITNESS — ftf.css
   Design tokens + layout + components
   Source: Claude design kit (colors_and_type.css + styles.css)
   Zero WordPress/BeTheme dependencies.
   ============================================================ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --color-ink:          #042825;
  --color-forest:       #00574f;
  --color-forest-body:  #28413d;
  --color-gold:         #f4c47e;
  --color-gold-hover:   #e8b46a;
  --color-bg:           #ffffff;
  --color-bg-alt:       #f8fbf8;
  --color-section-tint: #f0f5f1;
  --color-bg-input:     #f9e8d9;
  --color-footer-text:  #e0bc92;
  --color-whatsapp:     #25d366;
  --color-hairline:     rgba(4,40,37,0.07);

  --font-display: "Prata", Georgia, "Times New Roman", serif;
  --font-serif:   "Noto Serif", Georgia, "Times New Roman", serif;
  --font-sans:    "Source Sans 3", system-ui, -apple-system, Arial, sans-serif;

  --fs-display: clamp(48px, 7vw, 96px);
  --fs-h1:      clamp(48px, 7vw, 86px);
  --fs-h2:      clamp(34px, 4vw, 54px);
  --fs-h3:      clamp(26px, 3vw, 36px);
  --fs-h4:      21px;
  --fs-h5:      18px;
  --fs-h6:      13px;
  --fs-lead:    18px;
  --fs-body:    16px;
  --fs-small:   14px;
  --lh-body:    1.8;
  --lh-heading: 1.18;

  --space-xs: 8px;  --space-sm: 12px; --space-md: 24px;
  --space-lg: 48px; --space-xl: 80px; --space-2xl: 120px;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-input: 14px;
  --radius-pill:  999px;

  --shadow-card: 0 12px 40px rgba(4,40,37,0.14);
  --shadow-btn:  0 8px 20px rgba(4,40,37,0.18);
  --shadow-bar:  0 4px 20px rgba(4,40,37,0.15);

  --ease-out:        cubic-bezier(0.22,1,0.36,1);
  --transition-base: 0.22s var(--ease-out);

  --scrim-hero:   linear-gradient(90deg, rgba(4,40,37,0.72), rgba(4,40,37,0.25));
  --scrim-banner: linear-gradient(rgba(4,40,37,0.58), rgba(4,40,37,0.58));
  --scrim-footer: linear-gradient(rgba(4,40,37,0.9),   rgba(4,40,37,0.9));
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-forest-body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a, button, [role="button"], input, label, select, textarea { touch-action: manipulation; }

:focus-visible {
  outline: 2px solid currentColor !important;
  outline-offset: 3px !important;
  border-radius: 2px;
}

/* ── Headings ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: var(--lh-heading);
}
h1, h2, h3 { text-wrap: balance; }
h4, h5, h6 { text-wrap: pretty; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); line-height: 1.5; }
h5 { font-size: var(--fs-h5); font-weight: 500; }
h6 { font-size: var(--fs-h6); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

.display-title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
  text-wrap: balance;
}

p { margin: 0 0 18px; max-width: 72ch; }
.lead { font-size: var(--fs-lead); line-height: 1.78; }
a { color: var(--color-forest); }

blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.75;
}

/* ── Layout helpers ────────────────────────────────────────── */
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.section    { padding: 96px 0 72px; position: relative; }
.section.tight { padding: 60px 0; }
.section.alt   { background: var(--color-bg-alt); }

/* ── Eyebrow ───────────────────────────────────────────────── */
.eyebrow {
  display: block; margin: 0 0 14px;
  font-family: var(--font-serif); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-forest);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1.5px solid transparent; border-radius: var(--radius-pill);
  font-family: var(--font-serif); font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  padding: 15px 32px; text-decoration: none; white-space: nowrap;
  transition: filter var(--transition-base), transform var(--transition-base),
              box-shadow var(--transition-base), background var(--transition-base),
              color var(--transition-base);
}
.btn--primary  { background: var(--color-gold);  color: var(--color-ink); }
.btn--secondary{ background: var(--color-ink);   color: #fff; }
.btn--ghost    { background: transparent; color: var(--color-ink); border-color: var(--color-ink); }
.btn--ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--sm       { padding: 11px 20px; font-size: 13px; }
.btn:active    { transform: scale(0.97); filter: brightness(0.9); }
@media (hover: hover) {
  .btn--primary:hover  { background: var(--color-gold-hover); transform: translateY(-2px); box-shadow: var(--shadow-btn); }
  .btn--secondary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-btn); filter: brightness(1.15); }
  .btn--ghost:hover    { background: var(--color-ink); color: #fff; }
  .btn--ghost.on-dark:hover { background: #fff; color: var(--color-ink); border-color: #fff; }
}

/* ── Section heading helper ────────────────────────────────── */
.sec-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.sec-head p { margin-inline: auto; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-forest);
  box-shadow: var(--shadow-bar);
  height: 88px; display: flex; align-items: center;
}
.nav__inner {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { height: 56px; }
.nav__logo-link { display: flex; align-items: center; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-family: var(--font-serif); font-size: 14px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: #fff;
  text-decoration: none; background: none; border: 0; padding: 0;
  transition: color var(--transition-base);
}
.nav__link:hover, .nav__link.is-active { color: #fae5c6; }
.nav__cta {
  background: var(--color-gold); color: var(--color-ink);
  border-radius: var(--radius-pill); padding: 10px 18px;
  font-family: var(--font-serif); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
  border: 0; transition: background var(--transition-base), transform var(--transition-base);
}
.nav__cta:hover { background: var(--color-gold-hover); transform: translateY(-1px); }
.nav__cta--alt {
  background: transparent; color: #fff;
  border: 1.5px solid var(--color-gold);
}
.nav__cta--alt:hover { background: var(--color-gold); color: var(--color-ink); }
.nav__burger {
  display: none;
  width: 44px; height: 44px; border: 0;
  background: rgba(255,255,255,0.14); border-radius: 8px;
  color: #fff; font-size: 22px;
  align-items: center; justify-content: center;
}
/* Mobile menu — hidden at all sizes until .is-open is set by JS */
.nav__mobile { display: none; }

@media (max-width: 900px) {
  .nav { height: 68px; }
  html { scroll-padding-top: 68px; }
  .nav__logo { height: 44px; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__mobile.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--color-ink);
    padding: 8px 0 18px;
    z-index: 99;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }
  .nav__mobile .nav__link {
    padding: 15px 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
  }
  .nav__mobile .nav__cta {
    margin: 10px 22px 0; text-align: center; padding: 13px; display: block;
  }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh; max-height: 860px;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--color-ink);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center bottom;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: var(--scrim-hero);
}
.hero__content {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding-bottom: clamp(120px, 22vh, 230px);
}
.hero__title { margin: 0; max-width: 740px; }
.hero__actions {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 34px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: min(calc(100% - 48px), 520px);
}
.hero__notice {
  margin: 0; padding: 7px 20px;
  border-radius: var(--radius-pill);
  background: rgba(4,40,37,0.55); color: var(--color-gold);
  font-family: var(--font-serif); font-size: 13px; font-weight: 600; text-align: center;
}
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(240,245,241,0.85), rgba(240,245,241,0));
  z-index: 2; pointer-events: none;
}

/* ── Mobile hero layout ─────────────────────────────────────
   Layout target (matches screenshot):
   • Hero fills viewport, overlay gradient
   • Title: large, left-aligned, lower portion of hero
   • Actions group: notice + 2 full-width pill buttons, centred at bottom
   ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    min-height: 92svh;
    max-height: none;
  }

  /* Content block sits at bottom via flex-end; padding-bottom creates
     clearance above the absolutely-positioned actions group             */
  .hero__content {
    width: calc(100% - 40px);
    padding-bottom: clamp(220px, 31svh, 280px);
  }

  .hero__title {
    font-size: clamp(54px, 13vw, 82px);
    line-height: 1.05;
  }

  /* Actions group: notice + buttons, all full-width, centred at bottom */
  .hero__actions {
    width: calc(100% - 40px);
    bottom: 30px;
    gap: 12px;
    align-items: stretch; /* stretches children to container width */
  }

  /* Notice fills the full-width strip */
  .hero__notice {
    text-align: center;
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Both CTA buttons full-width */
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(50px, 13vw, 64px);
  }

  .hero__content {
    padding-bottom: clamp(214px, 32svh, 265px);
  }

  .hero__actions {
    bottom: 22px;
    width: calc(100% - 32px);
  }
}

/* ── Intro cards (Why / Who / How) ────────────────────────── */
.intro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.icard { text-align: center; transition: transform var(--transition-base); }
.icard__img { width: min(220px,80%); margin: 0 auto 18px; }
.icard h3 { font-size: 26px; margin: 0 0 10px; }
.icard h3 .k { color: var(--color-forest); font-weight: 700; }
.icard p { max-width: 32ch; margin: 0 auto 12px; font-size: 15px; }
@media (hover: hover) { .icard:hover { transform: translateY(-7px); } }
@media (max-width: 760px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Services split section ────────────────────────────────── */
.services-section {
  position: relative; background: var(--color-ink); color: #fff; overflow: hidden;
}
.services-section__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5;
}
.services-section__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,40,37,0.55), rgba(4,40,37,0.92));
}
.services-section__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: center; padding: 100px 0;
}
.services-section__inner h2,
.services-section__inner h4 { color: #fff; }
.services-section .eyebrow { color: var(--color-gold); }
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.srow {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,0.14);
  text-decoration: none; position: relative; border-radius: var(--radius-sm);
  transition: background var(--transition-base), gap var(--transition-base);
}
.srow img { width: 34px; flex-shrink: 0; }
.srow h4  { margin: 0; font-size: 16px; font-weight: 400; color: #fff; }
.srow::after {
  content: "→"; position: absolute; right: 10px;
  color: var(--color-gold); opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}
@media (hover: hover) {
  .srow:hover { background: rgba(255,255,255,0.07); gap: 16px; }
  .srow:hover::after { opacity: 1; transform: translateX(0); }
}
@media (max-width: 860px) {
  .services-section__inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .services-list { grid-template-columns: 1fr; }
}

/* ── Bio split ─────────────────────────────────────────────── */
.bio { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.bio__panel { background: var(--color-section-tint); border-radius: var(--radius-md); padding: 44px 40px; }
.bio__media { display: flex; flex-direction: column; gap: 0; }
.bio__photo { border-radius: var(--radius-md); box-shadow: var(--shadow-card); width: 100%; object-fit: cover; }
.bio__quote { background: var(--color-forest); border-radius: var(--radius-md); padding: 26px 30px; margin-top: 18px; color: #fff; }
.bio__quote .qmark { font-family: var(--font-display); font-size: 44px; line-height: 0.5; color: rgba(255,255,255,0.35); display: block; margin-bottom: 12px; }
.bio__quote blockquote { color: #fff; }
.bio__story {
  max-width: calc(50% - 24px);
  margin: 48px 0 0 calc(50% + 24px);
}
@media (max-width: 820px) { .bio { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 820px) {
  .bio__story { max-width: none; margin: 32px auto 0; }
}

/* ── Page banner (sub-pages) ───────────────────────────────── */
.banner {
  position: relative; min-height: 46vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--color-ink);
}
.banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center bottom; }
.banner__bg::after { content: ""; position: absolute; inset: 0; background: var(--scrim-banner); }
.banner__content { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; text-align: center; }
.banner__title { margin: 0; }

/* ── Service detail split ──────────────────────────────────── */
.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.detail-split img { width: 100%; border-radius: var(--radius-md); }
.detail-split .meta { margin-top: 6px; font-family: var(--font-serif); color: var(--color-forest); font-size: 18px; }
@media (max-width: 820px) { .detail-split { grid-template-columns: 1fr; gap: 28px; } }

/* ── Accordion ─────────────────────────────────────────────── */
.acc__h { font-size: 24px; margin: 0 0 8px; }
.acc__item { border-bottom: 1px solid rgba(4,40,37,0.12); }
.acc__q {
  display: flex; align-items: center; gap: 14px;
  width: 100%; text-align: left; background: none; border: 0;
  padding: 16px 4px;
  font-family: var(--font-serif); font-size: 17px; color: var(--color-ink);
}
.acc__sign { color: var(--color-forest); font-size: 22px; width: 18px; flex-shrink: 0; text-align: center; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.acc__a > div { padding: 0 4px 18px 36px; color: var(--color-forest-body); font-size: 15px; line-height: 1.7; }
.acc__a p  { margin: 0 0 10px; max-width: none; }
.acc__a ul { padding-left: 20px; margin: 8px 0; }
.acc__a li { margin-bottom: 4px; }

/* ── FAQ grid ──────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 8px 48px; max-width: 980px; margin: 0 auto; }
.faq-grid.two { grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 820px) { .faq-grid.two { grid-template-columns: 1fr; } }

/* ── Pricing ───────────────────────────────────────────────── */
.price-block { margin-top: 8px; }
.price-block + .price-block { margin-top: 56px; }
.price-head { text-align: center; margin: 0 auto 28px; }
.price-head img { width: 42px; margin: 0 auto 12px; }
.price-head h3 { font-size: clamp(22px,2.4vw,28px); margin: 0; }
.price-cards {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 22px; max-width: 760px; margin: 0 auto;
}
.tier { border-radius: 15px; padding: 34px 9% 40px; text-align: center; }
.tier.dark    { background: var(--color-forest); color: #fff; }
.tier.outline { border: 1px solid var(--color-forest); color: var(--color-ink); }
.tier .num {
  font-family: var(--font-serif); font-size: clamp(40px,5vw,50px); line-height: 1; margin: 0;
}
.tier.dark    .num { color: #fff; }
.tier.outline .num { color: var(--color-forest); }
.tier .lbl {
  font-family: var(--font-serif); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin: 4px 0 18px; opacity: 0.85;
}
.tier .price { font-family: var(--font-display); font-size: clamp(56px,7vw,80px); line-height: 1; margin: 0 0 18px; }
.tier.dark    .price { color: #fff; }
.tier.outline .price { color: var(--color-forest); }
.tier .soon { font-family: var(--font-display); font-size: 44px; line-height: 1.1; margin: 8px 0 14px; }
.tier .pkg-title { font-family: var(--font-serif); font-size: 22px; margin: 0 0 6px; }
.tier.dark .pkg-title { color: #fff; }
.tier .pkg-h { font-size: 18px; margin: 0 0 10px; }
.tier.dark .pkg-h { color: #fff; }
.tier .pkg-line { font-size: 15px; margin: 8px 0; line-height: 1.5; }
.tier .pkg-line em { font-size: 13px; opacity: 0.85; }
.tier .pkg-line strong { font-weight: 700; }
.tier .note { font-size: 14px; line-height: 1.6; opacity: 0.92; margin: 0 0 18px; max-width: none; }
.tier .btn { margin-top: 18px; }
.tier.dark .btn { background: var(--color-bg-input); color: var(--color-ink); border-color: transparent; }

/* ── Before/After slider ───────────────────────────────────── */
/* Layout: BEFORE = full base layer (left); AFTER = right-anchored clip  */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 760px; margin: 0 auto; }
.ba {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 459/800;
  user-select: none; touch-action: none; cursor: ew-resize;
  background: var(--color-section-tint);
}
/* Both images fill the container; pointer-events off so drag hits .ba */
.ba > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

/* AFTER clip: right-anchored, starts at 50% from the right side */
.ba__after-clip {
  position: absolute; top: 0; bottom: 0; right: 0;
  overflow: hidden; width: 50%; pointer-events: none;
}
/* After image: right-anchored, full container width (set precisely by JS) */
.ba__after-clip img {
  position: absolute; top: 0; bottom: 0; right: 0; left: auto;
  height: 100%; object-fit: cover; object-position: right center;
  pointer-events: none;
  /* JS sets width to full container px width */
}

/* Labels — both sit directly in .ba so they're always visible */
.ba__tag {
  position: absolute; top: 14px; z-index: 6;
  background: rgba(4,40,37,0.72); color: #fff;
  font-family: var(--font-serif); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); pointer-events: none;
}
.ba__tag.before { left: 14px; }
.ba__tag.after  { right: 14px; }

/* Divider line + handle knob */
.ba__handle {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: var(--color-gold); z-index: 5; left: 50%; transform: translateX(-50%);
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-gold); color: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
@media (max-width: 600px) { .ba-wrap { grid-template-columns: 1fr; max-width: 360px; } }

/* ── Services grid (services index page) ───────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px 28px; }
.scard { text-decoration: none; color: inherit; text-align: center; transition: transform var(--transition-base); display: block; }
.scard__img {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--color-section-tint); aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.scard__img img { width: 100%; height: 100%; object-fit: cover; }
.scard h4 { margin: 16px 0 0; font-size: 19px; }
@media (hover: hover) {
  .scard:hover { transform: translateY(-7px); }
  .scard:hover h4 { color: var(--color-forest); }
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

/* ── Contact info rows ─────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; max-width: 860px; margin: 0 auto; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(4,40,37,0.08); }
.info-row .ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-pill); background: var(--color-section-tint); color: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
}
.info-row .ic svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-row b { font-family: var(--font-serif); font-weight: 400; color: var(--color-ink); font-size: 17px; display: block; }
.info-row span { font-size: 14px; color: var(--color-forest-body); }
@media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; } }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  position: relative; padding: 76px 0 40px;
  background: var(--color-ink); color: var(--color-footer-text);
  text-align: center; overflow: hidden;
}
.footer__bg { position: absolute; inset: 0; background-size: cover; background-position: center top; }
.footer__bg::after { content: ""; position: absolute; inset: 0; background: var(--scrim-footer); }
.footer__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__logo { width: 140px; margin-bottom: 12px; }
.footer h2, .footer h3, .footer h4 { color: #fff; margin: 4px 0; }
.footer h2 { font-size: clamp(20px,2.8vw,28px); letter-spacing: 0.04em; }
.footer h3 { font-size: 18px; font-weight: 400; }
.footer h4 { font-size: 14px; font-weight: 400; line-height: 1.7; }
.footer a   { color: var(--color-gold); text-decoration: none; }
.footer a:hover { opacity: 0.82; }
.footer p   { color: var(--color-footer-text); max-width: 560px; margin: 8px auto; font-size: 14px; }
.footer__fine { font-size: 12px; opacity: 0.7; margin-top: 18px; }

/* ── WhatsApp float ────────────────────────────────────────── */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 200;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-whatsapp); color: #fff; text-decoration: none;
  box-shadow: 0 8px 22px rgba(4,40,37,0.26), 0 2px 6px rgba(0,0,0,0.16);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  transition: box-shadow var(--transition-base);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px rgba(37,211,102,0.45), 0 4px 10px rgba(0,0,0,0.18); }
.wa-float:hover::before { box-shadow: 0 0 0 8px rgba(37,211,102,0.16); }
.wa-float:active { transform: scale(0.95); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 700px) { .wa-float { width: 54px; height: 54px; right: 16px; bottom: 18px; } .wa-float svg { width: 29px; height: 29px; } }

/* ── Reveal on scroll ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
