/* =========================================================================
   Orientation Express — Marketing site shared stylesheet
   Train/boarding-pass aesthetic. Navy + gold + cream paper.
   ========================================================================= */

:root {
    --navy: #031c4e;
    --navy-deep: #02153b;
    --gold: #d4af37;
    --gold-dark: #b08c2e;
    --gold-soft: rgba(212, 175, 55, 0.18);
    --paper: #f6f1e3;
    --paper-deep: #ece4cb;
    --coral: #c8654a;
    --mint: #5fa888;
    --line: rgba(3, 28, 78, 0.12);
    --line-strong: rgba(3, 28, 78, 0.22);
    --ink: #1a1a1a;
    --ink-soft: rgba(3, 28, 78, 0.62);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--navy);
    background: #fff;
    font-size: 16px;
    line-height: 1.55;
    text-wrap: pretty;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; letter-spacing: -0.005em; }
.mono  { font-family: 'DM Mono', ui-monospace, monospace; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============ EYEBROW / TICKET LABEL ============ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy);
}
.eyebrow::before {
    content: "";
    width: 18px;
    height: 1.5px;
    background: var(--gold);
}

.part-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}
.part-label.navy { background: var(--navy); color: var(--gold); }
.part-label.outline { background: transparent; color: var(--navy); border: 1px solid var(--line-strong); }
.part-label.wip { background: var(--coral); color: #fff; }
.part-label.live { background: var(--mint); color: #fff; }

/* ============ TOP BAR ============ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--navy);
}
.brand-mark .crest {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'DM Mono', monospace;
}
.nav { display: flex; align-items: center; gap: 16px; font-size: 14px; white-space: nowrap; }
.nav a { color: var(--navy); opacity: 0.78; transition: opacity 0.15s; }
.nav a:hover, .nav a.is-active { opacity: 1; color: var(--navy); }
.nav a.is-active { font-weight: 600; }
.topbar-actions { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
}
.lang-switch button {
    border: 0;
    background: transparent;
    color: var(--navy);
    opacity: 0.55;
    padding: 5px 10px;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    text-transform: uppercase;
    transition: all 0.18s;
}
.lang-switch button.is-active {
    background: var(--navy);
    color: var(--gold);
    opacity: 1;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.18s, background 0.18s;
    white-space: nowrap;
    line-height: 1;
    font-family: inherit;
}
.btn.primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 3px 0 var(--gold-dark);
}
.btn.primary:hover { background: #e0bf4f; transform: translateY(-1px); box-shadow: 0 4px 0 var(--gold-dark); }
.btn.dark {
    background: var(--navy);
    color: var(--gold);
    box-shadow: 0 3px 0 var(--navy-deep);
}
.btn.dark:hover { background: #043068; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn.ghost:hover { border-color: var(--navy); }
.btn .arrow { display: inline-block; transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ============ HERO ============ */
.hero {
    position: relative;
    background: var(--paper);
    overflow: hidden;
    padding: 80px 0 120px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg,
            rgba(212, 175, 55, 0.05) 0 8px,
            transparent 8px 22px);
    pointer-events: none;
}
.hero::after {
    /* horizontal rails at bottom */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background:
        linear-gradient(to bottom,
            transparent 0,
            transparent 38px,
            rgba(3, 28, 78, 0.2) 38px,
            rgba(3, 28, 78, 0.2) 40px,
            transparent 40px,
            transparent 58px,
            rgba(3, 28, 78, 0.2) 58px,
            rgba(3, 28, 78, 0.2) 60px,
            transparent 60px);
    opacity: 0.5;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-inner.single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.hero-inner.single .hero-eyebrow-row,
.hero-inner.single .hero-cta-row,
.hero-inner.single .hero-trust {
    justify-content: center;
}
.hero-inner.single .hero-lede { margin-left: auto; margin-right: auto; }

.hero-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(48px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.022em;
    color: var(--navy);
    margin: 0 0 22px;
}
.hero h1 em {
    font-style: italic;
    color: var(--navy);
    background:
        linear-gradient(transparent 70%, var(--gold-soft) 70% 96%, transparent 96%);
    padding: 0 0.05em;
}
.hero-lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 0 36px;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--ink-soft);
}
.hero-trust .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 3px rgba(95, 168, 136, 0.18);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(95, 168, 136, 0.18); }
    50% { box-shadow: 0 0 0 6px rgba(95, 168, 136, 0.05); }
}

