html { scroll-behavior: auto !important; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Brand palette ── */
      --deep-canopy:  #1A362B;
      --jungle-mist:  #A9B1A0;
      --sacred-earth: #A67B5B;
      --orion-gold:   #E1D0A8;

      /* ── Derived ── */
      --dark:          #1A362B;
      --dark-2:        #122218;
      --dark-3:        #0d1a12;

      --cream-bg:      #f5f1e6;
      --cream-bg-2:    #ece6d6;
      --cream-bg-3:    #e8e2d2;

      --text-dark:       #1A362B;
      --text-dark-2:     #3b5040;
      --text-dark-muted: #7a9080;

      --text-light: rgba(245,241,230,0.92);
      --text-muted: rgba(245,241,230,0.42);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream-bg);
      color: var(--text-dark);
      font-weight: 300;
      font-size: 16px;
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;   /* well above all hero layers */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 60px;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: none;
      transition: background 0.5s, padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
    }
    nav.scrolled {
      background: rgba(18,34,24,0.82);   /* deep canopy, frosted glass */
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      padding: 16px 60px;
      box-shadow: 0 1px 0 rgba(0,0,0,0.18);
    }
    /* Keep cream/gold text — same as transparent hero state */
    nav.scrolled .nav-logo { color: var(--orion-gold); text-shadow: none; }
    nav.scrolled .nav-logo span { color: rgba(225,208,168,0.65); }
    nav.scrolled .nav-links a { color: var(--orion-gold); text-shadow: none; }
    nav.scrolled .nav-links a:hover { color: #fff; }
    nav.scrolled .nav-cta {
      background: var(--orion-gold) !important;
      color: var(--deep-canopy) !important;
    }
    .nav-logo-link {
      display: flex;
      align-items: center;
      line-height: 0;
      flex-shrink: 0;
    }
    .nav-logo-image {
      height: 86px;
      width: auto;
      display: block;
      filter: drop-shadow(0 1px 10px rgba(0,0,0,0.5));
      transition: height 0.4s ease;
    }
    nav.scrolled .nav-logo-image {
      height: 66px; /* fills the compact glass bar on scroll */
    }
    .nav-logo {
      font-family: 'Italiana', serif;
      font-size: 22px;
      letter-spacing: 0.12em;
      color: var(--orion-gold);
      text-decoration: none;
      text-transform: uppercase;
      text-shadow: 0 1px 14px rgba(0,0,0,0.6);
      transition: color 0.5s, text-shadow 0.5s;
    }
    .nav-logo span {
      display: block;
      font-family: 'Jost', sans-serif;
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 0.38em;
      color: var(--orion-gold);
      margin-top: -4px;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orion-gold);
      text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 0px 4px rgba(0,0,0,0.4);
      text-decoration: none;
      transition: color 0.3s, text-shadow 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-lang {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav-lang a {
      font-size: 10px !important;
      letter-spacing: 0.1em !important;
      opacity: 0.55;
      transition: opacity 0.3s, color 0.3s;
    }
    .nav-lang a.lang-active { opacity: 1; }
    .nav-lang a:hover { opacity: 1; }
    .nav-lang span {
      color: var(--orion-gold);
      opacity: 0.4;
      font-size: 10px;
    }
    .nav-cta {
      font-size: 10px !important;
      letter-spacing: 0.22em !important;
      color: var(--deep-canopy) !important;
      background: var(--orion-gold);
      border-radius: 50px;
      padding: 10px 28px !important;
      transition: all 0.35s !important;
      font-weight: 400 !important;
    }
    .nav-cta:hover {
      background: var(--sacred-earth) !important;
      color: #fff !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(166,123,91,0.35);
    }

    /* Hamburger toggle — hidden on desktop, shown only under the
       mobile-nav breakpoint below. */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 34px;
      height: 34px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 1.5px;
      background: var(--orion-gold);
      box-shadow: 0 1px 8px rgba(0,0,0,0.5);
      transition: transform 0.35s ease, opacity 0.25s ease;
    }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      position: relative;
      z-index: 1;          /* creates stacking context — children stay inside */
      height: 100vh;
      min-height: 720px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        175deg,
        rgba(26,54,43,0.15) 0%,
        rgba(26,54,43,0.08) 30%,
        rgba(13,26,18,0.78) 100%
      );
    }

    /* ── No hero-earth div needed – intro section IS the arc ── */

    .hero-content {
      position: relative;
      z-index: 3;
      padding: 0 60px 140px;
      max-width: 1600px; /* élargi pour que le h1 tienne sur 2 lignes */
    }
    .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(16px, 1.4vw, 21px);
      letter-spacing: 0.05em;
      color: var(--orion-gold);
      margin-bottom: 22px;
      opacity: 0;
      animation: fadeInUp 1.6s 0.4s forwards;
    }

    /* H1 – uppercase, warm beige */
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(50px, 6.8vw, 104px);
      line-height: 1.08;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--orion-gold);
      margin-bottom: 60px;
      font-weight: 400;
      opacity: 0;
      animation: fadeInUp 2s 1.1s forwards;
    }
    .hero-line {
      display: block;
      white-space: nowrap;
      transform: scaleX(0.88) scaleY(1.08);
      transform-origin: left top;
    }
    .hero-actions {
      display: flex;
      gap: 22px;
      align-items: center;
      opacity: 0;
      animation: fadeInUp 1.8s 2s forwards;
    }

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

    /* ── Pill buttons ── */
    .btn-primary {
      display: inline-block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      background: var(--sacred-earth);
      color: #fff;
      padding: 16px 42px;
      border-radius: 50px;
      border: 2px solid var(--sacred-earth);
      transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: 50px;
    }
    .btn-primary:hover {
      background: transparent;
      color: var(--sacred-earth);
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(166,123,91,0.3);
    }
    .btn-primary:hover::after { opacity: 0; }

    .btn-ghost {
      display: inline-block;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--orion-gold);
      border: 1.5px solid rgba(225,208,168,0.5);
      padding: 15px 36px;
      border-radius: 50px;
      transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
    }
    .btn-ghost:hover {
      background: rgba(225,208,168,0.12);
      border-color: var(--orion-gold);
      color: #fff;
      transform: translateY(-3px);
    }

    /* Light ghost (on cream bg) */
    .btn-ghost-dark {
      display: inline-inline-block;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--deep-canopy);
      border: 1.5px solid rgba(26,54,43,0.35);
      padding: 15px 36px;
      border-radius: 50px;
      transition: all 0.35s;
      display: inline-block;
    }
    .btn-ghost-dark:hover {
      background: var(--deep-canopy);
      color: var(--orion-gold);
      border-color: var(--deep-canopy);
      transform: translateY(-3px);
    }


    /* ═══════════════════════════════════════
       SHARED SECTION STYLES
    ═══════════════════════════════════════ */
    section { padding: 90px 80px; }
    .intro  { padding: 40px 80px 90px; }  /* moins de vide en haut pour l'intro */

    .section-label {
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 0.44em;
      text-transform: uppercase;
      color: var(--sacred-earth);
      margin-bottom: 16px;
    }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
      font-size: clamp(34px, 3.8vw, 56px);
      line-height: 1.1;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: var(--text-dark);
      margin-bottom: 26px;
    }
    h3 {
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    p {
      color: var(--text-dark-2);
      font-size: 15px;
      line-height: 1.9;
      font-weight: 300;
    }

    /* ═══════════════════════════════════════
       ARC TRANSITION – élément dédié
       Hauteur généreuse pour que l'arche soit bien visible
    ═══════════════════════════════════════ */
    .earth-arc {
      height: 200px;
      background: var(--cream-bg);
      /* Wide element + half-ellipse = shallow, gentle dome.
         The extra 1200px dilutes the curve to ~30px of visible arc depth. */
      width: calc(100% + 1200px);
      margin-left: -600px;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
      margin-top: -80px;
      position: relative;
      z-index: 5;
    }


    /* ═══════════════════════════════════════
       KATHRIN WELCOME – portrait left, bio right
    ═══════════════════════════════════════ */
    .kathrin-welcome {
      background: var(--cream-bg);
      display: flex;
      align-items: flex-start;
      min-height: 0;
      position: relative;
      z-index: 5;
      padding: 0 0 80px;
    }

    /* Bottom arc — cream dome overlapping into tenets */
    .kathrin-welcome::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% + 1200px);
      height: 160px;
      background: var(--cream-bg);
      border-radius: 0 0 50% 50% / 0 0 100% 100%;
      pointer-events: none;
      z-index: 2;
    }
    .kathrin-welcome-image-wrap {
      position: relative;
      width: 260px;
      height: 320px;
      flex-shrink: 0;
      margin-left: 60px;
      margin-top: -90px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 40px 60px -20px rgba(26,54,43,0.28), 0 10px 24px rgba(26,54,43,0.1);
      animation: kathrinFloat 7s ease-in-out infinite;
    }
    .kathrin-welcome-image-wrap img {
      position: static;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 25% top;
    }
    @keyframes kathrinFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-16px); }
    }
    .kathrin-welcome-body {
      flex: 1;
      display: flex;
      align-items: flex-start;
      padding: 0 60px 0 50px;
    }
    .kathrin-welcome-copy {
      width: 100%;
    }
    .kathrin-welcome-text {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(20px, 1.8vw, 26px);
      line-height: 1.8;
      color: var(--text-dark);
      max-width: none;
      width: 100%;
      margin-bottom: 30px;
    }
    .kathrin-welcome-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .kathrin-welcome-list li {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(17px, 1.4vw, 20px);
      line-height: 1.8;
      color: var(--text-dark-2);
      padding-left: 26px;
      position: relative;
    }
    .kathrin-welcome-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.65em;
      width: 14px;
      height: 1px;
      background: var(--sacred-earth);
    }
    .kathrin-welcome-list li strong {
      font-style: normal;
      font-weight: 300;
      color: var(--text-dark);
    }
    @media (max-width: 900px) {
      .kathrin-welcome { flex-direction: column; min-height: 0; }
      .kathrin-welcome-image-wrap {
        width: 100%; max-width: none; height: 420px;
        margin-left: 0; margin-top: 0;
      }
      .kathrin-welcome-body { padding: 50px 40px; }
    }

    /* ═══════════════════════════════════════
       INTRO – section de contenu, plate
    ═══════════════════════════════════════ */
    .intro {
      background: var(--cream-bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 5;
      padding-top: 40px;   /* écrase le 110px global */
    }
    .intro-text p + p { margin-top: 20px; }
    .intro-quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(20px, 2.4vw, 30px);
      line-height: 1.6;
      color: var(--text-dark);
      border-left: 2px solid var(--sacred-earth);
      padding-left: 32px;
    }
    .intro-quote cite {
      display: block;
      font-size: 11px;
      font-style: normal;
      font-family: 'Jost', sans-serif;
      letter-spacing: 0.22em;
      color: var(--sacred-earth);
      margin-top: 20px;
      font-weight: 300;
    }

    /* ── Sections après l'intro : plates, pas d'arc ── */
    .tenets, .testimonial, .place, .journey, .paths, .contact {
      border-top-left-radius:  0;
      border-top-right-radius: 0;
      position: relative;
      overflow: hidden;
    }

    /* ═══════════════════════════════════════
       TENETS – dark green section, panel cards
    ═══════════════════════════════════════ */
    .tenets {
      background: #1c2614;
      text-align: left;
      padding: 100px 80px 110px;
    }
    .tenets .section-label {
      color: var(--orion-gold);
    }
    .tenets-intro {
      max-width: 100%;
      margin: 0 0 64px;
    }
    .tenets-intro h2 {
      color: var(--orion-gold);
    }
    /* same font/color as the rest of the title — no more italic serif accent */
    .tenets-highlight {
      font-style: normal;
      color: var(--orion-gold);
    }
    .tenets-intro p {
      font-family: 'Cormorant Garamond', serif;
      color: var(--orion-gold);
      max-width: 640px;
    }

    /* Continuous panel: outer rounded corners, inner dividers */
    .tenets-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-radius: 20px;
      overflow: hidden;
    }
    .tenet {
      background: #263420; /* lighter green than the section wrapper, so cards still read as distinct panels */
      padding: 48px 36px;
      border-right: 1px solid rgba(225,208,168,0.14);
      border-top: none;
      border-radius: 0;
      text-align: left;
      cursor: default;
      position: relative;
      overflow: hidden;
      transition: background 0.35s;
    }
    .tenet:last-child { border-right: none; }
    .tenet::before { display: none; }
    .tenet:hover { background: #2e3f27; transform: none; box-shadow: none; }
    .tenet-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orion-gold);
      line-height: 1;
      margin-bottom: 28px;
    }
    .tenet h3 {
      color: var(--orion-gold);
      overflow-wrap: normal;
      word-break: keep-all;
    }
    .tenet p {
      font-family: 'Cormorant Garamond', serif;
      color: var(--orion-gold);
      overflow-wrap: normal;
      word-break: keep-all;
    }

    /* Reliability fix: this section's reveal was silently getting stuck at
       opacity:0 (relying on GSAP/ScrollTrigger, which can desync after
       layout shifts and never fire). Force it visible with a plain CSS
       fade-in instead — no JS/scroll-position dependency, so it can never
       get stuck invisible again. */
    .tenets .section-label,
    .tenets h2,
    .tenets-intro p,
    .tenets-grid .tenet {
      opacity: 1 !important;
      filter: none !important;
      animation: tenetsFadeIn 1s ease-out both;
    }
    .tenets h2 { animation-delay: 0.08s; }
    .tenets-intro p { animation-delay: 0.16s; }
    .tenets-grid .tenet:nth-child(1) { animation-delay: 0.12s; }
    .tenets-grid .tenet:nth-child(2) { animation-delay: 0.22s; }
    .tenets-grid .tenet:nth-child(3) { animation-delay: 0.32s; }
    .tenets-grid .tenet:nth-child(4) { animation-delay: 0.42s; }
    @keyframes tenetsFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═══════════════════════════════════════
       EXPERIENCE
    ═══════════════════════════════════════ */
    .experience {
      background: var(--cream-bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 680px;
    }
    .experience-image-wrap {
      padding: 60px 24px 60px 60px;
      display: flex;
    }
    .experience-image {
      flex: 1;
      min-height: 520px;
      position: relative;
      border-radius: 28px;
      overflow: hidden;
    }
    .experience-image img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.7s ease;
      display: block;
    }
    .experience-image:hover img { transform: scale(1.04); }
    .experience-image .img-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 45%, rgba(26,54,43,0.65) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .experience-body {
      padding: 80px 70px 80px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .experience-body p + p { margin-top: 18px; }
    .experience-body .btn-primary { margin-top: 40px; align-self: flex-start; }
    .experience-body h2 {
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
    }
    .experience-body p {
      font-family: 'Cormorant Garamond', serif;
    }

    /* ═══════════════════════════════════════
       TESTIMONIAL (dark)
    ═══════════════════════════════════════ */
    .testimonial {
      background: var(--dark);
      text-align: center;
      padding: 130px 80px;
      position: relative;
      z-index: 2;          /* stack above neighbours so outward arcs show */
      /* no overflow:hidden — arcs need to extend beyond the box */
    }

    /* Top arc — dark dome bulging UP into the cream section above */
    .testimonial::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% + 200px);
      height: 200px;
      background: var(--dark);
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
      pointer-events: none;
    }

    /* Bottom arc — dark dome bulging DOWN into the cream section below */
    .testimonial::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% + 200px);
      height: 200px;
      background: var(--dark);
      border-radius: 0 0 50% 50% / 0 0 100% 100%;
      pointer-events: none;
    }

    /* Ambient glow (moved from ::before) */
    .testimonial-glow {
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(169,177,160,0.06) 0%, transparent 70%);
      pointer-events: none;
      animation: glowPulse 6s ease-in-out infinite;
    }
    @keyframes glowPulse {
      0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.5; }
      50%       { transform: translateX(-50%) scale(1.2); opacity: 1;   }
    }
    .testimonial .section-label { color: var(--orion-gold); }
    .testimonial-inner { max-width: 800px; margin: 0 auto; position: relative; }
    .testimonial-title {
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
      color: var(--orion-gold);
      font-size: clamp(34px, 3.8vw, 56px);
      line-height: 1.1;
      letter-spacing: 0.02em;
      text-align: center;
      margin-bottom: 36px;
    }
    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(19px, 2vw, 26px);
      line-height: 1.8;
      color: var(--orion-gold);
      margin-bottom: 40px;
    }
    .testimonial-text::before { content: '\201C'; }
    .testimonial-text::after { content: '\201D'; }
    .testimonial-attr {
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--orion-gold);
      font-weight: 300;
    }

    /* ═══════════════════════════════════════
       THE PLACE – images rounded + fade
    ═══════════════════════════════════════ */
    .place {
      background: var(--cream-bg);
      padding: 110px 80px;
    }
    .place-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 60px;
    }
    .place-header h2 {
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
    }
    .place-header p {
      font-family: 'Cormorant Garamond', serif;
    }
    .place-images {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 280px 280px;
      gap: 14px;
    }
    .place-img {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      cursor: pointer;
    }
    .place-img img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.7s cubic-bezier(0.25,0.8,0.25,1);
      display: block;
    }
    .place-img:hover img { transform: scale(1.07); }
    .place-img .img-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(13,26,18,0.65) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .place-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(26,54,43,0.15);
      z-index: 2;
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: 22px;
    }
    .place-img:hover::after { opacity: 1; }

    /* ═══════════════════════════════════════
       THE GUIDE
    ═══════════════════════════════════════ */
    .guide {
      background: var(--dark);
      display: grid;
      grid-template-columns: 480px 1fr;
      min-height: 680px;
    }
    .guide .section-label { color: var(--orion-gold); }
    .guide-image-wrap {
      padding: 60px 24px 60px 60px;
      display: flex;
    }
    .guide-image {
      flex: 1;
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      min-height: 500px;
    }
    .guide-image img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.7s ease;
      display: block;
    }
    .guide-image:hover img { transform: scale(1.04); }
    .guide-image .img-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(13,26,18,0.6) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .guide-body {
      padding: 90px 80px 90px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .guide-body h2 { margin-bottom: 8px; color: var(--orion-gold); }
    .guide-subtitle {
      font-size: 11px;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--orion-gold);
      margin-bottom: 32px;
      font-weight: 300;
    }
    .guide-body p { font-family: 'Cormorant Garamond', serif; color: var(--orion-gold); }
    .guide-body p + p { margin-top: 16px; }
    .guide-quote {
      margin-top: 38px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 18px;
      color: var(--orion-gold);
      border-left: 2px solid var(--sacred-earth);
      padding-left: 24px;
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════
       JOURNEY STEPS – rounded cards
    ═══════════════════════════════════════ */
    .journey {
      background: var(--cream-bg-2);
      border-top: 1px solid rgba(26,54,43,0.07);
      text-align: center;
    }
    .journey-intro { max-width: 540px; margin: 0 auto 80px; }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .step {
      padding: 52px 28px;
      background: var(--cream-bg);
      border-radius: 24px;
      position: relative;
      transition: all 0.45s cubic-bezier(0.25,0.8,0.25,1);
      overflow: hidden;
    }
    .step::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--sacred-earth), var(--jungle-mist));
      transform: scaleX(0);
      transition: transform 0.4s ease;
      border-radius: 0 0 24px 24px;
    }
    .step:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(26,54,43,0.1);
    }
    .step:hover::before { transform: scaleX(1); }
    .step-num {
      font-family: 'Italiana', serif;
      font-size: 66px;
      color: rgba(166,123,91,0.15);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.4s;
    }
    .step:hover .step-num { color: rgba(166,123,91,0.3); }
    .step h3 { font-size: 18px; margin-bottom: 12px; }
    .step p { font-family: 'Cormorant Garamond', serif; color: var(--text-dark-muted); }

    /* ═══════════════════════════════════════
       OTHER PATHS – rounded cards
    ═══════════════════════════════════════ */
    .paths {
      background: var(--cream-bg);
      padding: 110px 80px;
    }
    .paths-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 80px;
    }
    .paths-header p { font-family: 'Cormorant Garamond', serif; }
    .paths-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .path-card {
      background: var(--cream-bg);
      padding: 56px 42px;
      border-radius: 28px;
      border-top: 3px solid rgba(166,123,91,0.14);
      transition: all 0.45s cubic-bezier(0.25,0.8,0.25,1);
      text-decoration: none;
      display: block;
      position: relative;
      overflow: hidden;
    }
    /* Animated gradient border on hover */
    .path-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(169,177,160,0.1), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .path-card:hover {
      border-top-color: var(--sacred-earth);
      transform: translateY(-10px);
      box-shadow: 0 24px 60px rgba(26,54,43,0.13);
    }
    .path-card:hover::before { opacity: 1; }
    .path-tag {
      font-size: 9px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--sacred-earth);
      margin-bottom: 16px;
      font-weight: 400;
    }
    .path-card h3 { font-size: 22px; margin-bottom: 10px; }
    .path-date {
      font-size: 11px;
      letter-spacing: 0.14em;
      color: var(--text-dark-muted);
      margin-bottom: 20px;
      font-weight: 300;
    }
    .path-card p { font-family: 'Cormorant Garamond', serif; }
    .path-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--sacred-earth);
      transition: gap 0.3s;
    }
    .path-card:hover .path-link { gap: 14px; }

    /* ═══════════════════════════════════════
       CONTACT (dark, deep canopy)
    ═══════════════════════════════════════ */
    .contact {
      background: var(--dark);
      text-align: center;
      padding: 130px 80px;
      position: relative;
      overflow: hidden;
    }
    .contact::before {
      content: 'TIERRA SANTA';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      font-family: 'Italiana', serif;
      font-size: clamp(80px, 14vw, 200px);
      color: rgba(225,208,168,0.04);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.06em;
    }
    /* Jungle mist decorative arc on top */
    .contact::after {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 140%;
      height: 160px;
      background: var(--cream-bg);
      border-radius: 0 0 50% 50% / 0 0 100% 100%;
    }
    .contact .section-label { color: var(--orion-gold); }
    .contact h2 { color: var(--orion-gold); margin-bottom: 22px; }
    .contact p { font-family: 'Cormorant Garamond', serif; color: var(--orion-gold); margin-bottom: 50px; }
    .contact-inner {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto;
      padding-top: 60px;
    }
    .contact-email {
      display: inline-block;
      font-family: 'Italiana', serif;
      font-size: 26px;
      letter-spacing: 0.05em;
      color: var(--orion-gold);
      text-decoration: none;
      transition: all 0.35s;
      position: relative;
    }
    .contact-email::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0; right: 0;
      height: 1px;
      background: var(--orion-gold);
      transform: scaleX(0.4);
      transition: transform 0.4s;
    }
    .contact-email:hover { color: var(--cream-bg); }
    .contact-email:hover::after { transform: scaleX(1); }
    .contact-location {
      margin-top: 50px;
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(225,208,168,0.35);
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--dark-2);
      border-top: 1px solid rgba(225,208,168,0.09);
      padding: 46px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-logo {
      font-family: 'Italiana', serif;
      font-size: 18px;
      letter-spacing: 0.12em;
      color: var(--orion-gold);
      text-transform: uppercase;
    }
    .footer-links { display: flex; gap: 32px; list-style: none; }
    .footer-links a {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(225,208,168,0.45);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--orion-gold); }
    .footer-copy { font-size: 10px; color: rgba(225,208,168,0.4); letter-spacing: 0.1em; }

    /* ── GSAP mist targets ──
       These used to start at opacity:0 permanently until GSAP/ScrollTrigger
       revealed them on scroll. That reveal can silently desync (stale
       scroll-position measurements after layout shifts) and leave headings,
       labels and cards invisible forever. Switched to a plain CSS fade-in
       instead — guaranteed to run with no JS/scroll dependency at all. */
    .gsap-reveal { will-change: transform, opacity, filter; }

    section:not(.hero) h2,
    section:not(.hero) .section-label,
    .tenet, .step, .path-card,
    .intro-quote, .guide-quote {
      opacity: 1 !important;
      filter: none !important;
      animation: siteFadeIn 1s ease-out both;
    }
    @keyframes siteFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Parallax content containers – slight lift on scroll-in */
    .intro-text, .intro-quote,
    .tenets-intro, .tenets-grid,
    .experience-body,
    .testimonial-inner,
    .place-header, .place-images,
    .guide-body,
    .journey-intro, .steps,
    .paths-header, .paths-grid,
    .contact-inner {
      will-change: transform;
    }
    /* ═══════════════════════════════════════
       AMBIENT SOUND TOGGLE
    ═══════════════════════════════════════ */
    .sound-toggle {
      position: fixed;
      bottom: 32px;
      right: 44px;
      z-index: 500;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(18,34,24,0.62);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(225,208,168,0.18);
      border-radius: 50px;
      padding: 10px 18px 10px 14px;
      cursor: pointer;
      color: var(--orion-gold);
      font-family: 'Jost', sans-serif;
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      transition: background 0.35s, border-color 0.35s, opacity 0.35s;
      opacity: 0.75;
      user-select: none;
      -webkit-user-select: none;
    }
    .sound-toggle:hover {
      background: rgba(18,34,24,0.88);
      border-color: rgba(225,208,168,0.38);
      opacity: 1;
    }
    .sound-toggle svg { flex-shrink: 0; transition: opacity 0.3s; }

    /* Pulsing dot — visible when sound is playing */
    .sound-toggle .sound-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--orion-gold);
      flex-shrink: 0;
      animation: soundPulse 2s ease-in-out infinite;
    }
    .sound-toggle.is-muted .sound-dot {
      animation: none;
      opacity: 0.3;
    }
    .sound-toggle.is-muted svg { opacity: 0.45; }
    .sound-label { line-height: 1; }
    @keyframes soundPulse {
      0%, 100% { opacity: 1;   transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.6); }
    }

    /* ═══════════════════════════════════════
       SUBPAGE ADD-ONS (used by womens-retreat.html
       and any future retreat subpage — additive only,
       nothing here changes how index.html renders)
    ═══════════════════════════════════════ */
    .hero-photo {
      background-size: cover;
      background-position: center;
    }
    .hero-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(16px, 1.3vw, 19px);
      line-height: 1.8;
      color: rgba(245,241,230,0.92);
      max-width: 540px;
      margin-bottom: 46px;
      opacity: 0;
      animation: fadeInUp 1.8s 1.6s forwards;
    }
    /* Horizontal dividers between rows when a tenets-grid wraps to more
       than one row (e.g. a 16-item practice grid) — invisible on the
       original 4-item single-row grid since those are already the last row. */
    .tenets-grid .tenet {
      border-bottom: 1px solid rgba(225,208,168,0.14);
    }
    .tenets-grid .tenet:nth-last-child(-n+4) {
      border-bottom: none;
    }
    .tenets-note {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 14px;
      color: rgba(225,208,168,0.65);
      max-width: 640px;
      margin-top: 16px;
    }
    .contact-lacara::before { content: 'LA CARA'; }
    .contact-eljaguar::before { content: 'EL JAGUAR'; }
    .contact-spiritplanning::before { content: 'SPIRITPLANNING'; }

    /* ═══════════════════════════════════════
       SPIRITPLANNING ADD-ONS — additive only
    ═══════════════════════════════════════ */

    /* 3-image row variant of .place-images (Program section) */
    .place-images-3 {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 340px;
    }

    /* 2-column variant of .tenets-grid (seminar summary cards) */
    .tenets-grid-2 { grid-template-columns: repeat(2, 1fr); }

    /* Dash-prefixed lists, reused inside .tenet (gold-on-dark) and
       .curriculum-group (dark-on-cream) — color inherits from context. */
    ul.dash-list { list-style: none; }
    ul.dash-list li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 9px;
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.7;
    }
    ul.dash-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      opacity: 0.55;
    }
    .tenet ul.dash-list { color: var(--orion-gold); margin-top: 14px; }

    h4 {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sacred-earth);
      margin-bottom: 14px;
    }

    /* Detailed curriculum breakdown — cream bg, stacked cards */
    .curriculum { background: var(--cream-bg); }
    .curriculum-intro { max-width: 640px; margin: 0 auto 64px; text-align: center; }
    .curriculum-intro .section-label { justify-content: center; }
    .curriculum-block {
      background: #fff;
      border-radius: 24px;
      padding: 52px 60px;
      margin-bottom: 24px;
    }
    .curriculum-block > h3 { margin-bottom: 6px; }
    .curriculum-block > p.curriculum-lede {
      font-family: 'Cormorant Garamond', serif;
      color: var(--text-dark-muted);
      max-width: 640px;
      margin-bottom: 8px;
    }
    .curriculum-groups {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 40px;
      margin-top: 30px;
    }
    .curriculum-group ul.dash-list { color: var(--text-dark-2); margin-top: 2px; }
    .curriculum-group p {
      font-family: 'Cormorant Garamond', serif;
      color: var(--text-dark-2);
    }
    .curriculum-objective {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 14px;
      color: var(--text-dark-muted);
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid rgba(26,54,43,0.1);
    }
    /* Lighter, per-group note (exercise / learning objective nested
       inside a single .curriculum-group rather than a whole block) */
    .curriculum-note {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 13px;
      color: var(--text-dark-muted);
      margin-top: 14px;
    }

    /* Captioned photo grids — Seminar 2 architecture, Excursions */
    .photo-grid {
      display: grid;
      gap: 22px;
      margin: 8px 0 10px;
    }
    .photo-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .photo-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .photo-grid-item {
      border-radius: 18px;
      overflow: hidden;
    }
    .photo-grid-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .photo-grid-item:hover img { transform: scale(1.05); }
    .photo-grid-item figcaption {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 13px;
      color: var(--text-dark-muted);
      margin-top: 12px;
      text-align: center;
    }

    /* Certificate stats row, sits inside .guide-body (gold-on-dark) */
    .stats-row {
      display: flex;
      gap: 56px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      line-height: 1;
      color: var(--orion-gold);
    }
    .stat-label {
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--orion-gold);
      opacity: 0.7;
      margin-top: 10px;
    }

    /* ═══════════════════════════════════════
       IN SACRED ALLIANCE — the Ngäbe-Buglé
       (reuses .place for header/image-grid;
       adds a centered pull-quote + dash-list)
    ═══════════════════════════════════════ */
    .sacred-alliance-quote-wrap {
      max-width: 720px;
      margin: 56px auto 0;
    }
    .sacred-alliance-quote-wrap .intro-quote { margin: 0; }
    .sacred-alliance-list-wrap {
      max-width: 760px;
      margin: 56px auto 0;
    }
    .sacred-alliance-list {
      margin-top: 18px;
    }
    .sacred-alliance-list li {
      color: var(--text-dark-2);
    }

    /* ═══════════════════════════════════════
       THE GUIDE — continued (beach photo-quote,
       credentials, spiritual vita). Cream bg,
       picks up right where the dark .guide div
       (and its first pull-quote) leaves off.
    ═══════════════════════════════════════ */
    .guide-extra { background: var(--cream-bg); }
    .guide-photo-quote {
      width: calc(100% + 160px);
      margin: -20px -80px 60px;
    }
    .guide-photo-quote img {
      width: 100%;
      height: auto;
      display: block;
    }
    .guide-extra-block {
      max-width: 760px;
      margin: 0 auto 56px;
    }
    .guide-extra-block:last-child { margin-bottom: 0; }
    .guide-extra-list { margin-top: 18px; }
    .guide-extra-list li { color: var(--text-dark-2); }

    /* Price list download link, sits below the paths-grid cards */
    .paths-download {
      text-align: center;
      margin-top: 56px;
    }

    /* ═══════════════════════════════════════════════════════════
       MOBILE RESPONSIVE
       One main breakpoint (900px, matching the existing
       .kathrin-welcome breakpoint) switches the whole site into a
       stacked, single-column layout; a second breakpoint (480px)
       trims a handful of things further for small phones.
       This block is additive/override-only — nothing here changes
       desktop rendering above 900px.
    ═══════════════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      /* ── Global rhythm ── */
      section { padding: 60px 24px; }
      .intro  { padding: 30px 24px 60px; }
      .tenets { padding: 70px 24px 80px; }
      .place, .paths { padding: 70px 24px; }
      .contact, .testimonial { padding: 80px 24px; }
      .curriculum-intro { margin-bottom: 44px; }

      /* ── Nav: hamburger takes over ── */
      nav { padding: 18px 22px; }
      nav.scrolled { padding: 14px 22px; }
      .nav-logo-image { height: 56px; }
      nav.scrolled .nav-logo-image { height: 46px; }
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(13,26,18,0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 96px 32px 40px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.45s ease, opacity 0.3s ease;
      }
      .nav-links.is-open {
        max-height: 520px;
        opacity: 1;
        pointer-events: auto;
      }
      .nav-links li { width: 100%; }
      .nav-links li a {
        display: block;
        padding: 16px 0;
        font-size: 15px;
        letter-spacing: 0.14em;
        border-bottom: 1px solid rgba(225,208,168,0.12);
      }
      .nav-links li:last-child a { border-bottom: none; }
      /* Language switcher: keep its 3 links inline, not block-stacked */
      .nav-links li.nav-lang {
        padding: 14px 0;
        border-bottom: 1px solid rgba(225,208,168,0.12);
      }
      .nav-links li.nav-lang a {
        display: inline;
        padding: 0;
        border-bottom: none;
        font-size: 13px !important;
      }
      .nav-cta { margin-top: 18px; display: inline-block; }

      /* ── Hero ── */
      .hero { padding: 0; }
      .hero-content { padding: 0 24px 130px; max-width: none; }
      .hero-eyebrow { font-size: 14px; margin-bottom: 16px; }
      .hero h1 { font-size: clamp(36px, 11vw, 58px); margin-bottom: 34px; }
      .hero-line { white-space: normal; transform: none; }
      .hero-actions { flex-wrap: wrap; gap: 14px; }
      .hero-lead { max-width: none; }

      /* ── Tenets grid (4-col panel / 16-item practice grid / 2-col
         seminar summary) — all collapse to a single stacked column ── */
      .tenets-grid, .tenets-grid-2 { grid-template-columns: 1fr; }
      .tenet {
        border-right: none;
        border-bottom: 1px solid rgba(225,208,168,0.14);
      }
      .tenet:last-child { border-bottom: none; }
      /* Undo the desktop "last row has no bottom border" rule — in a
         single column every item is its own row except the true last. */
      .tenets-grid .tenet:nth-last-child(-n+4) { border-bottom: 1px solid rgba(225,208,168,0.14); }
      .tenets-grid .tenet:last-child { border-bottom: none; }

      /* ── Experience ── */
      .experience { grid-template-columns: 1fr; min-height: 0; }
      .experience-image-wrap { padding: 40px 24px 0; }
      .experience-image { min-height: 300px; }
      .experience-body { padding: 40px 24px 60px; }

      /* ── The Place ── */
      .place-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
      .place-images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        grid-auto-rows: 170px;
      }

      /* ── The Guide ── */
      .guide { grid-template-columns: 1fr; min-height: 0; }
      .guide-image-wrap { padding: 40px 24px 0; }
      .guide-image { min-height: 300px; }
      .guide-body { padding: 40px 24px 60px; }
      .guide-photo-quote { width: calc(100% + 48px); margin: -10px -24px 40px; }

      /* ── Journey steps / Other paths ── */
      .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .paths-grid { grid-template-columns: 1fr; }

      /* ── Footer ── */
      footer { flex-direction: column; gap: 20px; padding: 40px 24px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 24px; }

      /* ── Sound toggle: pull in from the edge a little ── */
      .sound-toggle { bottom: 20px; right: 20px; padding: 9px 16px 9px 12px; }

      /* ── Contact watermark: on a narrow phone the word is always
         wide enough to underline the real copy no matter the size —
         it's a desktop-only flourish, so hide it here instead. ── */
      .contact::before { display: none; }

      /* ── Subpage-only components ── */
      .place-images-3 { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 230px; }
      .curriculum-block { padding: 36px 24px; }
      .photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
      .photo-grid-2 { grid-template-columns: 1fr; }
      .photo-grid-item img { height: 230px; }
      .stats-row { gap: 32px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(32px, 12vw, 46px); }
      .steps { grid-template-columns: 1fr; }
      .photo-grid-4 { grid-template-columns: 1fr; }
      .stats-row { gap: 24px 40px; }
      .curriculum-groups { grid-template-columns: 1fr; }
      .place-images { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    }
