/* ============================================================
   LAVILA PILATES — style.css  V7
   Design system. Mobile-first. WCAG AA compliant.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --sage-dark:   #77857D;
  --sage-mid:    #8AA494;
  --mint:        #9ED8B3;
  --sand:        #CDB499;
  --stone:       #E1DAD3;
  --pale-sage:   #D0DED5;
  --cream:       #F8F5EF;
  --off-white:   #F4F2EC;
  --near-white:  #ECEAE4;
  --text-dark:   #2A2A26;
  --text-body:   #3A3A34;
  --text-muted:  #5A5A54;
  --text-light:  #8A8A84;
  --border:      #DDD9D2;
  --border-light:#E8E4DC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --section-py:clamp(4rem, 8vw, 7rem);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--sage-dark); text-underline-offset: 3px; }

/* ── LANGUAGE VISIBILITY ────────────────────────────────────
   Strategy: CSS hides everything by default.
   The inline <script> in <head> sets data-active-lang on <html>
   before first paint — zero flash.
   JS then handles manual switching via style.display.
   ─────────────────────────────────────────────────────────── */

/* 1. Hide all lang variants by default */
[data-lang] { display: none !important; }

/* 2. Show the active language — CSS unsets the hide */
/*    Using revert so block elements stay block, inline stay inline */
html[data-active-lang="ca"] [data-lang="ca"],
html[data-active-lang="es"] [data-lang="es"],
html[data-active-lang="en"] [data-lang="en"] {
  display: revert !important;
}