/* ============ BOARDING PASS ============ */
.boarding-pass {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    box-shadow:
        0 3px 0 rgba(3, 28, 78, 0.05),
        0 24px 40px -20px rgba(3, 28, 78, 0.25);
    overflow: hidden;
}
.boarding-pass::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg,
            rgba(212, 175, 55, 0.05) 0 8px,
            transparent 8px 16px);
    pointer-events: none;
    opacity: 0.5;
}
.bp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--navy);
    color: var(--paper);
}
.bp-head .bp-route {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--gold);
}
.bp-head .bp-route .iata {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15em;
}
.bp-head .bp-route .arrow { color: var(--gold); opacity: 0.7; }
.bp-body {
    position: relative;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    border-bottom: 1.5px dashed var(--line-strong);
}
.bp-perf {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
    display: flex;
    gap: 0;
    pointer-events: none;
}
.bp-perf::before, .bp-perf::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--paper);
}
.bp-perf::before { transform: translateX(-50%); }
.bp-perf::after  { transform: translateX(50%); }

.bp-row { display: flex; flex-direction: column; gap: 4px; }
.bp-row .k {
    font-family: 'DM Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.bp-row .v {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.05;
}
.bp-row .v.small { font-size: 18px; }
.bp-foot { padding: 18px 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.bp-stations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    position: relative;
}
.bp-stations .rail {
    flex: 1;
    margin: 0 12px;
    position: relative;
    height: 14px;
}
.bp-stations .rail::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1.5px;
    background: var(--line-strong);
    transform: translateY(-50%);
}
.bp-stations .rail .stop {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--navy);
}
.bp-stations .rail .stop.s1 { left: 0; background: var(--gold); border-color: var(--gold-dark); }
.bp-stations .rail .stop.s2 { left: 35%; }
.bp-stations .rail .stop.s3 { left: 70%; }
.bp-stations .rail .stop.end { left: 100%; background: var(--navy); }
.bp-stations .rail .pulse {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 var(--gold);
    animation: stationPulse 2.6s ease-out infinite;
}
@keyframes stationPulse {
    0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55); }
    80%  { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.bp-barcode { display: flex; align-items: end; gap: 1.5px; height: 36px; padding-top: 4px; }
.bp-barcode span {
    display: block;
    background: var(--navy);
    width: 2px;
    height: 100%;
    opacity: 0.8;
}
.bp-barcode span:nth-child(3n) { width: 1px; opacity: 0.4; }
.bp-barcode span:nth-child(5n) { width: 3px; opacity: 1; }
.bp-barcode span:nth-child(7n) { width: 1px; }
.bp-stamp {
    position: absolute;
    top: 22px;
    right: -14px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    box-shadow: 0 4px 18px rgba(3, 28, 78, 0.18);
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    line-height: 1.05;
    font-size: 13px;
    padding: 6px;
}
.bp-stamp::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1.5px dashed rgba(3, 28, 78, 0.28);
}

/* ============ SECTION BASE ============ */
section { padding: 110px 0; }
section.tight { padding: 80px 0; }
section.paper { background: var(--paper); }
section.navy { background: var(--navy); color: var(--paper); }

.section-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 56px;
}
.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.018em;
    margin: 18px 0 0;
    color: var(--navy);
}
section.navy .section-head h2 { color: var(--paper); }
.section-head p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
    max-width: 560px;
}
section.navy .section-head p { color: rgba(246, 241, 227, 0.72); }

/* ============ AUDIENCE PICKER ("Welke wagon ben jij?") ============ */
.audience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.aud-card {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
    cursor: pointer;
}
.aud-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(212,175,55,0.06) 0 8px, transparent 8px 22px);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.aud-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 18px 38px -22px rgba(3, 28, 78, 0.25); }
.aud-card:hover::before { opacity: 1; }
.aud-stub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1.5px dashed var(--line-strong);
    position: relative;
}
.aud-stub::before, .aud-stub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--line);
}
.aud-stub::before { left: -38px; }
.aud-stub::after  { right: -38px; }
.aud-num {
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    text-transform: uppercase;
}
.aud-iata {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    color: var(--navy);
    letter-spacing: 0.16em;
    font-weight: 500;
}
.aud-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 30px;
    margin: 0;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.012em;
}
.aud-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    flex: 1;
}
.aud-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}
.aud-cta .arrow { transition: transform 0.18s; }
.aud-card:hover .aud-cta { color: var(--gold-dark); }
.aud-card:hover .aud-cta .arrow { transform: translateX(4px); }

