﻿  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Dominant base + a single confident accent + disciplined neutrals */
    --navy:        #2F4F3E;
    --navy-deep:   #1F3A2C;
    --green:       #6B9C5C;
    --gold:        #D9A24B;
    --gold-light:  #F0C878;
    --cream:       #FBF7EE;
    --cream-2:     #F3EDDD;
    --white:       #FFFFFF;
    --ink:         #2A3530;
    --muted:       #6E7568;
    --line:        rgba(47,79,62,.10);
    --line-gold:   rgba(217,162,75,.28);

    --r:   14px;     /* one radius everywhere */
    --r-sm: 8px;
    --maxw: 1140px;

    /* one consistent vertical rhythm */
    --sec:  clamp(72px, 9vw, 128px);
    --shadow: 0 24px 60px -28px rgba(31,58,44,.30);
  }

  html { scroll-behavior: smooth; }

  html { overflow-x: clip; }
  body { overflow-x: hidden; }
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
  }
  img { max-width: 100%; height: auto; }

  h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

  /* ---------- shared atoms ---------- */
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  section { padding: var(--sec) 0; }

  .eyebrow {
    font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold); display: inline-block; font-weight: 600;
  }
  .eyebrow.on-dark { color: var(--gold-light); }
  .gold-accent { color: var(--gold-light); font-weight: 700; }
  .rule { width: 44px; height: 1px; background: var(--gold); margin: 18px 0 30px; }
  .rule.c { margin-left: auto; margin-right: auto; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; cursor: pointer; border: 1px solid transparent;
    transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }
  .btn-gold { background: var(--gold); color: var(--navy); }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
  .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
  .btn-ghost { background: transparent; color: var(--green); border-color: rgba(107,156,92,.25); }
  .btn-ghost:hover { border-color: var(--green); transform: translateY(-2px); }

  .icon { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }

  /* reveal-on-scroll — progressive enhancement: visible by default, animated only when JS runs */
  .reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
  body.js .reveal { opacity: 0; transform: translateY(22px); }
  body.js .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    body.js .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ---------- CONTACT BAR ---------- */
  .contact-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 110;
    height: 36px;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(201,168,76,.18);
    display: flex; align-items: center; justify-content: center; gap: 28px;
  }
  .contact-bar a {
    display: flex; align-items: center; gap: 7px;
    font-family: 'Montserrat', sans-serif; font-size: .68rem;
    font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
    color: rgba(255,255,255,.62); text-decoration: none;
    transition: color .2s;
  }
  .contact-bar a:hover { color: var(--gold-light); }
  .contact-bar svg { flex-shrink: 0; opacity: .75; }
  .contact-bar a:hover svg { opacity: 1; }

  /* ---------- NAV ---------- */
  nav {
    position: fixed; inset: 36px 0 auto 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 80px;
    background: rgba(47,79,62,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .nav-logo .mark {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid var(--gold); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  }
  .nav-logo .wm { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 600; color: #fff; letter-spacing: .03em; }
  .nav-logo .wm span { color: var(--gold); }
  /* hamburger button */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 1px solid rgba(217,162,75,.35); border-radius: var(--r);
    cursor: pointer; position: relative; z-index: 101; flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; height: 1.5px; background: #fff;
    transition: transform .3s ease, opacity .2s ease, width .3s ease;
    transform-origin: center;
  }
  .nav-toggle span:nth-child(2) { width: 70%; margin-left: auto; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

  /* dropdown panel */
  .nav-links {
    position: fixed; top: 116px; right: 0; z-index: 99;
    min-width: 240px;
    background: rgba(47,79,62,.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217,162,75,.18);
    border-top: none; border-right: none;
    border-radius: 0 0 0 var(--r);
    list-style: none; padding: 16px 0 20px;
    display: flex; flex-direction: column;
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 8px 32px rgba(0,0,0,.45);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    display: block; padding: 11px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: .84rem; font-weight: 500; letter-spacing: .06em;
    color: rgba(255,255,255,.78); text-decoration: none;
    transition: color .2s, padding-left .2s;
    border-left: 2px solid transparent;
  }
  .nav-links a:hover { color: var(--gold-light); padding-left: 34px; border-left-color: var(--gold); }
  .nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .nav-cta-btn { padding: 10px 22px; font-size: .78rem; letter-spacing: .06em; white-space: nowrap; }

  /* ---------- NAV SUBMENU ---------- */
  .sub-nav-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 11px 28px;
    background: none; border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: .84rem; font-weight: 500; letter-spacing: .06em;
    color: rgba(255,255,255,.78); text-align: left;
    border-left: 2px solid transparent;
    transition: color .2s, padding-left .2s, border-color .2s;
  }
  .sub-nav-btn:hover, .sub-nav-btn.active { color: var(--gold-light); padding-left: 34px; border-left-color: var(--gold); }
  .sub-nav-btn svg { flex-shrink: 0; transition: transform .25s ease; }
  .has-sub.open .sub-nav-btn svg { transform: rotate(180deg); }

  .has-sub .sub-row { display: flex; align-items: center; }
  .has-sub .sub-row > a { flex: 1; }
  .sub-toggle {
    background: none; border: none; cursor: pointer;
    padding: 11px 20px 11px 8px; color: rgba(255,255,255,.78);
    display: flex; align-items: center;
    transition: color .2s;
  }
  .sub-toggle:hover { color: var(--gold-light); }
  .sub-toggle svg { transition: transform .25s ease; }
  .has-sub.open .sub-toggle svg { transform: rotate(180deg); }
  .sub-menu {
    list-style: none;
    max-height: 0; overflow: hidden;
    transition: max-height .32s ease;
    background: rgba(255,255,255,.04);
    border-left: 2px solid var(--gold);
    margin: 0 20px 0 26px;
    border-radius: 0 0 4px 4px;
  }
  .has-sub.open .sub-menu { max-height: 400px; }
  .sub-menu li a {
    display: block; padding: 8px 16px;
    font-size: .76rem; font-weight: 400; letter-spacing: .05em;
    color: rgba(255,255,255,.60); text-decoration: none;
    transition: color .2s, padding-left .2s;
    border-left: none;
  }
  .sub-menu li a:hover { color: var(--gold-light); padding-left: 22px; border-left-color: transparent; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; color: #fff;
  }
  /* photography slot — replace .hero-media background with a real image */
  .hero-media {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(102deg, rgba(31,58,44,.93) 0%, rgba(31,58,44,.70) 38%, rgba(11,22,55,.34) 70%, rgba(11,22,55,.52) 100%),
      linear-gradient(0deg, rgba(31,58,44,.55) 0%, rgba(31,58,44,0) 42%),
      url('images/hero.jpg');
    background-size: cover, cover, cover;
    background-position: center, center, 75% center;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }
  .hero-media::after {
    /* subtle grain/texture for depth */
    content: ''; position: absolute; inset: 0; opacity: .25;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 4px 4px;
  }
  .hero .container { position: relative; padding-top: 156px; padding-bottom: 80px; }
  .hero-inner { max-width: 760px; }
  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700;
    line-height: 1.08; margin: 26px 0 26px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.82); max-width: 560px; }
  .hero-mantra {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    margin: 30px 0 44px; font-size: .72rem; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold-light);
  }
  .hero-mantra span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
  .hero-pillars {
    display: flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 36px;
  }
  .pillar-box {
    padding: 12px 28px;
    border: 1.5px solid var(--gold);
    border-radius: var(--r);
    background: rgba(31,58,44,.55);
    color: #fff; font-size: .9rem; font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  /* stats band overlapping the hero base */
  .stats-band {
    position: relative; z-index: 2; margin-top: -1px;
    background: var(--navy-deep);
    border-top: 1px solid var(--line-gold);
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 40px 28px; text-align: center; border-right: 1px solid rgba(217,162,75,.12); }
  .stat:last-child { border-right: 0; }
  .stat-n { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3rem); font-weight: 700; color: var(--gold-light); line-height: 1; }
  .stat-l { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 10px; }
  .stat-c { font-size: .76rem; color: rgba(255,255,255,.38); margin-top: 4px; }

  /* ---------- INTRO ---------- */
  .s-cream { background: var(--cream); }
  .s-navy  { background: var(--navy); color: #fff; }
  .s-green { background: var(--green); color: #fff; }

  .intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
  .intro-text h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); color: var(--green); line-height: 1.18; }
  .intro-text p { color: var(--muted); font-size: .97rem; margin-top: 18px; }
  .quote-card {
    background: var(--navy); border-radius: var(--r);
    padding: 44px; border-left: 3px solid var(--gold);
    box-shadow: var(--shadow);
  }
  .quote-card p { font-family: 'Lora', serif; font-size: 1.2rem; font-style: italic; color: var(--gold-light); line-height: 1.7; }
  .quote-card cite { display: block; margin-top: 20px; font-family: 'Montserrat', sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-style: normal; }

  /* ---------- JOURNEY ---------- */
  .head-c { text-align: center; max-width: 620px; margin: 0 auto 72px; }
  .head-c h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); margin-top: 14px; }
  .head-c p { margin-top: 14px; }
  .s-green .head-c p { color: rgba(255,255,255,.62); }

  .journey-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .journey-steps::before { content: ''; position: absolute; top: 34px; left: 16.6%; right: 16.6%; height: 1px; background: var(--line-gold); }
  .step { text-align: center; padding: 0 18px; display: flex; flex-direction: column; align-items: center; }
  .step-age { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
  .step-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--navy); border: 1px solid var(--line-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); position: relative; z-index: 1; margin-bottom: 22px;
  }
  .step-icon.active { background: rgba(217,162,75,.12); border-color: var(--gold); box-shadow: 0 0 0 5px rgba(217,162,75,.10); }
  .step h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 6px; }
  .step-brand { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 12px; }
  .step p { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.6; }
  .step-badge { display: inline-block; margin-top: 14px; padding: 5px 14px; border-radius: 999px; background: rgba(217,162,75,.1); border: 1px solid var(--line-gold); font-size: .66rem; letter-spacing: .06em; color: var(--gold-light); }

  /* ---------- COMPONENTS ---------- */
  .comp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .comp-card {
    background: var(--white); border-radius: var(--r); border: 1px solid var(--line);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .comp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  .comp-card.featured { background: var(--navy); border-color: var(--line-gold); }
  /* photography slot at top of each card */
  .comp-media { position: relative; aspect-ratio: 16 / 8; overflow: hidden; }
  .comp-media .ph { position: absolute; inset: 0; }
  .comp-media .num {
    position: absolute; top: 16px; left: 18px; z-index: 2;
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
    color: #fff; background: rgba(47,79,62,.55); border: 1px solid rgba(255,255,255,.25);
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }
  .comp-body { padding: 32px 34px 36px; display: flex; flex-direction: column; flex: 1; }
  .comp-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .comp-card.featured .comp-label { color: var(--gold-light); }
  .comp-card h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 12px; }
  .comp-card.featured h3 { color: var(--gold-light); }
  .comp-card p { font-size: .9rem; color: var(--muted); }
  .comp-card.featured p { color: rgba(255,255,255,.66); }
  .comp-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
  .comp-pill { padding: 5px 13px; border-radius: 999px; background: rgba(107,156,92,.06); border: 1px solid rgba(107,156,92,.14); font-size: .72rem; color: var(--green); }
  .comp-card.featured .comp-pill { background: rgba(217,162,75,.1); border-color: var(--line-gold); color: var(--gold-light); }
  .comp-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 24px; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green); text-decoration: none; font-weight: 600; transition: gap .2s; }
  .comp-card.featured .comp-link { color: var(--gold-light); }
  .comp-link:hover { gap: 12px; }
  .comp-link .icon { width: 16px; height: 16px; }

  /* ---------- FORUM ---------- */
  .forum-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .forum-text h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.2; margin-top: 14px; }
  .forum-text p { color: rgba(255,255,255,.7); font-size: .95rem; margin-top: 16px; }
  .forum-cards { display: grid; gap: 14px; }
  .forum-card { background: rgba(255,255,255,.05); border: 1px solid var(--line-gold); border-radius: var(--r-sm); padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; }
  .forum-card .ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(217,162,75,.14); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .forum-card h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 600; color: var(--gold-light); margin-bottom: 4px; }
  .forum-card p { font-size: .8rem; color: rgba(255,255,255,.58); line-height: 1.5; }

  /* ---------- TESTIMONIALS ---------- */
  .t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .t-card { background: var(--white); border-radius: var(--r); padding: 40px; border: 1px solid var(--line); position: relative; }
  .t-card.dark { background: var(--navy); border-color: var(--line-gold); }
  .t-mark { font-family: 'Playfair Display', serif; font-size: 3rem; line-height: .7; color: var(--gold); opacity: .4; }
  .t-card p { font-family: 'Lora', serif; font-size: 1.02rem; font-style: italic; color: var(--navy); line-height: 1.8; margin: 14px 0 26px; }
  .t-card.dark p { color: rgba(255,255,255,.82); }
  .t-foot { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line); padding-top: 22px; }
  .t-card.dark .t-foot { border-color: rgba(255,255,255,.1); }
  .t-av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--gold-light); background: linear-gradient(135deg, var(--green), #8FBF7C); }
  .t-card.dark .t-av { background: rgba(217,162,75,.18); border: 1px solid var(--line-gold); }
  .t-name { font-size: .86rem; font-weight: 600; color: var(--navy); }
  .t-card.dark .t-name { color: var(--gold-light); }
  .t-role { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
  .t-card.dark .t-role { color: rgba(255,255,255,.4); }

  /* ---------- CTA ---------- */
  .cta { background: var(--navy); text-align: center; }
  .cta h2 { font-size: clamp(2rem, 3vw, 2.9rem); color: #fff; margin-top: 14px; }
  .cta p { color: rgba(255,255,255,.62); max-width: 500px; margin: 18px auto 40px; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ---------- TRUST STRIP ---------- */
  .trust { background: var(--cream-2); border-top: 1px solid var(--line); padding: 48px 0; }
  .trust .lbl { text-align: center; font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(47,79,62,.4); margin-bottom: 30px; }
  .trust-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
  .trust-item { display: flex; flex-direction: column; align-items: center; gap: 9px; }
  .trust-item img { height: 50px; width: auto; object-fit: contain; }
  .trust-item:hover img { opacity: 1; filter: none; }
  .logo-chip { background:#fff; border:1px solid var(--line); border-radius:10px; height:74px; min-width:128px; padding:12px 22px; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 20px -14px rgba(47,79,62,.3); transition:transform .2s ease, box-shadow .2s ease; }
  .logo-chip:hover { transform:translateY(-2px); box-shadow:0 12px 26px -14px rgba(47,79,62,.35); }
  .logo-chip img { height:100%; width:auto; max-width:170px; object-fit:contain; display:block; }
  .logo-chip .txt { font-family:'Playfair Display',serif; font-size:1.05rem; color:rgba(47,79,62,.62); letter-spacing:.02em; }
  .trust-item span { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(47,79,62,.42); }
  .trust-badge { /* placeholder when no logo file present */
    height: 50px; min-width: 120px; padding: 0 18px; border: 1px solid var(--line);
    border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: .9rem; color: rgba(47,79,62,.55); background: #fff;
  }

  /* ---------- FOOTER ---------- */
  footer { background: var(--navy-deep); padding: 64px 0 36px; color: #fff; }
  .foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .foot-brand .wm { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; }
  .foot-brand .wm span { color: var(--gold); }
  .foot-brand p { font-size: .8rem; color: rgba(255,255,255,.45); max-width: 260px; margin-top: 10px; }
  .foot-eco { display: flex; gap: 28px; flex-wrap: wrap; }
  .foot-eco a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
  .foot-eco a:hover { color: var(--gold-light); }
  .foot-copy { margin-top: 28px; font-size: .72rem; color: rgba(255,255,255,.25); letter-spacing: .06em; text-align: center; }

  /* ---------- AGE LEVELS ---------- */
  .age-levels { background: var(--navy); }
  .al-header { text-align: center; margin-bottom: 52px; }
  .al-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; }
  .al-header p { color: rgba(255,255,255,.6); margin-top: 14px; font-size: .97rem; }
  .al-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .al-card:nth-child(1),
  .al-card:nth-child(2),
  .al-card:nth-child(3) { grid-column: span 2; }
  .al-card:nth-child(4) { grid-column: 2 / span 2; }
  .al-card:nth-child(5) { grid-column: 4 / span 2; }
  .al-card {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow);
    transition: transform .28s ease, box-shadow .28s ease;
  }
  .al-card:hover { transform: translateY(-8px); box-shadow: 0 36px 72px -24px rgba(47,79,62,.55); }
  .al-img {
    height: 440px;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-deep);
  }
  .al-tag {
    position: absolute;
    top: 22px; left: 22px;
    padding: 7px 16px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
  }
  .al-tag.tag-navy  { background: var(--navy);  color: #fff; }
  .al-tag.tag-green { background: var(--green); color: #fff; }
  .al-tag.tag-gold  { background: var(--gold);  color: var(--navy); }
  .al-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(to top, rgba(47,79,62,.92) 0%, rgba(47,79,62,.4) 60%, transparent 100%);
    color: #fff;
  }
  .al-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem; font-weight: 600;
    margin-bottom: 6px;
  }
  .al-body p {
    font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.65);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
  }
  .al-arrow {
    position: absolute; bottom: 28px; right: 24px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .al-card:hover .al-arrow { background: var(--gold); }
  .al-arrow svg { stroke: #fff; width: 16px; height: 16px; }
  @media (max-width: 860px) {
    .al-grid { grid-template-columns: repeat(2, 1fr); }
    .al-card:nth-child(1),
    .al-card:nth-child(2),
    .al-card:nth-child(3),
    .al-card:nth-child(4),
    .al-card:nth-child(5) { grid-column: span 1; }
  }
  @media (max-width: 560px) {
    .al-grid { grid-template-columns: 1fr; gap: 16px; }
    .al-img { height: 280px; }
  }

  /* ---------- HISTORY PAGE ---------- */
  .history-intro { max-width: 720px; margin: 0; text-align: left; }
  .history-intro h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); color: var(--navy); line-height: 1.2; margin-top: 14px; }
  .history-intro p { color: var(--muted); font-size: 1.02rem; line-height: 1.85; margin-top: 18px; }

  .history-timeline { padding: var(--sec) 0; }
  .tl-header { text-align: left; margin-bottom: 72px; }
  .tl-header h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); }

  .timeline { max-width: 820px; margin: 0 auto; }
  .tl-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 36px;
    margin-bottom: 0;
  }
  .tl-marker { display: flex; flex-direction: column; align-items: center; }
  .tl-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--navy);
    box-shadow: 0 0 0 3px var(--gold);
    flex-shrink: 0; margin-top: 6px;
    position: relative; z-index: 1;
  }
  .tl-line {
    width: 2px; flex: 1;
    background: linear-gradient(to bottom, var(--gold), rgba(217,162,75,.15));
    margin-top: 10px; margin-bottom: 0;
    min-height: 48px;
  }
  .tl-content {
    padding-bottom: 56px;
  }
  .tl-item:last-child .tl-content { padding-bottom: 0; }
  .tl-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
  }
  .tl-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; color: #fff;
    margin-bottom: 14px; line-height: 1.3;
  }
  .tl-content p {
    font-size: .94rem; line-height: 1.85;
    color: rgba(255,255,255,.68);
    margin-bottom: 12px;
  }
  .tl-content p:last-child { margin-bottom: 0; }
  .tl-content em { color: rgba(255,255,255,.88); font-style: italic; }
  @media (max-width: 600px) {
    .tl-item { grid-template-columns: 28px 1fr; gap: 0 20px; }
    .tl-content { padding-bottom: 40px; }
  }

  /* ---------- BENEFITS GRID ---------- */
  .s-navy { background: var(--navy); color: #fff; }
  .benefits-section { padding: var(--sec) 0; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
  }
  .benefit-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--r);
    padding: 36px 32px;
    transition: background .25s, border-color .25s, transform .25s;
  }
  .benefit-card:hover {
    background: rgba(255,255,255,.10);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .benefit-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(217,162,75,.18) 0%, rgba(47,79,62,.6) 100%);
    border: 1.5px solid var(--gold);
  }
  .benefit-card-featured:hover {
    background: linear-gradient(135deg, rgba(217,162,75,.25) 0%, rgba(47,79,62,.7) 100%);
  }
  .benefit-standards {
    list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-top: 4px;
  }
  .benefit-standards li {
    font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.8);
    padding: 8px 16px; border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.05);
  }
  .benefit-standards strong {
    color: var(--gold-light);
  }
  .benefit-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
  }
  .benefit-icon { display: none; }
  .benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: #fff;
    margin-bottom: 14px; line-height: 1.3;
  }
  .benefit-card p {
    font-size: .9rem; line-height: 1.8;
    color: rgba(255,255,255,.65);
  }
  @media (max-width: 900px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .benefits-grid { grid-template-columns: 1fr; }
  }

  /* ---------- FOUNDER MESSAGE ---------- */
  .founder-msg { padding: var(--sec) 0; }
  .founder-inner {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 32px;
    max-width: 780px;
    margin: 0 auto;
  }
  .founder-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 9rem; line-height: .75;
    color: var(--gold); opacity: .35;
    user-select: none;
  }
  .founder-body { padding-top: 8px; }
  .founder-salut {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-style: italic;
    color: var(--navy); margin-bottom: 24px;
  }
  .founder-body p {
    color: var(--navy); font-size: 1.02rem; line-height: 1.85;
    margin-bottom: 20px;
  }
  .founder-blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-style: italic;
    color: var(--navy);
    background: var(--cream-2);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
  }
  .founder-sig { margin-top: 44px; }
  .founder-sig-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 16px; }
  .founder-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--navy);
  }
  .founder-role {
    display: block;
    font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); margin-top: 4px;
  }
  @media (max-width: 600px) {
    .founder-inner { grid-template-columns: 1fr; }
    .founder-quote-mark { display: none; }
  }

  /* ---------- TEAM ---------- */
  .team { background: var(--white); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .member { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
  .member:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  .member-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
  .member-photo .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2rem; letter-spacing: .04em; color: var(--gold-light); background: linear-gradient(150deg, var(--navy), var(--navy-deep)); }
  .member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .member-body { padding: 22px 24px 26px; }
  .member-body h4 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--navy); margin-bottom: 5px; }
  .member-role { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
  .member-note { font-size: .83rem; color: var(--muted); margin-top: 11px; line-height: 1.55; }

  /* ---------- ACREDITARE ---------- */
  .accred { background: var(--white); }
  .accred-intro { max-width: 780px; margin: 0 auto; text-align: center; }
  .accred-intro h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--navy); margin-top: 14px; }
  .accred-intro p { color: var(--muted); font-size: 1.02rem; margin-top: 16px; }
  .accred-panel { margin-top: 52px; background: var(--navy); border: 1px solid var(--line-gold); border-radius: var(--r); padding: 48px clamp(28px, 4vw, 60px); box-shadow: var(--shadow); }
  .accred-panel .ptitle { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
  .accred-panel h3 { font-size: 1.5rem; color: var(--gold-light); }
  .accred-panel .ptitle .eyebrow { color: var(--gold); }
  .accred-panel .lead { color: rgba(47,79,62,.6); font-size: .92rem; max-width: 620px; }
  .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 44px; margin-top: 34px; }
  .check { display: flex; gap: 15px; align-items: flex-start; }
  .check .ic { width: 28px; height: 28px; border-radius: 50%; background: rgba(217,162,75,.14); border: 1px solid var(--line-gold); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .check .ic .icon { width: 15px; height: 15px; stroke-width: 2; }
  .check p { font-size: .9rem; color: rgba(255,255,255,.84); line-height: 1.55; margin: 0; }

  /* ---------- DESKTOP NAV (≥880px) ---------- */
  @media (min-width: 880px) {
    nav { justify-content: flex-start; gap: 0; }

    /* Order: logo | links | cta */
    .nav-logo  { order: 1; flex-shrink: 0; }
    .nav-links { order: 2; flex: 1; }
    .nav-right { order: 3; flex-shrink: 0; }

    /* Hide hamburger on desktop */
    .nav-toggle { display: none; }

    /* Show links inline */
    .nav-links {
      position: static;
      transform: none !important;
      background: transparent;
      backdrop-filter: none;
      border: none;
      box-shadow: none;
      border-radius: 0;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      padding: 0;
      min-width: 0;
      gap: 0;
    }

    /* Top-level items */
    .nav-links > li { position: relative; }

    .nav-links > li > a {
      padding: 10px 20px;
      font-size: .92rem;
      border-left: none !important;
      white-space: nowrap;
    }
    .nav-links > li > a:hover {
      padding-left: 16px !important;
      border-left: none !important;
      color: var(--gold-light);
    }
    .nav-links > li > a.active { color: var(--gold-light); }

    /* Sub-toggle button as top-level nav item */
    .sub-nav-btn {
      padding: 10px 20px;
      font-size: .92rem;
      border-left: none !important;
      white-space: nowrap;
    }
    .sub-nav-btn:hover,
    .sub-nav-btn.active {
      padding-left: 16px !important;
      border-left: none !important;
      color: var(--gold-light);
    }

    /* Show dropdown on hover */
    .has-sub:hover .sub-menu,
    .has-sub:focus-within .sub-menu { max-height: 500px; }
    .has-sub:hover .sub-nav-btn svg { transform: rotate(180deg); }

    /* Dropdown panel */
    .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 240px;
      background: rgba(47,79,62,.97);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(217,162,75,.18);
      border-top: none;
      border-radius: 0 0 var(--r) var(--r);
      margin: 0;
      padding: 8px 0;
      box-shadow: 0 8px 32px rgba(0,0,0,.45);
      z-index: 200;
    }
    .sub-menu li a {
      padding: 9px 20px;
      font-size: .8rem;
      border-left: none !important;
    }
    .sub-menu li a:hover {
      padding-left: 28px !important;
      color: var(--gold-light);
      background: rgba(255,255,255,.04);
    }
    .sub-menu li a.active { color: var(--gold-light); }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 880px) {
    nav { padding: 0 16px; height: 68px; }
    .nav-links { top: 104px; }
    /* Ascunde textul logo pe toate ecranele mobile — rămâne doar cercul E */
    .nav-logo .wm { display: none; }
    .nav-cta-btn { padding: 9px 14px; font-size: .72rem; letter-spacing: .04em; }
    /* Hamburger vizibil forțat pe mobil */
    .nav-toggle {
      display: flex !important;
      background: rgba(217,162,75,.15) !important;
      border: 1.5px solid var(--gold) !important;
    }
    .intro-grid, .forum-inner, .comp-grid, .t-grid { grid-template-columns: 1fr; gap: 36px; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .checklist { grid-template-columns: 1fr; gap: 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(217,162,75,.12); }
    .journey-steps { grid-template-columns: 1fr; gap: 40px; }
    .journey-steps::before { display: none; }
    .hero .container { padding-top: 132px; padding-bottom: 64px; }
    .quote-card { padding: 32px 26px; }
    .accred-panel { padding: 32px 24px; }
  }

  @media (max-width: 600px) {
    .contact-bar { gap: 16px; }
    .contact-bar a { font-size: .6rem; gap: 5px; letter-spacing: .04em; }
    .contact-bar a span.cb-label { display: none; }
    .container { padding: 0 18px; }
    .hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stat { padding: 30px 18px; }
    .comp-body { padding: 28px 22px 30px; }
    .member-body { padding: 20px 18px 22px; }
    .quote-card p { font-size: 1.08rem; }
    .trust-row { gap: 28px; }
    .foot-top { gap: 28px; }
    .team-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .nav-cta-btn { padding: 8px 12px; font-size: .68rem; }
  }

  @media (max-width: 420px) {
    .nav .btn { padding: 9px 12px; font-size: .65rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat:nth-child(3) { border-right: 0; }
    .stat { border-bottom: 1px solid rgba(217,162,75,.12); }
  }

  /* ---------- SUBPAGE NAV (Despre noi submenu) ---------- */
  .subpage-nav {
    background: var(--cream-2); border-bottom: 1px solid var(--line);
    padding: 0; position: sticky; top: 80px; z-index: 90;
  }
  .subpage-nav-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  }
  .subpage-nav-inner::-webkit-scrollbar { display: none; }
  .subpage-nav-inner a {
    display: block; padding: 14px 20px; flex-shrink: 0;
    font-family: 'Montserrat', sans-serif; font-size: .74rem;
    font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
  }
  .subpage-nav-inner a:hover, .subpage-nav-inner a.active {
    color: var(--green); border-bottom-color: var(--gold);
  }

  /* ---------- DESPRE NOI OVERVIEW ---------- */
  .despre-hero {
    background: var(--navy); color: #fff;
    padding: var(--sec) 0;
    padding-top: calc(var(--sec) + 116px);
    text-align: center;
  }
  .despre-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-top: 16px; }
  .despre-hero p { color: rgba(255,255,255,.68); max-width: 580px; margin: 18px auto 0; font-size: 1.05rem; }

  .overview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 60px;
  }
  .overview-card {
    background: var(--white); border-radius: var(--r); border: 1px solid var(--line);
    padding: 36px 32px; text-decoration: none; color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column; gap: 12px;
  }
  .overview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  .overview-card .oc-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(107,156,92,.08); border: 1px solid rgba(107,156,92,.14);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); margin-bottom: 8px;
  }
  .overview-card h3 { font-size: 1.1rem; color: var(--navy); }
  .overview-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; flex: 1; }
  .overview-card .oc-link {
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
    margin-top: 4px;
  }

  /* ---------- PLACEHOLDER PAGES ---------- */
  .placeholder-hero {
    background: var(--navy); color: #fff;
    padding: var(--sec) 0;
    padding-top: calc(var(--sec) + 116px);
  }
  .placeholder-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-top: 16px; }
  .placeholder-content { background: var(--cream); padding: var(--sec) 0; }
  .placeholder-box {
    max-width: 720px; margin: 0 auto; text-align: center;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--r); padding: 60px 48px;
  }
  .placeholder-box .ph-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--cream-2); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; color: var(--gold);
  }
  .placeholder-box h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; }
  .placeholder-box p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
  .placeholder-box .back-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 36px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--green); text-decoration: none; font-weight: 600;
    transition: gap .2s;
  }
  .placeholder-box .back-link:hover { gap: 14px; }

  /* ---------- INSCRIERI PAGE ---------- */
  .inscrieri-hero {
    background: var(--navy); color: #fff;
    padding: var(--sec) 0;
    padding-top: calc(var(--sec) + 116px);
    text-align: center;
  }
  .inscrieri-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-top: 16px; }
  .inscrieri-hero p { color: rgba(255,255,255,.68); max-width: 580px; margin: 18px auto 0; font-size: 1.05rem; }
  .inscrieri-steps { background: var(--cream); padding: var(--sec) 0; }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
  .step-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
    padding: 36px 30px;
  }
  .step-num {
    font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
    color: var(--gold); opacity: .35; line-height: 1; margin-bottom: 12px;
  }
  .step-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
  .step-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

  /* ---------- TESTIMONIALE ---------- */
  .testimonials-section { padding: var(--sec) 0; }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .test-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow .25s, transform .25s;
  }
  .test-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
  .test-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
  .test-quote { font-size: .92rem; line-height: 1.75; color: var(--navy); flex: 1; }
  .test-quote::before { content: '\201E'; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 6px; }
  .test-author { border-top: 1px solid var(--line); padding-top: 16px; }
  .test-author strong { display: block; font-size: .88rem; color: var(--navy); font-weight: 700; }
  .test-author span { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
  .test-grid-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  @media (max-width: 900px) {
    .test-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid-contact { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .test-grid { grid-template-columns: 1fr; }
    .test-grid-contact { grid-template-columns: 1fr; }
  }

  /* ---------- CONTACT PAGE ---------- */
  .contact-hero {
    background: var(--navy); color: #fff;
    padding: var(--sec) 0;
    padding-top: calc(var(--sec) + 116px);
    text-align: left;
  }
  .contact-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-top: 16px; }
  .contact-hero p { color: rgba(255,255,255,.68); max-width: 540px; margin: 18px 0 0; font-size: 1.05rem; }
  .contact-section { background: var(--cream); padding: var(--sec) 0; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--navy); margin-top: 14px; }
  .contact-info p { color: var(--muted); font-size: .97rem; margin-top: 16px; line-height: 1.75; }
  .contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
  .contact-detail { display: flex; gap: 14px; align-items: flex-start; }
  .contact-detail .cd-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: rgba(107,156,92,.08); border: 1px solid rgba(107,156,92,.14);
    display: flex; align-items: center; justify-content: center; color: var(--green);
  }
  .contact-detail h4 { font-family: 'Montserrat', sans-serif; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .contact-detail p { margin: 0; font-size: .95rem; color: var(--navy); }
  .contact-form-wrap {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
    padding: 44px 40px; box-shadow: var(--shadow);
  }
  .contact-form-wrap h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }

  /* Contact CTA cards */
  .contact-card-group { display: flex; flex-direction: column; gap: 20px; }
  .contact-cta-card {
    background: var(--cream); border: 1px solid var(--line);
    border-radius: var(--r); padding: 28px 32px;
  }
  .ccc-label {
    font-family: 'Montserrat', sans-serif; font-size: .72rem;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px;
  }
  .ccc-number {
    font-family: 'Playfair Display', serif; font-size: 1.6rem;
    color: var(--navy-deep); font-weight: 700; margin-bottom: 20px;
  }
  .ccc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .ccc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--r-sm);
    font-family: 'Montserrat', sans-serif; font-size: .85rem;
    font-weight: 600; text-decoration: none; transition: opacity .2s;
  }
  .ccc-btn:hover { opacity: .85; }
  .ccc-btn-wa { background: var(--green); color: #fff; }
  .ccc-btn-call { background: var(--navy); color: #fff; }

  /* ---------- COMUNITATE PAGE ---------- */
  .comunitate-hero {
    background: var(--green); color: #fff;
    padding: var(--sec) 0;
    padding-top: calc(var(--sec) + 116px);
    text-align: center;
  }
  .comunitate-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-top: 16px; }
  .comunitate-hero p { color: rgba(255,255,255,.68); max-width: 580px; margin: 18px auto 0; font-size: 1.05rem; }

  /* ---------- GENERIC PAGE SIDEBAR ---------- */
  .page-outer-layout {
    display: grid;
    grid-template-columns: 1fr 256px;
    align-items: start;
    gap: 0;
  }
  .page-main-col { min-width: 0; }

  .page-sidebar {
    padding: 40px 24px 40px 8px;
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .page-sidebar-inner {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 22px;
    box-shadow: 0 8px 32px -12px rgba(47,79,62,.10);
  }
  .page-sidebar-title {
    display: block;
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 700; color: var(--gold);
    margin-bottom: 16px;
  }
  .page-sidebar-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .88rem;
    color: var(--navy);
    border-left: 2px solid transparent;
    transition: background .15s, border-color .15s, color .15s;
    margin-bottom: 2px;
    line-height: 1.4;
  }
  .page-sidebar-link:hover {
    background: var(--cream);
    border-left-color: var(--gold);
    color: var(--navy);
  }
  .page-sidebar-link.active {
    background: var(--cream-2);
    border-left-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
  }
  .page-sidebar-cta {
    display: block; text-align: center;
    margin-top: 18px; width: 100%;
    box-sizing: border-box;
    font-size: .85rem;
  }

  @media (max-width: 1060px) {
    .page-outer-layout { grid-template-columns: 1fr; }
    .page-sidebar { display: none; }
  }

  /* ---------- EDUCATIA SIDEBAR LAYOUT ---------- */
  .edu-outer-layout {
    display: grid;
    grid-template-columns: 1fr 272px;
    align-items: start;
    gap: 0;
  }
  .edu-main-col { min-width: 0; grid-column: 1; grid-row: 1; }

  .edu-sidebar {
    grid-column: 2; grid-row: 1;
    padding: 40px 24px 40px 0;
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .edu-sidebar-inner {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 24px;
    box-shadow: 0 8px 32px -12px rgba(47,79,62,.10);
  }
  .edu-sidebar-title {
    display: block;
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 700; color: var(--gold);
    margin-bottom: 20px;
  }
  .edu-sidebar-link {
    display: flex; flex-direction: column; gap: 2px;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
    margin-bottom: 4px;
    border-left: 2px solid transparent;
  }
  .edu-sidebar-link:hover {
    background: var(--cream);
    border-left-color: var(--gold);
  }
  .edu-sidebar-age {
    font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
  }
  .edu-sidebar-name {
    font-family: 'Playfair Display', serif;
    font-size: .95rem; font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
  }
  .edu-sidebar-brand {
    font-size: .75rem; color: var(--muted);
  }
  .edu-sidebar-cta {
    display: block; text-align: center;
    margin-top: 20px; width: 100%;
    box-sizing: border-box;
  }

  @media (max-width: 1060px) {
    .edu-outer-layout { grid-template-columns: 1fr; }
    .edu-sidebar { display: none; }
  }

  /* ---------- EDUCATIA PAGE ---------- */
  .educatia-hero {
    background: var(--navy); color: #fff;
    padding: var(--sec) 0;
    padding-top: calc(var(--sec) + 116px);
    text-align: center;
  }
  .educatia-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-top: 16px; }
  .educatia-hero p { color: rgba(255,255,255,.68); max-width: 580px; margin: 18px auto 0; font-size: 1.05rem; }

  /* ---------- CRESA PAGE ---------- */
  .placeholder-hero .hero-sub {
    color: rgba(255,255,255,.65); font-size: 1.05rem;
    max-width: 520px; margin: 14px auto 0;
  }

  .cresa-intro { max-width: 720px; }
  .cresa-intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 16px 0 20px; }
  .cresa-intro p { color: var(--muted); line-height: 1.85; margin-bottom: 14px; }

  .cresa-play-section { padding: var(--sec) 0; }
  .cresa-play-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  .cresa-play-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin: 16px 0 14px; }
  .cresa-play-header p { color: rgba(255,255,255,.6); }

  .play-types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .play-types-grid .play-card {
    flex: 0 0 calc(25% - 15px);
  }
  .play-types-grid.col3 .play-card {
    flex: 0 0 calc(33.333% - 14px);
  }
  .play-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: 28px 24px;
    transition: background .2s, border-color .2s;
  }
  .play-card:hover { background: rgba(255,255,255,.09); border-color: rgba(2217,162,75,.3); }
  .play-icon {
    width: 48px; height: 48px;
    background: rgba(217,162,75,.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .play-card h4 { font-family: 'Playfair Display', serif; font-size: .95rem; color: #fff; margin-bottom: 8px; }
  .play-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }

  .cresa-pillars { }
  .cresa-pillar-intro { max-width: 600px; margin-bottom: 48px; }
  .cresa-pillar-intro h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin: 16px 0 16px; }
  .cresa-pillar-intro p { color: var(--muted); }

  .straturi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .strat-card {
    padding: 28px 24px; border-radius: var(--r);
    border: 1.5px solid var(--line-gold);
    background: var(--white);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .strat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
  .strat-label {
    font-size: .7rem; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold);
  }
  .strat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--navy); margin: 0 0 10px;
  }
  .strat-desc {
    font-size: .92rem; color: var(--muted); line-height: 1.6;
  }
  .strat-list {
    margin-top:12px; padding-left:0; list-style:none;
    display:flex; flex-direction:column; gap:6px;
  }
  .strat-list li {
    font-size:.88rem; font-weight:600; color:var(--navy);
    padding:6px 14px; border-left:3px solid var(--gold);
    background:rgba(217,162,75,.06);
  }
  @media (max-width: 768px) {
    .straturi-grid { grid-template-columns: 1fr; }
  }

  .cresa-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .cresa-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cresa-col { }
  .cresa-col-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--gold);
    opacity: 1;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cresa-col h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
  .cresa-col p { color: var(--muted); line-height: 1.8; font-size: .93rem; margin-bottom: 10px; }

  .day-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }
  .day-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin: 16px 0 14px; }

  .day-timeline { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
  .day-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .day-item:last-child { border-bottom: none; }
  .day-time {
    font-size: .78rem; letter-spacing: .1em;
    color: var(--gold);
    font-weight: 600;
    text-align: right;
    padding-right: 24px;
    border-right: 2px solid rgba(217,162,75,.35);
  }
  .day-content { display: flex; flex-direction: column; gap: 2px; }
  .day-content strong { color: var(--navy); font-size: .95rem; }
  .day-content span { color: var(--muted); font-size: .85rem; }

  /* ---------- TARIFE PAGE ---------- */
  .tarife-intro { max-width: 680px; margin-bottom: 48px; }
  .tarife-intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 16px 0 16px; }
  .tarife-intro p { color: var(--muted); }

  .tarife-table-wrap {
    overflow-x: auto;
    border-radius: var(--r);
    box-shadow: 0 8px 40px -12px rgba(47,79,62,.14);
    -webkit-overflow-scrolling: touch;
  }
  .tarife-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: var(--white);
    font-size: .93rem;
  }
  .tarife-table thead tr {
    background: var(--navy);
  }
  .tarife-table thead th {
    color: rgba(47,79,62,.7);
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 18px 24px;
    text-align: left;
    white-space: nowrap;
  }
  .tarife-table thead th:last-child { text-align: right; }

  .tarife-table tbody tr { border-bottom: 1px solid var(--line); }
  .tarife-table tbody tr:last-child { border-bottom: none; }
  .tarife-table .tr-divider td { border-top: 2px solid var(--cream-2); }

  .tarife-table td { padding: 18px 24px; vertical-align: middle; }

  .td-component { white-space: nowrap; }
  .comp-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px;
  }
  .comp-cresa    { background: rgba(107,156,92,.1);  color: var(--green); }
  .comp-gradinita{ background: rgba(47,79,62,.08); color: var(--navy); }
  .comp-centru   { background: rgba(217,162,75,.15); color: #8B6B2A; }

  .td-age { color: var(--muted); font-size: .88rem; white-space: nowrap; }

  .td-program { display: flex; flex-direction: column; gap: 3px; }
  .prog-label { font-weight: 600; color: var(--navy); }
  .prog-hours {
    font-size: .8rem; color: var(--muted);
    font-family: 'Montserrat', sans-serif;
  }

  .td-price { text-align: right; white-space: nowrap; }
  .price-from { display: block; font-size: .72rem; color: var(--muted); letter-spacing: .06em; margin-bottom: 2px; }
  .price-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--navy);
  }
  .price-unit { font-size: .78rem; color: var(--muted); margin-left: 4px; }
  .td-price-from .price-val { color: var(--gold); }

  .tarife-includes {
    margin-top: 20px;
    font-size: .95rem;
    color: var(--navy);
    font-weight: 500;
  }
  .tarife-masa-box {
    margin-top: 32px;
    padding: 32px 36px;
    background: var(--cream);
    border: 1px solid var(--line-gold);
    border-radius: var(--r);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  .tarife-masa-box .price-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--navy);
  }
  .tarife-masa-box .price-unit {
    font-size: 1rem;
    color: var(--muted);
    margin-left: 2px;
  }
  .tarife-masa-box p {
    width: 100%;
    margin: 8px 0 0;
    font-size: .9rem;
    color: var(--muted);
  }
  .tarife-note {
    margin-top: 8px;
    font-size: .82rem;
    color: var(--muted);
  }
  .tarife-cta-inline {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 24px;
  }

  @media (max-width: 680px) {
    .tarife-table thead th,
    .tarife-table tbody td { padding: 12px 14px; font-size: .85rem; }
    .price-val { font-size: 1.1rem; }
    .tarife-table-wrap::after {
      content: '← derulați →';
      display: block;
      text-align: center;
      font-size: .72rem;
      letter-spacing: .08em;
      color: var(--muted);
      padding: 8px 0 0;
    }
    .tarife-cta-inline { flex-direction: column; }
    .tarife-cta-inline .btn { text-align: center; }
  }
  @media (max-width: 480px) {
    .tarife-cards { grid-template-columns: 1fr; }
    .tarife-card { padding: 24px 20px; }
  }

  .tarife-info-section { padding: var(--sec) 0; }
  .tarife-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .tarife-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .tarife-card-icon {
    width: 44px; height: 44px;
    background: rgba(217,162,75,.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .tarife-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: #fff;
  }
  .tarife-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .tarife-card-price span {
    font-size: .85rem; font-weight: 400;
    color: rgba(255,255,255,.5);
    margin-left: 4px;
    font-family: 'Montserrat', sans-serif;
  }
  .tarife-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; }
  .tarife-card strong { color: #fff; }
  .tarife-card-link {
    margin-top: auto;
    font-size: .8rem; font-weight: 600;
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: .04em;
  }
  .tarife-card-link:hover { color: var(--gold); }

  @media (max-width: 980px) {
    .tarife-cards { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .tarife-cards { grid-template-columns: 1fr; }
  }

  /* ---------- CALENDARUL SCOLAR ---------- */
  .cal-intro { max-width: 720px; }
  .cal-intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 16px 0 20px; }
  .cal-intro p { color: var(--muted); line-height: 1.8; }

  .cal-section { padding: var(--sec) 0; }
  .cal-grid { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }

  .cal-module {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r) var(--r) 0 0;
    padding: 28px 32px;
    display: flex;
    align-items: stretch;
    border-bottom: none;
  }
  .cal-module + .cal-vacanta { margin-top: 0; }
  .cal-mod-header { display: flex; align-items: center; gap: 20px; }
  .cal-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(217,162,75,.12);
    border: 1px solid rgba(217,162,75,.28);
    border-radius: 8px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cal-module h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
  .cal-dates { font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }

  .cal-vacanta {
    background: rgba(217,162,75,.08);
    border: 1px solid rgba(217,162,75,.22);
    border-radius: 0 0 var(--r) var(--r);
    padding: 18px 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cal-vac-inner { display: flex; align-items: center; gap: 12px; color: var(--gold-light); }
  .cal-vac-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: block; margin-bottom: 2px; }
  .cal-vac-dates { font-size: .88rem; color: rgba(47,79,62,.7); }
  .cal-elite-note {
    display: flex; align-items: center; gap: 6px;
    font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
    color: var(--gold);
    background: rgba(217,162,75,.1);
    border: 1px solid rgba(217,162,75,.25);
    border-radius: 20px;
    padding: 6px 14px;
    white-space: nowrap;
  }

  /* last module — no vacation after it, close bottom */
  .cal-grid .cal-module:last-child { border-radius: var(--r); border-bottom: 1px solid rgba(255,255,255,.08); }

  .tabere-note {
    display: flex; align-items: flex-start; gap: 28px;
    background: var(--white);
    border: 1.5px solid var(--gold-light);
    border-radius: var(--r);
    padding: 36px 40px;
    max-width: 760px;
  }
  .tabere-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(217,162,75,.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
  }
  .tabere-note h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--navy); }
  .tabere-note p { color: var(--muted); line-height: 1.8; }
  .tabere-note a { color: var(--gold); text-decoration: underline; }

  /* ---------- RESPONSIVE NEW PAGES ---------- */
  @media (max-width: 880px) {
    .overview-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .subpage-nav { top: 68px; }
    .play-types-grid .play-card,
    .play-types-grid.col3 .play-card { flex: 0 0 calc(50% - 10px); }
    .cresa-3col { grid-template-columns: 1fr; gap: 40px; }
    .day-item { grid-template-columns: 130px 1fr; }
  }
  @media (max-width: 600px) {
    .cresa-2col { grid-template-columns: 1fr; }
    .overview-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    .placeholder-box { padding: 40px 24px; }
    .cal-module, .cal-vacanta { padding: 20px 20px; }
    .tabere-note { flex-direction: column; padding: 28px 24px; }
    .cal-elite-note { white-space: normal; }
    .play-types-grid .play-card,
    .play-types-grid.col3 .play-card { flex: 0 0 100%; }
    .day-item { grid-template-columns: 1fr; gap: 4px; }
    .day-time { text-align: left; border-right: none; border-bottom: 1px solid rgba(217,162,75,.2); padding-right: 0; padding-bottom: 6px; }
  }

  /* ========== FAQ PAGE ========== */

  .faq-cat-hd {
    text-align: center;
    margin-bottom: 56px;
  }
  .faq-cat-hd h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    margin-top: 0;
    color: var(--navy);
  }
  .faq-cat-hd--light h2 { color: #fff; }
  .faq-cat-hd--light .rule { background: var(--gold-light); }

  .faq-cat-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 28px -8px rgba(217,162,75,.5);
  }
  .faq-cat-icon svg {
    width: 28px; height: 28px;
    stroke: var(--navy-deep); stroke-width: 1.8;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
  }
  .faq-cat-icon--light {
    background: rgba(217,162,75,.12);
    box-shadow: none;
    border: 1px solid rgba(217,162,75,.35);
  }
  .faq-cat-icon--light svg { stroke: var(--gold-light); }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .faq-grid--single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }

  .faq-card {
    background: #fff;
    border-radius: var(--r);
    padding: 32px 28px 30px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 28px -8px rgba(31,58,44,.10);
    display: flex; flex-direction: column; gap: 15px;
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px -12px rgba(31,58,44,.18);
  }
  .faq-card--dark {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(217,162,75,.22);
    border-top: 3px solid var(--gold);
    box-shadow: none;
  }
  .faq-card--dark:hover {
    background: rgba(255,255,255,.1);
    box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
  }

  .faq-card-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.04rem; font-weight: 600;
    color: var(--navy); line-height: 1.5; margin: 0;
  }
  .faq-card--dark .faq-card-q { color: #fff; }

  .faq-card-line {
    display: block;
    width: 36px; height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .faq-card-a {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.82; margin: 0;
  }
  .faq-card--dark .faq-card-a { color: rgba(255,255,255,.68); }
  .faq-card-a a { color: var(--gold); text-decoration: none; font-weight: 600; }
  .faq-card-a a:hover { color: var(--navy); }
  .faq-card--dark .faq-card-a a:hover { color: var(--gold-light); }

  .faq-bottom-cta {
    text-align: center;
    padding: 56px 40px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(217,162,75,.2);
    border-radius: var(--r);
    margin-top: 64px;
  }
  .faq-bottom-cta p { color: rgba(255,255,255,.7); margin-top: 10px; font-size: .95rem; }
  .faq-bottom-cta .btn-row { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  @media (max-width: 720px) {
    .faq-grid { grid-template-columns: 1fr; }
    .faq-card { padding: 24px 20px; }
    .faq-bottom-cta { padding: 40px 24px; }
  }

  /* =====================================================
     MOBILE OPTIMIZATIONS — toate paginile
     ===================================================== */

  /* 1. Subpage nav — sticky corect sub contact-bar + nav */
  .subpage-nav { top: 116px; } /* 36px contact bar + 80px nav */
  @media (max-width: 880px) {
    .subpage-nav { top: 104px; } /* 36px contact bar + 68px nav */
  }
  @media (max-width: 880px) {
    /* Fade + chevron indicator scroll dreapta */
    .subpage-nav-inner {
      box-shadow: inset -48px 0 20px -8px var(--cream-2);
      transition: box-shadow .3s;
    }
    .subpage-nav-inner.scrolled-end {
      box-shadow: none;
    }
    .subnav-scroll-hint {
      position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--gold); color: var(--navy-deep);
      display: flex; align-items: center; justify-content: center;
      pointer-events: none; transition: opacity .3s;
      font-size: .75rem; font-weight: 700; line-height: 1;
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
    }
    .subnav-scroll-hint.hidden { opacity: 0; }
  }

  /* 2. Text overflow fix — toate elementele text */
  h1, h2, h3, p, li, a, span {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  h1, h2, h3 { hyphens: auto; }
  * { min-width: 0; }

  @media (max-width: 600px) {
    /* Homepage hero */
    .hero h1 { font-size: clamp(1.45rem, 6vw, 2rem); line-height: 1.14; }
    .hero-sub { font-size: .92rem; }

    /* Toate subpage heroes */
    .placeholder-hero h1,
    .despre-hero h1,
    .inscrieri-hero h1,
    .contact-hero h1,
    .comunitate-hero h1,
    .educatia-hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.9rem); }

    /* Hero min-height redus pe mobile */
    .placeholder-hero { min-height: 300px !important; }

    /* Tipografie secțiuni */
    h2 { font-size: clamp(1.25rem, 5vw, 1.8rem); }
    h3 { font-size: clamp(1.05rem, 4vw, 1.35rem); }

    /* Containere — nu depășesc ecranul */
    .container { max-width: 100%; }
    .hero-inner { max-width: 100%; }

    /* Contact widget */
    #contact-widget { right: 96px; bottom: 20px; gap: 6px; }
    #contact-widget a { width: 38px; height: 38px; }

    /* Astro panel */
    #astro-panel { width: calc(100vw - 24px); right: 12px; }
  }

  @media (max-width: 480px) {
    /* Contact bar — ascunde emailul */
    .contact-bar a:last-child { display: none; }

    /* Hero și mai compact */
    .placeholder-hero h1,
    .despre-hero h1,
    .inscrieri-hero h1,
    .contact-hero h1,
    .comunitate-hero h1,
    .educatia-hero h1 { font-size: clamp(1.2rem, 5.5vw, 1.55rem); }
    .hero h1 { font-size: clamp(1.3rem, 6vw, 1.75rem); }

    /* Contact widget */
    #contact-widget { right: 80px; gap: 5px; }
    #contact-widget a { width: 34px; height: 34px; }
    #contact-widget a svg { width: 15px; height: 15px; }

    /* Grid-uri 1 coloană */
    .faq-grid { grid-template-columns: 1fr; }
  }

  /* 3. Subpage nav — scroll touch */
  .subpage-nav-inner {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .subpage-nav-inner a { scroll-snap-align: start; }

  /* 4. Imagini — nu depășesc containerul */
  img { max-width: 100%; height: auto; }

  /* 5. Butoane CTA — full width pe mobil mic */
  @media (max-width: 480px) {
    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btns .btn { width: 100%; text-align: center; justify-content: center; }
  }

  /* 6. Footer — coloane pe mobil */
  @media (max-width: 600px) {
    .foot-top { flex-direction: column; gap: 32px; }
    .foot-eco { display: flex; flex-direction: column; gap: 10px; }
  }