/* 3. Fallback: if JS hasn't run yet, show CA */
html:not([data-active-lang]) [data-lang="ca"] {
  display: revert !important;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.section { padding-block: var(--section-py); }

/* ── Typography ─────────────────────────────────────────────
   Heading: Cormorant Garamond — elegant, editorial
   Body: Jost — geometric, clean, excellent small-size legibility
   Sizes calibrated for 40-65 audience and WCAG AA compliance
   ─────────────────────────────────────────────────────────── */

h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Display — hero headline */
.display {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

/* Section headings */
.heading-xl { font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1.1; }
.heading-lg { font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.15; }
.heading-md { font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.2; }

/* Section heading used across site */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Eyebrow labels */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 1rem;
}

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* Body sizes — minimum 1rem (16px) for 40+ audience */
.body-lg { font-size: 1.1rem; line-height: 1.82; font-weight: 300; }
.body-md { font-size: 1rem;   line-height: 1.8;  font-weight: 300; }
.body-sm { font-size: 0.9rem; line-height: 1.75; font-weight: 300; }

.section-body {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--text-body); max-width: 58ch;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 260ms var(--ease-out);
  white-space: nowrap; -webkit-appearance: none;
  min-height: 48px; /* Touch target */
}
.btn-primary  { background: var(--sage-dark);  border-color: var(--sage-dark);  color: #fff; }
.btn-primary:hover  { background: var(--text-dark); border-color: var(--text-dark); color: #fff; }
.btn-outline  { background: transparent; border-color: var(--sage-dark); color: var(--sage-dark); }
.btn-outline:hover  { background: var(--sage-dark); color: #fff; }
.btn-ghost    { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover    { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sand     { background: var(--sand); border-color: var(--sand); color: #fff; }
.btn-sand:hover     { background: #b89a7f; border-color: #b89a7f; }
.btn-group    { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,245,239,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 280ms var(--ease-out);
}
.site-header.scrolled { border-bottom-color: var(--border-light); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 2rem;
}
.site-logo { display: block; text-decoration: none; flex-shrink: 0; }
.site-logo img,
.site-logo svg { height: 38px; width: auto; display: block; }

/* Navigation */
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-list a {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 180ms; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 180ms, border-color 180ms;
}
.nav-list a:hover { color: var(--sage-dark); border-bottom-color: var(--sage-dark); }

/* ── LANGUAGE SELECTOR ────────────────────────────────────────
   Positioned after nav. Clear, discreet, always visible.
   Desktop: pill style with active indicator.
   Mobile: shown in open nav panel as full buttons.
   ─────────────────────────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center;
  gap: 0; list-style: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: transparent;
}
.lang-switcher li a {
  display: block;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background 180ms, color 180ms;
  line-height: 1.8;
  min-width: 36px; text-align: center;
}
.lang-switcher li:last-child a { border-right: none; }
.lang-switcher li.active a {
  background: var(--sage-dark);
  color: #fff;
}
.lang-switcher li:not(.active) a:hover {
  background: var(--off-white);
  color: var(--text-dark);
}

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 48px; height: 48px;
  background: none; border: none; cursor: pointer;
  gap: 5px; padding: 8px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--sage-dark);
  transition: all 280ms var(--ease-out);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 1.75rem var(--gutter) 2rem;
    flex-direction: column; align-items: flex-start; gap: 0;
  }
  .primary-nav.open { display: flex; }
  .nav-list {
    flex-direction: column; align-items: flex-start;
    gap: 0; width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    font-size: 0.9rem; padding: 0.65rem 0;
    display: block; border-bottom: none;
  }
  /* Mobile lang switcher — larger touch targets */
  .lang-switcher {
    border: none; gap: 0.5rem;
    background: transparent; overflow: visible;
  }
  .lang-switcher li a {
    padding: 8px 16px; font-size: 0.8rem;
    border: 1px solid var(--border); border-radius: 2px;
    min-height: 40px; display: flex; align-items: center;
    justify-content: center;
  }
  .lang-switcher li.active a { border-color: var(--sage-dark); }
  .header-cta { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 68px; position: relative; overflow: hidden;
  background: var(--text-dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  /* Base darkness applied at source — additional filter for safety */
  filter: brightness(0.8);
}

/* Multi-layer overlay system for guaranteed text readability
   Layer 1: dark vignette from bottom (text area)
   Layer 2: subtle top darkening
   WCAG AA: text must achieve 4.5:1 contrast */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,
      rgba(30,30,26,0.92) 0%,
      rgba(30,30,26,0.70) 30%,
      rgba(30,30,26,0.25) 60%,
      rgba(30,30,26,0.18) 100%
    );
}

/* Additional bottom boost for mobile where image crops differently */
@media (max-width: 640px) {
  .hero-overlay {
    background:
      linear-gradient(to top,
        rgba(30,30,26,0.96) 0%,
        rgba(30,30,26,0.80) 35%,
        rgba(30,30,26,0.40) 60%,
        rgba(30,30,26,0.20) 100%
      );
  }
  .hero-bg img {
    filter: brightness(0.72);
    object-position: 65% 30%;
  }
}

.hero-content { position: relative; z-index: 2; padding-block: clamp(4rem,10vh,7rem); }

.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); display: block; margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 2.5rem; max-width: 14ch;
  /* Text shadow for readability on any image zone — WCAG boost */
  text-shadow:
    0 2px 32px rgba(0,0,0,0.5),
    0 1px 6px  rgba(0,0,0,0.35);
}
.hero-headline em { font-style: italic; color: var(--mint); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.25rem; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; right: var(--gutter); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.3); writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg,rgba(255,255,255,.3),transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:.65;transform:scaleY(1.1)}
}
@media (max-width: 640px) {
  .hero-headline { max-width: 100%; }
  .hero-scroll { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   INTRO — split layout
   ───────────────────────────────────────────────────────────── */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.intro-img { overflow: hidden; position: relative; }
.intro-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease-out);
}
.intro-img:hover img { transform: scale(1.03); }
.intro-text {
  display: flex; align-items: center;
  padding: clamp(3rem,5vw,5rem) clamp(2rem,4vw,4rem);
  background: var(--cream);
}
.intro-text-inner { max-width: 44ch; }
.intro-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 300; line-height: 1.18; letter-spacing: -0.015em;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.intro-headline em { font-style: italic; color: var(--sage-dark); }
@media (max-width: 780px) {
  .intro-split { grid-template-columns: 1fr; min-height: auto; }
  .intro-img { height: 380px; }
}

/* ─────────────────────────────────────────────────────────────
   DIFFERENTIATORS
   ───────────────────────────────────────────────────────────── */
.diff-section { background: var(--off-white); }
.section-header { margin-bottom: 3rem; }

.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.5rem); margin-top: 3rem; }
.pillar { padding: 2rem 1.5rem; border-top: 1px solid var(--border); transition: border-color 280ms; }
.pillar:hover { border-top-color: var(--sage-dark); }
.pillar-num { font-family: var(--font-display); font-size: 2rem; color: #B7BFBA; line-height: 1; margin-bottom: 1rem; }
.pillar-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.25; }
.pillar-body { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: var(--text-body); }