/* ============ COMPARISON BLOCK ============ */
.compare {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.compare > div {
    padding: 36px 32px 32px;
    position: relative;
}
.compare > div + div {
    border-left: 1.5px dashed var(--line-strong);
}
.compare h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.1;
    letter-spacing: -0.012em;
}
.compare .col-them h3 { color: var(--ink-soft); }
.compare .col-us h3 { color: var(--navy); }
.compare .col-label {
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.compare .col-them .col-label { color: var(--coral); }
.compare .col-us .col-label    { color: var(--gold-dark); }
.compare ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.compare li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
}
.compare li::before {
    content: "";
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    border: 1.5px solid var(--line-strong);
    background: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}
.compare .col-them li { color: var(--ink-soft); }
.compare .col-them li::before {
    border-color: var(--coral);
    background-image: linear-gradient(45deg, transparent 44%, var(--coral) 44% 56%, transparent 56%), linear-gradient(-45deg, transparent 44%, var(--coral) 44% 56%, transparent 56%);
}
.compare .col-us li { color: var(--navy); }
.compare .col-us li::before {
    border-color: var(--mint);
    background-color: var(--mint);
    background-image: linear-gradient(45deg, transparent 45%, #fff 45% 55%, transparent 55%), linear-gradient(-45deg, transparent 55%, #fff 55% 65%, transparent 65%);
    background-size: 10px 8px;
    background-position: 4px 4px, 4px 4px;
}

/* ============ PRODUCTS LINEUP ============ */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 32px;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -22px rgba(3, 28, 78, 0.25); }
.product-card.featured {
    grid-column: span 2;
    background: var(--paper);
    min-height: 320px;
}
.product-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(212,175,55,0.05) 0 8px, transparent 8px 22px);
    pointer-events: none;
}
.product-card.dim { background: #fafaf6; opacity: 0.95; }
.pc-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.pc-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1;
}
.product-card.featured .pc-name { font-size: 42px; }
.pc-kicker {
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}
.pc-body { position: relative; z-index: 1; color: var(--ink-soft); font-size: 15px; line-height: 1.55; flex: 1; }
.pc-foot { position: relative; z-index: 1; margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pc-foot a { font-size: 14px; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.pc-foot a:hover { color: var(--gold-dark); }
.pc-meta { font-family: 'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* ============ PILLARS ============ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px 30px;
    position: relative;
    overflow: hidden;
}
section.navy .pillar {
    background: rgba(246, 241, 227, 0.04);
    border-color: rgba(212, 175, 55, 0.22);
    color: var(--paper);
}
.pillar .num {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pillar .num::before {
    content: "";
    width: 16px;
    height: 1.5px;
    background: var(--gold);
}
.pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.012em;
}
section.navy .pillar h3 { color: var(--paper); }
.pillar p { margin: 0; font-size: 15px; line-height: 1.55; }
section.navy .pillar p { color: rgba(246, 241, 227, 0.7); }

/* ============ PERSONAS ============ */
.personas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}
.persona {
    position: relative;
    padding: 36px 32px;
    border-right: 1.5px dashed var(--line-strong);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.persona:last-child { border-right: 0; }
.persona .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--navy);
    font-size: 22px;
    position: relative;
}
.persona .avatar::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1.5px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.55;
}
.persona h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: var(--navy);
    line-height: 1.05;
}
.persona .role { font-family: 'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); }
.persona p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.persona .quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--navy);
    border-left: 2px solid var(--gold);
    padding-left: 12px;
    margin: 8px 0;
    line-height: 1.4;
}

