  /* FOUC prevention — pairs with the inline script in <head> above. See
     _shared.css for the same rule + full comment block (sub-pages share it). */
  html.i18n-loading body { visibility: hidden; }

  :root {
    /* REVERTED to the original paper/sumi/hinomaru-red on 2026-06-21
       (Concept 02 rolled back; only the new logo kept). Mirrors _shared.css. */
    --bg: #FAFAF7;
    --surface: #FFFFFF;
    --surface-2: #F2F0EA;
    --gold: #C9302C;
    --gold-2: #A62521;
    --red: #1A1A1A;
    --text: #1A1A1A;
    --muted: #6B6B6B;
    --line: #E5E1D6;
    --sage: #7A8B6E;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html.i18n-loading body { visibility: hidden; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, .eyebrow, .btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.95; letter-spacing: -0.01em; }
  h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1; margin-bottom: 1rem; }
  h3 { font-size: 1.5rem; letter-spacing: 0.03em; }
  h4 { font-size: 1.1rem; letter-spacing: 0.08em; }
  p { color: #1A1A1A; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .eyebrow { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.3em; font-weight: 500; margin-bottom: 1rem; }

  /* NAV */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s;
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 1.1rem; letter-spacing: 0.15em; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
  }
  .logo-mark {
    width: 36px; height: 36px; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-weight: 700; font-size: 1.1rem;
    transform: rotate(45deg);
  }
  .logo-mark span { transform: rotate(-45deg); }
  .logo small { display: block; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.25em; margin-top: 2px; font-weight: 400; }
  /* SVG emblem-only mark (Brand Alignment 2026-06-21) — wordmark dropped (illegible
     at nav size). Explicit height+width (0.866 ratio). CRITICAL: max-width:none +
     flex:none — the global `img { max-width:100% }` rule (above) collapses this SVG
     <img> to 0 width inside the shrink-to-fit flex `.logo` container (circular
     intrinsic-size dependency). That zero-width collapse is what made the logo
     vanish/look tiny in every prior attempt. */
  /* translateX (not margin) nudges ONLY the logo left — margin would reflow the bar. */
  .logo-svg { height: 46px; width: 40px; max-width: none; flex: 0 0 auto; display: block; transform: translateX(-10px); }
  @media (max-width: 380px) { .logo-svg { height: 38px; width: 33px; } }
  .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
  .nav-links li:has(.icon-btn) + li:has(.icon-btn) { margin-left: -24px; }
  .nav-links a {
    font-family: 'Oswald', sans-serif; font-size: 0.9rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; color: #1A1A1A; transition: color 0.2s; position: relative;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; height: 2px; width: 0;
    background: var(--gold); transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }
  .lang { display: flex; gap: 8px; align-items: center; font-size: 0.75rem; color: var(--muted); }
  .lang a {
    font-size: 1.1rem; line-height: 1; filter: grayscale(0.5); opacity: 0.65;
    transition: filter 0.2s, opacity 0.2s;
  }
  .lang a:hover { filter: grayscale(0); opacity: 1; }
  .lang a.active { filter: grayscale(0); opacity: 1; }
  .btn {
    display: inline-block; padding: 14px 28px; font-size: 0.85rem;
    letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    background: var(--gold); color: #ffffff;
    border: 2px solid var(--gold); cursor: pointer; transition: all 0.25s;
    font-family: 'Oswald', sans-serif;
  }
  .btn:hover { background: transparent; color: var(--gold); }
  .btn.outline { background: transparent; color: var(--text); border-color: var(--text); }
  .btn.outline:hover { background: var(--gold); border-color: var(--gold); color: #ffffff; }
  .btn.red { background: var(--red); border-color: var(--red); color: #fff; }
  .btn.red:hover { background: transparent; color: var(--red); }

  /* NAV "Free Trial" CTA — refined gold ghost pill with a pulsing dot and sliding arrow.
     Reuses the chat FAB's pulse rhythm for a consistent motion language. */
  .btn-trial-nav {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 18px 9px 16px;
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); background: transparent;
    border: 1.5px solid var(--gold);
    text-decoration: none; cursor: pointer;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  }
  .btn-trial-nav::after {
    content: '→'; font-size: 0.95rem; line-height: 1; margin-top: -1px;
    transition: transform 0.25s ease;
  }
  /* Specificity bump: `.nav-links a:hover { color: var(--gold) }` (defined
     above) outranks `.btn-trial-nav:hover` because the former adds an
     element selector. Qualifying with `.nav-links` matches that
     specificity AND wins on source order. Without this, hovered "FREE
     TRIAL" text was red-on-red = invisible. */
  .nav-links a.btn-trial-nav:hover {
    background: var(--gold); color: #ffffff;
    box-shadow: 0 8px 22px rgba(201,48,44, 0.22);
    transform: translateY(-1px);
  }
  .nav-links a.btn-trial-nav:hover::after { transform: translateX(3px); }
  .btn-trial-nav .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold); flex: 0 0 auto;
    animation: btnTrialPulse 2.2s ease-in-out infinite;
  }
  .btn-trial-nav:hover .dot {
    background: #ffffff;
    animation: none;
  }
  @keyframes btnTrialPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,48,44, 0.55); }
    50%      { box-shadow: 0 0 0 6px rgba(201,48,44, 0);   }
  }
  .hamburger { display: none; background: none; border: none; color: var(--text); cursor: pointer; font-size: 1.5rem; }

  /* Icon buttons (login, cart) */
  .icon-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; color: #1A1A1A;
    border: 1px solid var(--line); transition: all 0.2s;
  }
  .icon-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,48,44,0.08); }
  .icon-btn svg { display: block; }
  /* Sign In — labeled pill (secondary CTA, quieter than .btn-trial-nav). Also
     defined in _shared.css for sub-pages; duplicated here because index.html
     carries its own inline <style>. The label collapses on narrow mobile. */
  .btn-signin-nav {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px 9px 14px;
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: #1A1A1A; background: transparent;
    border: 1.5px solid var(--line);
    cursor: pointer; white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .btn-signin-nav svg { width: 16px; height: 16px; flex: 0 0 auto; display: block; }
  .btn-signin-nav:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,48,44,0.08); }
  /* Override the default .nav-links a underline for the pill — it draws a
     gold underline beneath the border on hover otherwise. */
  .btn-signin-nav::after { display: none; }
  /* Logged-in modifier: same .btn-signin-nav pill geometry, flipped to
     red-fill so state is visually distinct without changing dimensions.
     Mirrors _shared.css. All responsive rules on .btn-signin-nav cascade
     through because the base class is preserved. */
  .btn-signin-nav--member {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }
  .btn-signin-nav--member:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    filter: brightness(0.92);
  }
  /* Legacy .btn-member-chip — no-op fallback for cached older JS during
     the deploy cache window. Safe to remove later. */
  .btn-member-chip {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gold); color: #fff;
    border: 1.5px solid var(--gold);
    padding: 9px 16px 9px 14px;
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.2s;
  }
  .btn-member-chip:hover { filter: brightness(0.92); }
  .btn-member-chip::after { display: none; }
  .cart-badge {
    position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px;
    background: var(--red); color: #fff; border-radius: 50%;
    font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; padding: 0 4px;
    border: 2px solid var(--bg);
  }
  .cart-badge.hide { display: none; }

  /* Chat bot styles live in /_shared.css; widget itself is now members-only
     (see /js/chat-widget.js, loaded only by /account). Removed from public
     pages so prospects use the trial form / WhatsApp instead. */

  /* Login modal */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.78); z-index: 200;
    display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--bg); border: 1px solid var(--line); border-top: 3px solid var(--gold);
    width: 90%; max-width: 440px; padding: 40px;
  }
  .modal h3 { color: var(--gold); margin-bottom: 24px; }
  .modal-tabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
  .modal-tabs button {
    flex: 1; background: none; border: 0; padding: 12px;
    font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent;
  }
  .modal-tabs button.active { color: var(--gold); border-bottom-color: var(--gold); }
  .modal-close { position: absolute; top: 16px; right: 20px; background: none; border: 0; color: var(--muted); font-size: 1.6rem; cursor: pointer; }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: safe center;
    padding: 170px 0 60px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.4) 100%),
      radial-gradient(ellipse at top left, rgba(201,48,44,0.15), transparent 60%),
      linear-gradient(135deg, #FFFFFF 0%, #ffffff 70%);
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0px, transparent 40px, rgba(201,48,44,0.02) 40px, rgba(201,48,44,0.02) 41px);
  }
  .hero-bg svg {
    position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
    width: 60%; height: auto; opacity: 0.08;
  }
  .hero-inner { position: relative; z-index: 2; max-width: 900px; }
  .hero h1 { margin: 1rem 0; }
  .hero h1 .accent { color: var(--gold); display: block; }
  .hero h1 .slash { color: var(--gold); }
  html[lang^="pt"] .hero h1 { font-size: clamp(2.4rem, 6.2vw, 5.5rem); }
  .hero-tag {
    font-family: 'Oswald', sans-serif; color: var(--gold);
    font-size: 1rem; letter-spacing: 0.4em; text-transform: uppercase;
    display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem;
  }
  .hero-tag::before { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); }
  .hero-sub {
    font-size: 1.2rem; max-width: 560px; margin: 1.5rem 0 2.5rem;
    color: #1A1A1A;
  }
  .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.3em;
    color: var(--muted); text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2;
  }
  .hero-scroll::after {
    content: ''; width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent);
    animation: scrollDown 2s infinite;
  }
  @keyframes scrollDown { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

  /* MARQUEE TICKER */
  .ticker {
    background: var(--gold); color: #ffffff;
    padding: 18px 0; overflow: hidden; border-top: 1px solid #ffffff; border-bottom: 1px solid #ffffff;
  }
  .ticker-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: ticker 40s linear infinite;
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 1.1rem; letter-spacing: 0.25em; text-transform: uppercase;
  }
  .ticker-track span { display: flex; align-items: center; gap: 60px; }
  .ticker-track span::after { content: '◆'; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* STATS */
  .stats { padding: 80px 0; background: var(--surface-2); border-bottom: 1px solid var(--line); }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  }
  .stat { text-align: center; padding: 20px 16px; border-right: 1px solid var(--line); min-width: 0; }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 3.5rem; color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-family: 'Oswald', sans-serif; font-size: 0.8rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: #1A1A1A;
    margin-top: 12px; overflow-wrap: break-word; word-break: break-word; hyphens: auto;
  }
  html[lang^="pt"] .stat-label { letter-spacing: 0.08em; font-size: 0.78rem; }

  /* SECTIONS */
  section { padding: 120px 0; position: relative; overflow: hidden; }
  section > .container { position: relative; z-index: 2; }
  .section-head { max-width: 700px; margin-bottom: 70px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-sub { color: var(--muted); font-size: 1.1rem; margin-top: 12px; }

  /* ATMOSPHERIC SECTION BACKDROPS — each section gets its own motif.
     Pseudo-elements sit below content (z-index:0), with gold at very low
     opacity so the texture feels "on brand" without competing with copy. */
  .atmo { position: relative; }
  .atmo::before, .atmo::after {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  }

  /* 1. STATS — fine dotted grid (measurement / technical feel) + soft center glow */
  .stats::before {
    background-image: radial-gradient(rgba(201,48,44,0.18) 1px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  }
  .stats::after {
    background: radial-gradient(ellipse at 50% 50%, rgba(201,48,44,0.08), transparent 55%);
  }

  /* 2. WHY — classic hero-style diagonal gold lines + top-right glow */
  .why::before {
    background-image: repeating-linear-gradient(
      45deg, transparent 0 40px, rgba(201,48,44,0.03) 40px 41px);
  }
  .why::after {
    background: radial-gradient(ellipse at 85% 0%, rgba(201,48,44,0.12), transparent 55%);
  }

  /* 3. PROGRAMS — angled spotlight beam from top-right (like light through a door) */
  .programs::before {
    background:
      linear-gradient(115deg, transparent 55%, rgba(201,48,44,0.09) 62%, transparent 72%),
      linear-gradient(115deg, transparent 70%, rgba(201,48,44,0.05) 76%, transparent 86%);
  }
  .programs::after {
    background:
      radial-gradient(ellipse at 100% 0%,  rgba(201,48,44,0.14), transparent 55%),
      radial-gradient(ellipse at 0% 100%, rgba(201,48,44,0.06), transparent 55%);
  }

  /* 4. FOUNDERS — soft stage vignette (dark edges, gold top-center glow) */
  .founders::before {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(201,48,44,0.10), transparent 55%);
  }
  .founders::after {
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
  }

  /* 5. TEAM — dot-circle cluster (community nodes) + warm corner glow */
  .team::before {
    background-image:
      radial-gradient(circle at 12% 20%, rgba(201,48,44,0.10) 1.5px, transparent 2px),
      radial-gradient(circle at 24% 60%, rgba(201,48,44,0.10) 1.5px, transparent 2px),
      radial-gradient(circle at 40% 30%, rgba(201,48,44,0.10) 1.5px, transparent 2px),
      radial-gradient(circle at 62% 72%, rgba(201,48,44,0.10) 1.5px, transparent 2px),
      radial-gradient(circle at 80% 22%, rgba(201,48,44,0.10) 1.5px, transparent 2px),
      radial-gradient(circle at 92% 55%, rgba(201,48,44,0.10) 1.5px, transparent 2px),
      radial-gradient(circle at 50% 90%, rgba(201,48,44,0.10) 1.5px, transparent 2px);
    background-size: 6px 6px;
    opacity: 0.8;
  }
  .team::after {
    background: radial-gradient(ellipse at 100% 100%, rgba(201,48,44,0.12), transparent 55%);
  }

  /* 6. VALUES — concentric bullseye rings from the left (target / focus) */
  .values::before {
    background: radial-gradient(circle at 8% 50%,
      transparent 0 80px,  rgba(201,48,44,0.08) 81px 82px,
      transparent 83px 180px, rgba(201,48,44,0.05) 181px 182px,
      transparent 183px 280px, rgba(201,48,44,0.03) 281px 282px,
      transparent 283px);
  }
  .values::after {
    background: radial-gradient(ellipse at 8% 50%, rgba(201,48,44,0.10), transparent 50%);
  }

  /* 7. SCHEDULE — horizontal calendar rules + soft left edge glow */
  .schedule::before {
    background-image: repeating-linear-gradient(
      0deg, transparent 0 56px, rgba(201,48,44,0.04) 56px 57px);
  }
  .schedule::after {
    background: linear-gradient(90deg, rgba(201,48,44,0.10), transparent 40%);
  }

  /* 8. PRICING — single theatrical spotlight behind the featured card */
  .pricing::before {
    background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(201,48,44,0.14), transparent 70%);
  }
  .pricing::after {
    background-image:
      radial-gradient(rgba(201,48,44,0.06) 1px, transparent 1.5px);
    background-size: 44px 44px;
    opacity: 0.45;
  }

  /* 9. TESTIMONIALS — giant translucent quote mark in the corner */
  .testimonials::before {
    content: '“';
    font-family: 'Oswald', Georgia, serif; font-weight: 700;
    font-size: clamp(18rem, 34vw, 30rem); line-height: 0.65;
    color: rgba(201,48,44,0.05);
    inset: auto auto auto 4%; top: -0.08em;
    width: auto; height: auto;
    display: block; pointer-events: none;
  }
  .testimonials::after {
    background: radial-gradient(ellipse at 100% 0%, rgba(201,48,44,0.10), transparent 55%);
  }

  /* 10. TRIAL — urgency diagonal sweep from corner + bottom glow */
  .trial::before {
    background: repeating-linear-gradient(
      -45deg,
      rgba(201,48,44,0.06) 0 2px,
      transparent 2px 14px);
    mask-image: linear-gradient(225deg, black, transparent 45%);
    -webkit-mask-image: linear-gradient(225deg, black, transparent 45%);
  }
  .trial::after {
    background: radial-gradient(ellipse at 20% 100%, rgba(201,48,44,0.12), transparent 55%);
  }

  /* 11. LOCATION — map-style fine crosshatch + pulsing pin radial */
  .location::before {
    background-image:
      linear-gradient(rgba(201,48,44,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,48,44,0.04) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px;
  }
  .location::after {
    background:
      radial-gradient(circle at 72% 45%, rgba(201,48,44,0.22) 0 4px, transparent 6px),
      radial-gradient(circle at 72% 45%, rgba(201,48,44,0.10), transparent 18%);
  }

  /* WHY US */
  .why { background: var(--bg); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
  .why-card {
    background: var(--surface-2); padding: 44px 32px;
    transition: background 0.3s; position: relative; overflow: hidden;
  }
  .why-card:hover { background: var(--surface); }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
    background: var(--gold); transition: height 0.3s;
  }
  .why-card:hover::before { height: 100%; }
  .why-card .icon {
    width: 56px; height: 56px; border: 2px solid var(--gold); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; font-size: 1.5rem;
    transform: rotate(45deg);
  }
  .why-card .icon span { transform: rotate(-45deg); display: block; }
  .why-card h3 { color: var(--text); margin-bottom: 14px; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  .why-card p { color: var(--muted); font-size: 0.95rem; }

  /* PROGRAMS */
  .programs { background: var(--surface-2); }
  .programs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .prog {
    position: relative; display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--line);
    padding: 32px 28px 28px;
    min-height: 360px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  .prog::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform-origin: left; transform: scaleX(0);
    transition: transform 0.5s ease;
  }
  a.prog { text-decoration: none; color: inherit; cursor: pointer; }
  .prog-live:hover {
    border-color: var(--gold); transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }
  .prog-live:hover::before { transform: scaleX(1); }
  .prog-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px;
  }
  .prog-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold); color: var(--gold);
    font-family: 'Oswald', sans-serif; font-weight: 700;
    transform: rotate(45deg);
  }
  .prog-icon span { transform: rotate(-45deg); font-size: 1.1rem; line-height: 1; }
  .prog-tag {
    font-family: 'Oswald', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase;
    border: 1px solid var(--gold); padding: 5px 12px; white-space: nowrap;
  }
  .prog-body { flex: 1; display: flex; flex-direction: column; }
  .prog-body h3 { font-size: 1.45rem; margin-bottom: 10px; color: var(--text); }
  .prog-body > p {
    font-size: 0.95rem; color: #6B6B6B; margin-bottom: 22px; flex: 1;
  }
  .prog-meta {
    display: flex; flex-wrap: wrap; gap: 14px 18px;
    padding-top: 18px; margin-bottom: 18px;
    border-top: 1px solid var(--line);
    font-family: 'Oswald', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  }
  .prog-meta .m { display: inline-flex; align-items: center; gap: 6px; }
  .prog-meta .m b { color: var(--gold); font-weight: 500; letter-spacing: 0.15em; }
  .prog-body .arrow {
    font-family: 'Oswald', sans-serif;
    color: var(--gold); letter-spacing: 0.2em; font-size: 0.8rem;
    text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.25s ease;
  }
  .prog-live:hover .arrow { gap: 14px; }
  .prog-soon { opacity: 0.62; }
  .prog-soon .prog-tag { color: var(--muted); border-color: var(--muted); }
  .prog-soon .prog-icon { border-color: var(--muted); color: var(--muted); }
  .prog-soon .arrow { color: var(--muted); }
  .prog-soon .prog-meta .m b { color: var(--muted); }

  /* FOUNDERS */
  .founders { background: var(--bg); }
  .founder-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
  .founder {
    display: grid; grid-template-columns: 340px 1fr; gap: 0;
    background: var(--surface-2); border: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
  }
  .founder:hover { border-color: var(--gold); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
  /* Zig-zag: second founder's portrait on the right */
  .founder:nth-child(even) { grid-template-columns: 1fr 340px; }
  .founder:nth-child(even) .founder-portrait { order: 2; }
  .founder::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .founder-portrait {
    position: relative; overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 15%, rgba(201,48,44,0.28), transparent 60%),
      linear-gradient(160deg, #E5E1D6 0%, #ffffff 75%);
    display: flex; align-items: flex-end; padding: 28px;
    min-height: 360px;
  }
  .founder-portrait::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 40px, rgba(201,48,44,0.035) 40px 41px);
  }
  .founder-portrait::after {
    content: ''; position: absolute; top: 20px; right: 20px;
    width: 18px; height: 18px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  }
  .founder-initials {
    position: relative; z-index: 1;
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(4rem, 7vw, 6rem);
    color: var(--gold); line-height: 0.85; letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  }
  .founder-badge {
    position: absolute; top: 20px; left: 20px; z-index: 2;
    font-family: 'Oswald', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold); padding: 5px 10px;
    background: rgba(255,255,255,0.75);
  }

  .founder-info { padding: 44px 48px; display: flex; flex-direction: column; }
  .founder-role {
    color: var(--gold); font-family: 'Oswald', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 8px;
  }
  .founder h3 {
    font-size: clamp(1.9rem, 3vw, 2.4rem); margin-bottom: 8px; color: var(--text);
  }
  .founder-belt {
    color: var(--muted); font-family: 'Oswald', sans-serif;
    letter-spacing: 0.18em; margin-bottom: 24px; font-size: 0.85rem; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .founder-belt::before {
    content: ''; display: inline-block; width: 28px; height: 2px; background: var(--gold);
  }

  .founder-quote {
    font-family: 'Oswald', Georgia, serif; font-weight: 500;
    font-size: 1.15rem; line-height: 1.5; color: var(--text);
    padding: 16px 0 16px 22px;
    border-left: 2px solid var(--gold); margin-bottom: 22px;
    font-style: italic;
  }
  .founder-info p { font-size: 0.95rem; color: #6B6B6B; margin-bottom: 0; line-height: 1.7; }

  .founder-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .founder-stat { padding: 0 16px; border-right: 1px solid var(--line); }
  .founder-stat:first-child { padding-left: 0; }
  .founder-stat:last-child { border-right: 0; padding-right: 0; }
  .founder-stat .num {
    font-family: 'Oswald', sans-serif; color: var(--gold);
    font-size: 1.4rem; font-weight: 600; line-height: 1; margin-bottom: 4px;
  }
  .founder-stat .lbl {
    font-family: 'Oswald', sans-serif; color: var(--muted);
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  }

  /* TEAM */
  .team { background: var(--surface-2); }
  .coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .coach {
    position: relative; background: var(--bg); border: 1px solid var(--line);
    overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .coach:hover {
    transform: translateY(-4px); border-color: var(--gold);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  }
  .coach-portrait {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 20%, rgba(201,48,44,0.22), transparent 60%),
      linear-gradient(160deg, #E5E1D6 0%, #ffffff 75%);
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 24px;
  }
  .coach-portrait::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0 40px, rgba(201,48,44,0.03) 40px 41px);
  }
  .coach-portrait::after {
    content: ''; position: absolute; top: 18px; right: 18px;
    width: 14px; height: 14px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  }
  .coach-initials {
    position: relative; z-index: 1;
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(3.5rem, 6vw, 5rem);
    color: var(--gold); line-height: 0.85; letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
  .coach-portrait .coach-tag {
    position: absolute; top: 18px; left: 18px; z-index: 2;
    font-family: 'Oswald', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold); padding: 4px 10px;
    background: rgba(255,255,255,0.7);
  }
  .coach-info { padding: 26px 26px 30px; }
  .coach-info h3 { font-size: 1.6rem; margin-bottom: 6px; color: var(--text); }
  .coach-role {
    color: var(--gold); font-family: 'Oswald', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 16px;
  }
  .coach-info p { font-size: 0.92rem; color: #6B6B6B; margin-bottom: 20px; line-height: 1.6; }
  .coach-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    list-style: none; padding: 0;
    padding-top: 16px; border-top: 1px solid var(--line);
  }
  .coach-tags li {
    font-family: 'Oswald', sans-serif; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
    padding: 4px 10px; border: 1px solid var(--line);
  }

  /* Recruitment banner — visually distinct from coach cards */
  .coach-recruit {
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px;
    margin-top: 36px; padding: 36px 44px;
    background:
      linear-gradient(135deg, rgba(201,48,44,0.08) 0%, transparent 60%),
      var(--bg);
    border: 1px dashed var(--gold);
    text-decoration: none; color: inherit;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .coach-recruit:hover {
    background:
      linear-gradient(135deg, rgba(201,48,44,0.15) 0%, transparent 60%),
      var(--bg);
    border-style: solid;
  }
  .recruit-left .eyebrow { margin-bottom: 8px; }
  .recruit-left h3 { font-size: 1.6rem; margin-bottom: 6px; color: var(--text); }
  .recruit-left p { color: var(--muted); font-size: 0.95rem; max-width: 560px; margin: 0; }
  .recruit-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
    padding: 14px 24px; border: 1.5px solid var(--gold);
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
  }
  .coach-recruit:hover .recruit-cta {
    background: var(--gold); color: #ffffff; transform: translateX(4px);
  }

  /* VALUES */
  .values { background: var(--surface-2); }
  .values-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line);
  }
  .val {
    background: var(--bg); padding: 36px 24px; text-align: center;
    transition: background 0.3s; position: relative;
  }
  /* Subtle paper-white lift on hover — was #111 (dark) from an early
     draft, which made the dark text inside invisible on the dark bg. */
  .val:hover { background: var(--surface); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
  .val-ja {
    font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 0.75rem;
    letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 10px;
  }
  .val { min-width: 0; }
  .val h4 { font-size: clamp(0.95rem, 2.4vw, 1.15rem); color: var(--text); margin-bottom: 10px; overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
  .val p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

  /* SCHEDULE */
  .schedule { background: var(--bg); }
  .schedule-table {
    width: 100%; border-collapse: collapse;
    font-family: 'Oswald', sans-serif;
  }
  .schedule-table th, .schedule-table td {
    padding: 18px 14px; text-align: center; border: 1px solid var(--line);
    font-size: 0.85rem; letter-spacing: 0.05em;
  }
  .schedule-table th {
    background: var(--surface); color: var(--gold); text-transform: uppercase;
    letter-spacing: 0.2em; font-weight: 600; font-size: 0.78rem;
  }
  .schedule-table td.time { color: var(--gold); font-weight: 600; background: var(--surface-2); }
  .schedule-table td.class-foundation { background: rgba(201,48,44,0.08); color: #1A1A1A; }
  .schedule-table td.class-evolution { background: rgba(26,26,26,0.15); color: #1A1A1A; }
  .schedule-table td.class-kids { background: rgba(201,48,44,0.15); color: #1A1A1A; }
  .schedule-table td.class-women { background: rgba(100,149,237,0.1); color: #1A1A1A; }
  .schedule-table td.empty { color: #333; }

  .legend { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }
  .legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
  .legend-swatch { width: 16px; height: 16px; border: 1px solid var(--line); }

  /* PRICING */
  .pricing { background: var(--surface-2); }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .price-card {
    background: var(--bg); border: 1px solid var(--line);
    padding: 40px 32px; text-align: center; position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }
  .price-card:hover { transform: translateY(-6px); border-color: var(--gold); }
  .price-card.feat { border-color: var(--gold); }
  .price-card.feat::before {
    content: 'BEST VALUE'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #ffffff;
    font-family: 'Oswald', sans-serif; padding: 6px 16px;
    font-size: 0.75rem; letter-spacing: 0.25em;
  }
  .price-type { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-family: 'Oswald', sans-serif; margin-bottom: 12px; }
  .price-title { font-family: 'Oswald', sans-serif; font-size: 1.6rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
  .price-amt { font-family: 'Oswald', sans-serif; font-size: 3.8rem; color: var(--gold); line-height: 1; font-weight: 700; }
  .price-amt small { font-size: 1rem; color: var(--muted); font-weight: 400; letter-spacing: 0.2em; }
  .price-term { color: var(--muted); font-size: 0.85rem; margin: 8px 0 28px; }
  .price-features { list-style: none; text-align: left; margin-bottom: 32px; }
  .price-features li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: #6B6B6B; }
  .price-features li::before { content: '◆ '; color: var(--gold); }
  .price-note { font-size: 0.78rem; color: var(--muted); line-height: 1.45; margin: -16px 0 24px; padding: 10px 12px; background: var(--surface-2); border-left: 2px solid var(--gold); }

  /* TESTIMONIALS */
  .testimonials { background: var(--bg); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  /* Solo mode — single visible testimonial. Used while we collect the next
     two real quotes (Sofia M. / Rafael D. were placeholders, hidden 2026-04-26).
     Remove the .is-solo modifier on .testi-grid once 2+ testimonials are live
     and the 3-column grid will naturally re-engage. */
  .testi-grid.is-solo { grid-template-columns: minmax(0, 640px); justify-content: center; }
  .testi {
    background: var(--surface-2); padding: 44px 32px; border-left: 3px solid var(--gold);
    position: relative;
  }
  .testi::before {
    content: '"'; position: absolute; top: 8px; right: 24px;
    font-family: 'Oswald', sans-serif; font-size: 6rem; color: var(--gold);
    opacity: 0.2; line-height: 1;
  }
  .testi-body { font-size: 1rem; font-style: italic; color: #1A1A1A; margin-bottom: 24px; }
  .testi-foot { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; color: #ffffff; font-weight: 700;
  }
  .testi-name { font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
  .testi-belt { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }

  /* CTA BANNER */
  .cta-banner {
    padding: 100px 0; background: var(--bg); position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6)),
      radial-gradient(ellipse at center right, rgba(201,48,44,0.18), transparent 60%);
  }
  .cta-inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
  .cta-inner h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
  .cta-inner h2 span { color: var(--gold); }
  .cta-inner p { font-size: 1.15rem; margin-bottom: 2.5rem; color: #1A1A1A; }

  /* TRIAL FORM */
  .trial { background: var(--surface-2); }
  .trial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .trial-info h2 { margin-bottom: 1.5rem; }
  .trial-info h2 span { color: var(--gold); }
  .trial-info p { margin-bottom: 1.2rem; font-size: 1.05rem; }
  .trial-info ul { list-style: none; margin-top: 2rem; }
  .trial-info ul li {
    padding: 14px 0; border-bottom: 1px solid var(--line);
    font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.95rem;
  }
  .trial-info ul li::before { content: '◆ '; color: var(--gold); }
  .form-box {
    background: var(--bg); padding: 40px; border: 1px solid var(--line); border-top: 3px solid var(--gold);
  }
  .form-box h3 { margin-bottom: 24px; color: var(--gold); }
  .form-row { margin-bottom: 20px; }
  .form-row label {
    display: block; font-family: 'Oswald', sans-serif; font-size: 0.8rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
  }
  .form-row input, .form-row select, .form-row textarea {
    width: 100%; background: var(--surface-2); border: 1px solid var(--line);
    padding: 14px 16px; color: var(--text); font-family: 'Inter', sans-serif;
    font-size: 1rem; transition: border-color 0.2s;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--gold);
  }
  .form-box .btn { width: 100%; justify-content: center; padding: 18px; }

  /* LOCATION */
  .location { background: var(--bg); }
  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
  .loc-info { padding: 48px; background: var(--surface-2); border-left: 3px solid var(--gold); }
  .loc-info h3 { margin-bottom: 24px; color: var(--gold); }
  .loc-info dl { display: grid; grid-template-columns: 140px 1fr; gap: 16px 20px; }
  .loc-info dt { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .loc-info dd { color: #1A1A1A; }
  .map-embed {
    position: relative; min-height: 400px; overflow: hidden;
    border: 1px solid var(--line); background: #ffffff;
  }
  .map-embed iframe {
    width: 100%; height: 100%; min-height: 400px; border: 0;
    filter: grayscale(0.4) contrast(1.05);
  }

  /* FAQ */
  .faq { background: var(--surface-2); }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
    margin-top: 48px; max-width: 1100px; margin-left: auto; margin-right: auto;
  }
  .faq-item {
    background: var(--bg); border: 1px solid var(--line);
    border-left: 3px solid var(--gold); transition: border-color 0.2s;
  }
  .faq-item[open] { border-left-color: var(--gold-2); }
  .faq-item:hover { border-color: var(--gold); }
  .faq-item summary {
    cursor: pointer; padding: 22px 26px; font-family: 'Oswald', sans-serif;
    font-weight: 500; font-size: 1.02rem; letter-spacing: 0.04em;
    color: var(--text); list-style: none; position: relative; padding-right: 56px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    color: var(--gold); font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 1.6rem; line-height: 1; transition: transform 0.25s, color 0.2s;
  }
  .faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); color: var(--gold-2); }
  .faq-item summary:hover { color: var(--gold); }
  .faq-answer {
    padding: 0 26px 24px; color: var(--muted); font-size: 0.95rem; line-height: 1.65;
  }
  .faq-answer strong { color: var(--text); font-weight: 500; }
  .faq-answer a { color: var(--gold); border-bottom: 1px solid rgba(201,48,44,0.4); }
  .faq-answer a:hover { color: var(--gold-2); border-color: var(--gold-2); }
  .faq-cta {
    margin-top: 48px; text-align: center; padding: 32px;
    background: var(--bg); border: 1px solid var(--line);
  }
  .faq-cta p { color: var(--muted); font-size: 1rem; margin-bottom: 18px; }

  /* FOOTER */
  footer {
    background: #ffffff; padding: 80px 0 40px; border-top: 1px solid var(--line);
  }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
  .foot-col h4 { color: var(--gold); margin-bottom: 20px; font-size: 0.95rem; letter-spacing: 0.2em; }
  .foot-col ul { list-style: none; }
  .foot-col ul li { padding: 6px 0; color: var(--muted); font-size: 0.9rem; }
  .foot-col a { color: var(--muted); transition: color 0.2s; }
  .foot-col a:hover { color: var(--gold); }
  .foot-brand p { color: var(--muted); margin-top: 20px; max-width: 320px; font-size: 0.9rem; }
  .foot-bottom {
    padding-top: 32px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; color: var(--muted); font-size: 0.82rem; flex-wrap: wrap; gap: 16px;
  }
  .social { display: flex; gap: 12px; margin-top: 24px; }
  .social a {
    width: 40px; height: 40px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: all 0.2s;
  }
  .social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,48,44,0.08); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .programs-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .founder, .founder:nth-child(even) { grid-template-columns: 1fr; }
    .founder:nth-child(even) .founder-portrait { order: 0; }
    .founder-info { padding: 32px 28px; }
    .founder-portrait { min-height: 260px; }
    .founder-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .founder-stat { border-right: 0; padding: 0; }
    .trial-grid, .loc-grid { grid-template-columns: 1fr; }
    .coach-grid { grid-template-columns: repeat(2, 1fr); }
    .coach-recruit { grid-template-columns: 1fr; text-align: left; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-bottom: 1px solid var(--line); }
  }
  @media (max-width: 700px) {
    .nav-links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-wrap: wrap; align-items: center; gap: 0;
      background: rgba(255,255,255,0.98); border-top: 1px solid var(--line);
      padding: 4px 20px 16px;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links li a { padding: 11px 4px; font-size: 0.95rem; }
    .nav-links.open { display: flex; }
    .nav-links li { flex: 1 1 100%; border-bottom: 1px solid var(--line); }
    .nav-links li a { display: block; padding: 14px 4px; }
    .nav-links li.lang { display: flex; gap: 16px; padding: 14px 4px; }
    .nav-links li.lang a { display: inline; padding: 0; font-size: 1.2rem; }
    .nav-links a::after { display: none; }

    /* Icon buttons (IG, WhatsApp, Cart): side-by-side compact row. */
    .nav-links li:has(.icon-btn) {
      flex: 0 0 auto; padding: 14px 0 4px; margin-right: 10px;
      border-bottom: 0;
    }
    .nav-links li:has(.icon-btn) + li:has(.icon-btn) { margin-left: 0; }
    .nav-links li:has(.icon-btn) a {
      padding: 10px 14px; border: 1px solid var(--line);
      display: inline-flex; align-items: center;
    }
    .nav-links li:has(.icon-btn) a:hover { border-color: var(--gold); }

    /* Sign In: full-width outlined pill on its own row, sits above Free Trial.
       Label stays visible here (undo the narrow-phone ≤480px collapse) since
       the hamburger menu has plenty of horizontal room. */
    .nav-links li:has(.btn-signin-nav) {
      flex: 1 1 100%; margin-top: 12px;
      border-bottom: 0;
    }
    .nav-links li:has(.btn-signin-nav) .btn-signin-nav {
      display: flex; justify-content: center; padding: 14px;
      width: 100%; gap: 8px;
    }
    .nav-links li:has(.btn-signin-nav) .signin-label { display: inline; }

    /* Free Trial: full-width gold CTA on its own row, directly below Sign In. */
    .nav-links li:has(.btn-trial-nav) {
      flex: 1 1 100%; margin-top: 10px;
      border-bottom: 0;
    }
    .nav-links li:has(.btn-trial-nav) a {
      display: flex; justify-content: center; padding: 14px;
    }

    .nav .nav-inner { position: relative; }
    .hamburger { display: block; }
    .hamburger.open { color: var(--gold); }
    .programs-grid, .pricing-grid, .why-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .coach-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    section { padding: 80px 0; }
    .container { padding: 0 20px; }

    /* Schedule: let the wide table scroll horizontally inside its own card */
    .schedule .container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .schedule-table { font-size: 0.72rem; min-width: 640px; }
    .schedule-table th, .schedule-table td { padding: 10px 6px; }

    /* Ticker speed feels sluggish on narrow screens — shorten the loop */
    .ticker-track { animation-duration: 12s; font-size: 0.95rem; gap: 40px; }
    .ticker-track span { gap: 40px; }

    /* Hide the "Scroll" indicator on mobile — it overlaps the hero CTA stack */
    .hero-scroll { display: none; }

    /* Location panel: stack dt above dd so long values (email, address) don't
       get squashed into a tiny column, and trim padding so content has room */
    .loc-info { padding: 32px 24px; }
    .loc-info dl { grid-template-columns: 1fr; gap: 4px 0; }
    .loc-info dt { margin-top: 14px; }
    .loc-info dt:first-of-type { margin-top: 0; }
    .loc-info dd { word-break: break-word; }

    /* Tame the oversized decorative quote mark so it doesn't blow out layout */
    .testimonials::before { font-size: clamp(10rem, 40vw, 16rem); }

    /* Founder/coach cards: keep big initials within bounds */
    .founder-initials { font-size: clamp(3rem, 14vw, 4rem); }
    .coach-initials { font-size: clamp(2.6rem, 12vw, 3.4rem); }

    /* Hero CTA: stack buttons full-width for tap targets */
    .hero-cta .btn { width: 100%; justify-content: center; }

    /* Forms: stop inputs from breaking out */
    input, select, textarea { max-width: 100%; }

    /* CTA banner / trial section padding */
    .cta-banner { padding: 60px 0; }

    /* Map fits within container on phones */
    .map-embed, .map-embed iframe { min-height: 320px; }

    /* FAQ: collapse the 2-col grid to a single full-width stack on phones so
       questions stop being squashed side-by-side. Tighten padding + type so
       the stack reads as a clean list rather than cramped cards. */
    .faq-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 32px; }
    .faq-item summary {
      padding: 18px 20px; padding-right: 44px; font-size: 0.95rem;
    }
    .faq-item summary::after { font-size: 1.3rem; right: 16px; }
    .faq-answer { padding: 0 20px 20px; font-size: 0.9rem; line-height: 1.6; }
    .faq-cta { margin-top: 32px; padding: 24px 20px; }
  }
  @media (max-width: 480px) {
    h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
    .container { padding: 0 16px; }
    .ticker-track { animation-duration: 9s; }
    /* Drop the "Sign In" label on tiny screens — keep the icon only so the
       nav doesn't push Free Trial out. Icon alone is unambiguous next to the
       gold Free Trial pill. */
    .btn-signin-nav .signin-label { display: none; }
    .btn-signin-nav { padding: 9px 11px; gap: 0; }

    /* FAQ on very narrow phones — shave a little more off summary/answer */
    .faq-item summary { padding: 16px 18px; padding-right: 40px; font-size: 0.9rem; }
    .faq-item summary::after { right: 14px; }
    .faq-answer { padding: 0 18px 18px; font-size: 0.88rem; }
  }