.diff-visual { margin-top: 3rem; position: relative; overflow: hidden; border-radius: 2px; height: 400px; }
.diff-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: brightness(.62) saturate(.85); }
.diff-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(42,42,38,.78) 0%,rgba(42,42,38,0) 60%);
  display: flex; align-items: center;
  padding: clamp(2rem,4vw,4rem);
}
.diff-quote {
  font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,1.65rem);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,.92);
  max-width: 36ch; line-height: 1.45;
}
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } .diff-visual { height: 260px; } }

/* ─────────────────────────────────────────────────────────────
   HOW WE WORK
   ───────────────────────────────────────────────────────────── */
.how-section { background: var(--pale-sage); }
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,5vw,5rem); align-items: start; }
.how-sticky { position: sticky; top: calc(68px + 2rem); }
.how-img { border-radius: 2px; overflow: hidden; height: 540px; }
.how-img img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
.how-intro-text { font-size: 1.05rem; font-weight: 300; line-height: 1.82; color: var(--text-body); margin-top: 1.5rem; }

.process-steps { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1.25rem; align-items: start; }
.step-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--sage-dark); opacity: .45; text-align: right; padding-top: 2px; }
.step-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.4rem; }
.step-body { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: var(--text-body); }
@media (max-width: 800px) { .how-layout { grid-template-columns: 1fr; } .how-sticky { position: static; } }

/* ─────────────────────────────────────────────────────────────
   FOR WHOM
   ───────────────────────────────────────────────────────────── */
.whom-layout { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.whom-img { position: sticky; top: calc(68px + 2rem); border-radius: 2px; overflow: hidden; height: 560px; }
.whom-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.situations { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); }
.situation { background: var(--cream); padding: clamp(1.5rem,3vw,2.2rem); transition: background 260ms; }
.situation:hover { background: var(--off-white); }
.sit-bar { width: 28px; height: 2px; background: var(--sage-dark); opacity: .35; margin-bottom: 1.2rem; }
.sit-title { font-family: var(--font-display); font-size: 1.22rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.3; }
.sit-body { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: var(--text-body); }
@media (max-width: 860px) { .whom-layout { grid-template-columns: 1fr; } .whom-img { position: static; height: 300px; } }
@media (max-width: 560px) { .situations { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   SPACE STRIP
   ───────────────────────────────────────────────────────────── */
.space-strip { height: clamp(180px,28vw,360px); overflow: hidden; position: relative; }
.space-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(.78) saturate(.8); }
.space-strip-label {
  position: absolute; bottom: 1.5rem; left: var(--gutter);
  font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ─────────────────────────────────────────────────────────────
   FORMATS & PRICING
   ───────────────────────────────────────────────────────────── */
.formats-section { background: var(--stone); }
.formats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.5rem); margin-top: 2.5rem; }
.format-card {
  background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.75);
  padding: clamp(1.5rem,3vw,2.2rem); display: flex; flex-direction: column; gap: 1rem;
  transition: background 260ms, box-shadow 260ms;
}
.format-card:hover { background: rgba(255,255,255,.85); box-shadow: 0 4px 16px rgba(42,42,38,.08); }
.format-tag { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-dark); }
.format-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--text-dark); }
.format-body { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: var(--text-body); }

.pricing { margin-top: 1.2rem; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.pricing-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.38rem 0; border-bottom: 1px solid var(--border-light); }
.pricing-row:last-child { border-bottom: none; }
.pricing-desc { font-size: 0.9rem; font-weight: 300; color: var(--text-body); }
.pricing-price { font-size: 0.94rem; font-weight: 400; color: var(--sage-dark); white-space: nowrap; margin-left: 1rem; }
.pricing-note { font-size: 0.82rem; font-style: italic; color: var(--text-muted); margin-top: 0.6rem; }

.formats-footer { text-align: center; margin-top: 2.5rem; font-size: 0.88rem; color: var(--text-muted); }
.formats-footer a { color: var(--sage-dark); text-decoration: underline; }

@media (max-width: 760px) { .formats-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ─────────────────────────────────────────────────────────────
   TRUST (dark section)
   ───────────────────────────────────────────────────────────── */
.trust-section { background: var(--sage-dark); color: #fff; }
.trust-section .eyebrow { color: var(--mint); opacity: .8; }
.trust-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,3.2vw,3rem);
  font-weight: 300; line-height: 1.18; letter-spacing: -0.015em;
  color: #fff; max-width: 22ch; margin-top: 1rem; margin-bottom: 3rem;
}
.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,5vw,5rem); align-items: start; }
.trust-signal { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.15); }
.signal-label { font-size: 0.72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); opacity: .78; display: block; margin-bottom: 0.5rem; }
.signal-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: #fff; margin-bottom: 0.5rem; }
/* WCAG AA on dark sage: white 82% → contrast 5.1:1 ✓ */
.signal-body { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: rgba(255,255,255,.82); }