/* ============ PRICING ============ */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-ticket {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.price-ticket.featured {
    background: var(--paper);
    border-color: var(--gold);
    box-shadow: 0 3px 0 var(--gold-dark);
}
.price-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 26px; background: var(--navy); color: var(--paper); }
.price-head .badge { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.price-head .save { background: var(--gold); color: var(--navy); border-radius: 3px; padding: 3px 9px; font-family: 'DM Mono', monospace; font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.price-body { padding: 32px 30px 22px; position: relative; }
.price-body::after { content: ""; position: absolute; bottom: 0; left: 16px; right: 16px; border-bottom: 1.5px dashed var(--line-strong); }
.price-body .label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.price-body .name { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--navy); margin-bottom: 18px; }
.price-body .amount { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.03em; display: inline-flex; align-items: baseline; gap: 6px; }
.price-body .amount .cur { font-size: 30px; color: var(--gold-dark); }
.price-body .amount .per { font-family: 'DM Mono', monospace; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-left: 6px; font-weight: 400; }
.price-body .sub { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.price-perks { padding: 24px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; list-style: none; margin: 0; }
.price-perks li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.price-perks li::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 14px; height: 14px;
    margin-top: 3px;
    border-radius: 3px;
    background: var(--gold);
    background-image:
        linear-gradient(45deg, transparent 45%, var(--navy) 45% 55%, transparent 55%),
        linear-gradient(-45deg, transparent 55%, var(--navy) 55% 65%, transparent 65%);
    background-size: 10px 8px;
    background-repeat: no-repeat;
    background-position: 2px 3px, 2px 3px;
}
.price-cta { padding: 0 30px 30px; }
.price-cta .btn { width: 100%; justify-content: center; }

/* ============ TESTIMONIALS ============ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
section.navy .testimonial {
    background: rgba(246, 241, 227, 0.05);
    border-color: rgba(246, 241, 227, 0.18);
    color: var(--paper);
}
.testimonial .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 60px;
    font-weight: 600;
    color: var(--gold);
    line-height: 0.6;
    margin-bottom: -28px;
}
.testimonial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.35;
    color: var(--navy);
    margin: 0;
    flex: 1;
}
section.navy .testimonial p { color: var(--paper); }
.testimonial .attrib {
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px dashed var(--line-strong);
    padding-top: 16px;
    margin-top: auto;
}
section.navy .testimonial .attrib { border-color: rgba(246, 241, 227, 0.22); }
.testimonial .who { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.2; }
section.navy .testimonial .who { color: var(--paper); }
.testimonial .who span {
    display: block;
    font-weight: 400;
    font-size: 12.5px;
    color: var(--ink-soft);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.1em;
    margin-top: 3px;
}
section.navy .testimonial .who span { color: rgba(246, 241, 227, 0.55); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 880px; margin: 0 auto; }
.faq {
    border-top: 1.5px dashed var(--line-strong);
    padding: 22px 8px;
    cursor: pointer;
    list-style: none;
}
.faq:last-child { border-bottom: 1.5px dashed var(--line-strong); }
.faq summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    color: var(--gold-dark);
    transition: transform 0.18s;
    flex-shrink: 0;
}
.faq[open] summary::after { content: "−"; }
.faq p {
    margin: 12px 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 720px;
}

/* ============ CTA BAND ============ */
.cta-band {
    position: relative;
    background: var(--navy);
    color: var(--paper);
    padding: 92px 0 100px;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0 8px, transparent 8px 22px);
}
.cta-band-inner { position: relative; text-align: center; }
.cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.0;
    margin: 18px 0 14px;
    color: var(--paper);
    letter-spacing: -0.015em;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p {
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(246, 241, 227, 0.78);
}
.cta-band .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn.ghost { color: var(--paper); border-color: rgba(212, 175, 55, 0.45); }
.cta-band .btn.ghost:hover { border-color: var(--gold); }

/* ============ FOOTER ============ */
footer {
    background: var(--paper);
    padding: 64px 0 38px;
    position: relative;
}
footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 36px;
    background: radial-gradient(circle at 14px 0, transparent 8px, var(--paper) 9px) 0 0 / 28px 36px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1.5px dashed var(--line-strong);
}
.footer-grid h4 { font-family: 'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); margin: 0 0 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 14px; color: var(--navy); opacity: 0.8; }
.footer-grid a:hover { opacity: 1; color: var(--gold-dark); }
.footer-blurb { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 14px 0 0; max-width: 360px; }
.footer-legal {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
    text-transform: uppercase;
}
.footer-legal-links { display: inline-flex; gap: 12px; align-items: center; }
.footer-legal-links a { color: var(--ink-soft); border-bottom: 1px dashed transparent; transition: color 0.15s, border-color 0.15s; }
.footer-legal-links a:hover { color: var(--navy); border-bottom-color: var(--gold); }

/* ============ PAGE HEADER (sub-pages) ============ */
.page-hero {
    position: relative;
    background: var(--paper);
    overflow: hidden;
    padding: 80px 0 90px;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0 8px, transparent 8px 22px);
    pointer-events: none;
}
.page-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 22px 0 18px;
}
.page-hero h1 em {
    font-style: italic;
    background: linear-gradient(transparent 70%, var(--gold-soft) 70% 96%, transparent 96%);
    padding: 0 0.05em;
}
.page-hero .lede { font-size: 18px; color: var(--ink-soft); line-height: 1.55; max-width: 520px; margin: 0 0 30px; }

/* Stat strip (used on schools / parents) */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}
.stat-strip > div {
    padding: 28px 28px;
    border-right: 1.5px dashed var(--line-strong);
}
.stat-strip > div:last-child { border-right: 0; }
.stat-strip .big {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
    font-size: 64px;
    line-height: 0.88;
    letter-spacing: -0.03em;
}
.stat-strip .big sup { font-size: 22px; color: var(--navy); font-family: 'DM Mono', monospace; font-weight: 500; opacity: 0.7; vertical-align: top; margin-left: 4px; letter-spacing: 0.12em; font-style: normal; }
.stat-strip .lbl {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}

/* Feature rows: alternating image / text blocks */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 0 0 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse > :first-child { order: 2; }
.feature-row.reverse > :last-child  { order: 1; }
.feature-row h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 14px 0 14px;
    color: var(--navy);
}
.feature-row p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.55; margin: 0 0 14px; }
.feature-row .ill {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-row .ill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(212,175,55,0.06) 0 8px, transparent 8px 22px);
    pointer-events: none;
}

/* ============ MOBILE NAV (hamburger + panel) ============ */
.nav-toggle { display: none; }
.mobile-nav { display: none; }
.nav-toggle {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 42px;
    height: 38px;
    padding: 0;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.6px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.topbar.is-open .nav-toggle span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.topbar.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.topbar.is-open .nav-toggle span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }
.mobile-nav {
    flex-direction: column;
    padding: 6px 28px 20px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(10px);
}
.mobile-nav .m-link {
    padding: 13px 2px;
    font-size: 16px;
    color: var(--navy);
    opacity: 0.85;
    border-bottom: 1px solid var(--line);
}
.mobile-nav .m-link:hover { opacity: 1; }
.mobile-nav .m-link.is-active { font-weight: 600; opacity: 1; }
.mobile-nav .m-actions { display: flex; gap: 10px; margin-top: 16px; }
.mobile-nav .m-actions .btn { flex: 1; justify-content: center; }

/* Collapse the 6-item nav into the hamburger before it crowds the bar */
@media (max-width: 1200px) {
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .topbar.is-open .mobile-nav { display: flex; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .hero { padding: 56px 0 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .boarding-pass { max-width: 480px; margin: 0 auto; }
    .section-head { grid-template-columns: 1fr; gap: 16px; }
    .audience, .products, .pillars, .testimonials, .pricing { grid-template-columns: 1fr; }
    .product-card.featured { grid-column: span 1; }
    .compare { grid-template-columns: 1fr; }
    .compare > div + div { border-left: 0; border-top: 1.5px dashed var(--line-strong); }
    .personas { grid-template-columns: 1fr; }
    .persona { border-right: 0; border-bottom: 1.5px dashed var(--line-strong); }
    .persona:last-child { border-bottom: 0; }
    .stat-strip { grid-template-columns: 1fr; }
    .stat-strip > div { border-right: 0; border-bottom: 1.5px dashed var(--line-strong); }
    .stat-strip > div:last-child { border-bottom: 0; }
    .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
    .feature-row.reverse > :first-child { order: 1; }
    .feature-row.reverse > :last-child  { order: 2; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 72px 0; }
}
@media (max-width: 580px) {
    .footer-grid { grid-template-columns: 1fr; }
    .topbar-actions .btn { display: none; }
    .topbar-inner { gap: 14px; }
    .brand-mark { font-size: 19px; }
}