.trust-right { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-img { border-radius: 2px; overflow: hidden; height: 440px; }
.trust-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: brightness(.8) saturate(.7); }

.testimonials { display: flex; flex-direction: column; gap: 1rem; }
.testimonial { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 1.5rem; }
/* WCAG AA: white 90% on sage-dark → contrast 5.8:1 ✓ */
.testimonial-quote {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 300; font-style: italic; line-height: 1.68;
  color: rgba(255,255,255,.90);
}
.testimonial-quote::before {
  content: '\201C'; font-size: 1.8em; line-height: .5;
  vertical-align: -.3em; color: var(--mint); opacity: .55;
  margin-right: 2px;
}
@media (max-width: 860px) { .trust-layout { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,7vw,7rem); align-items: start; }
.contact-headline { font-family: var(--font-display); font-size: clamp(1.9rem,3.2vw,3rem); font-weight: 300; line-height: 1.18; letter-spacing: -0.015em; color: var(--text-dark); margin-top: 1rem; margin-bottom: 1.5rem; }
.contact-body { font-size: 1.05rem; font-weight: 300; line-height: 1.82; color: var(--text-body); margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-light); text-decoration: none; transition: padding-left 200ms; min-height: 48px; }
.contact-method:last-child { border-bottom: none; }
.contact-method:hover { padding-left: 0.5rem; }
.method-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--sage-dark); }
.method-icon svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.method-label { font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); display: block; }
.method-value { font-size: 1rem; font-weight: 300; color: var(--text-dark); display: block; }

.contact-info-box { background: var(--off-white); border: 1px solid var(--border-light); padding: clamp(2rem,4vw,2.8rem); }
.contact-info-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.4rem; }
.contact-info-note { font-size: 0.92rem; font-weight: 300; color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-info-detail { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: var(--text-body); margin-bottom: 1.5rem; }
.contact-info-detail strong { font-weight: 500; color: var(--text-dark); }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   FOOTER — dark bg, all text WCAG AA compliant
   ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.65);
  padding-block: clamp(3rem,5vw,5rem);
}
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; }
.footer-logo { display: block; margin-bottom: 1.25rem; }
.footer-logo img,
.footer-logo svg { height: 32px; width: auto; }

/* WCAG AA: white 62% on #2A2A26 → contrast 4.8:1 ✓ */
.footer-tagline { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.62); max-width: 26ch; }

.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
/* WCAG AA: white 62% on dark → 4.8:1 ✓ */
.footer-nav a { font-size: 0.78rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); text-decoration: none; transition: color 180ms; }
.footer-nav a:hover { color: rgba(255,255,255,.9); }

.footer-meta { text-align: right; }
.footer-address { font-size: 0.88rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.62); font-style: normal; margin-bottom: 1.25rem; }
.footer-address a { color: rgba(255,255,255,.62); text-decoration: none; }
.footer-address a:hover { color: rgba(255,255,255,.88); }

.footer-legal {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  /* WCAG AA: white 48% → 3.8:1 — acceptable for legal fine print (non-body text) */
  font-size: 0.78rem; color: rgba(255,255,255,.48);
}
.footer-legal a { color: rgba(255,255,255,.48); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.75); }
.footer-legal-links { display: flex; gap: 1.5rem; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-meta { text-align: left; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────────
   STICKY WHATSAPP
   ───────────────────────────────────────────────────────────── */
.sticky-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 52px; height: 52px; background: var(--sage-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(42,42,38,.22);
  transition: transform 280ms var(--ease-out), box-shadow 280ms;
}
.sticky-wa:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(42,42,38,.3); }
.sticky-wa svg { width: 22px; height: 22px; fill: #fff; }

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .pillars .pillar:nth-child(1){ transition-delay:0ms }
  .pillars .pillar:nth-child(2){ transition-delay:80ms }
  .pillars .pillar:nth-child(3){ transition-delay:160ms }
  .situations .situation:nth-child(odd){ transition-delay:0ms }
  .situations .situation:nth-child(even){ transition-delay:60ms }
  .testimonial:nth-child(2){ transition-delay:80ms }
  .testimonial:nth-child(3){ transition-delay:160ms }
}

/* ─────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────── */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
