/* ============================================================
   Going Borderless — stylesheet (mockup build)
   Navy #0A1A2F · Cream #F5F1E8 · Gold #C9A24E
   Display: Montserrat · Body: Inter
   ============================================================ */

:root {
    --navy: #0A1A2F;          /* hero / featured / footer base */
    --navy-2: #0F2238;        /* category strip / newsletter */
    --navy-3: #13283F;        /* cards, raised surfaces */
    --navy-deep: #07131F;     /* footer base bar */
    --gold: #C9A24E;
    --gold-2: #DCBB73;        /* hover / lighter gold */
    --gold-ink: #836619;      /* deep gold for small text on light bg (WCAG AA) */
    --cream: #F5F1E8;         /* about background */
    --ink: #14233A;           /* dark text on cream */
    --muted: #5C6A7D;         /* muted body text on light */
    --muted-light: rgba(255, 255, 255, 0.66); /* muted on dark */
    --line-light: rgba(10, 26, 47, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);

    --maxw: 1200px;

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 18px;

    --ease: cubic-bezier(0.2, 0.6, 0.2, 1);

    --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

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

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: var(--navy);
    padding: 10px 16px; border-radius: 0 0 var(--r-md) 0;
    font-weight: 600; z-index: 200;
}
.skip-link:focus { left: 0; }

.eyebrow {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 12px;
}
.eyebrow::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.section-title.light { color: #fff; }

.section { padding: 92px 0; }

/* ============================================================
   Brand lockup (compass mark + stacked wordmark)
   ============================================================ */

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { flex: 0 0 auto; border-radius: 50%; }
.brand-word {
    display: flex; flex-direction: column;
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0.04em;
}
.brand-line-1 { color: #fff; font-size: 17px; }
.brand-line-2 { color: var(--gold); font-size: 17px; }

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 26, 47, 0.94);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line-dark);
}

.nav-row {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; gap: 24px;
}

.primary-nav {
    display: flex; align-items: center; gap: 28px; flex: 1;
    justify-content: flex-end;
}

.nav-list { display: flex; align-items: center; gap: 26px; }

.nav-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--font-head);
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.82);
    background: none; border: 0; padding: 6px 0; cursor: pointer;
    position: relative;
    transition: color 160ms var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--gold);
}
.caret { transition: transform 180ms var(--ease); }

/* dropdowns */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + 14px); left: -16px;
    min-width: 220px;
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-md);
    padding: 8px;
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms;
    z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.dropdown.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    transition: background 140ms var(--ease), color 140ms var(--ease);
}
.dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }

.nav-utils { display: flex; align-items: center; gap: 14px; padding-left: 6px; }
.icon-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    color: rgba(255,255,255,0.74);
    background: none; border: 0; cursor: pointer; padding: 0;
    border-radius: 50%;
    transition: color 160ms var(--ease), background 160ms var(--ease);
}
.icon-link:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.nav-toggle {
    display: none; width: 42px; height: 42px;
    background: transparent; border: 1px solid var(--line-dark);
    border-radius: var(--r-sm); cursor: pointer; padding: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; transition: 200ms var(--ease); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-head);
    font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em;
    line-height: 1; padding: 15px 26px;
    border-radius: var(--r-sm); border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.btn svg { transition: transform 160ms var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); color: var(--gold); transform: translateY(-1px); }

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 56%;
    z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.hero-media::after {
    /* blend the photo into navy on its left edge + slight bottom fade */
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, var(--navy) 0%, rgba(10,26,47,0.55) 28%, rgba(10,26,47,0) 60%),
        linear-gradient(0deg, rgba(10,26,47,0.45), transparent 40%);
}

.hero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-compass {
    position: absolute; top: 4%; right: 6%;
    width: clamp(180px, 22vw, 300px); height: auto;
    color: rgba(255,255,255,0.16);
}
.hero-plane {
    position: absolute; top: 16%; left: 34%;
    width: clamp(220px, 26vw, 360px); height: auto;
    color: var(--gold);
    opacity: 0.9;
}

.hero-inner { position: relative; z-index: 2; }
.hero-copy {
    max-width: 560px;
    padding: 120px 0 132px;
}
.hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(40px, 11vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    display: flex; flex-direction: column;
}
.hero-title .line-white { color: #fff; }
.hero-title .line-gold { color: var(--gold); }

.hero-sub {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    margin: 0 0 38px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Category strip
   ============================================================ */

.category-strip {
    background: var(--navy-2);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}
.category-row {
    display: flex;
    align-items: stretch;
}
.category-row li { flex: 1; display: flex; }
.category-row li + li { border-left: 1px solid var(--line-dark); }
.category-row a {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-align: center;
    padding: 30px 14px;
    width: 100%;
    color: rgba(255,255,255,0.82);
    font-family: var(--font-head);
    font-size: 11.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.07em;
    transition: color 160ms var(--ease), transform 200ms var(--ease);
}
.cat-icon { color: var(--gold); transition: transform 200ms var(--ease); }
.category-row a:hover { color: #fff; }
.category-row a:hover .cat-icon { transform: translateY(-3px); }

/* ============================================================
   About
   ============================================================ */

.about { background: var(--cream); }
.about .eyebrow { color: var(--gold-ink); } /* AA contrast on cream */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
}
.about-copy .section-title { margin-bottom: 22px; }
.about-copy p { color: var(--muted); margin: 0 0 18px; max-width: 46ch; }
.about-copy .btn { margin-top: 12px; }
.about-media img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: 0 30px 60px -28px rgba(10, 26, 47, 0.45);
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* ============================================================
   Featured
   ============================================================ */

.featured { background: var(--navy); }
.featured-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 44px;
}
.view-all {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head);
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold);
    white-space: nowrap;
    transition: gap 160ms var(--ease);
}
.view-all:hover { gap: 12px; }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    display: flex; align-items: flex-end;
    color: #fff;
    isolation: isolate;
}
.feature-img {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    transition: transform 500ms var(--ease);
}
.feature-card::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(0deg, rgba(7,19,31,0.92) 6%, rgba(7,19,31,0.45) 42%, rgba(7,19,31,0.1) 75%);
}
.feature-card:hover .feature-img { transform: scale(1.06); }
.feature-body { padding: 22px 20px 24px; }
.feature-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    padding: 5px 9px;
    margin-bottom: 14px;
}
.feature-card h3 {
    font-size: 18px; font-weight: 700; line-height: 1.25;
    margin: 0 0 10px;
    /* reserve 3 lines so tags align across cards regardless of title length */
    min-height: 3.75em;
}
.feature-date { font-size: 13px; color: rgba(255,255,255,0.62); margin: 0; }

/* ============================================================
   Newsletter
   ============================================================ */

.newsletter {
    background: var(--navy-2);
    border-top: 1px solid var(--line-dark);
}
.newsletter-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px; align-items: center;
}
.newsletter-copy { display: flex; gap: 22px; align-items: flex-start; }
.newsletter-icon {
    flex: 0 0 auto;
    width: 58px; height: 58px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.newsletter-copy .eyebrow { margin-bottom: 12px; }
.newsletter-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700; color: #fff; margin: 0 0 10px;
}
.newsletter-sub { color: var(--muted-light); margin: 0; max-width: 44ch; }

.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
    flex: 1 1 240px; min-width: 0;
    padding: 15px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-sm);
    color: #fff; font: inherit;
    transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus {
    outline: none; border-color: var(--gold); background: rgba(255,255,255,0.09);
}
.newsletter-fine { color: rgba(255,255,255,0.45); font-size: 13px; margin: 14px 0 0; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer { background: var(--navy-deep); color: var(--muted-light); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr 1.1fr 1fr 1fr;
    gap: 40px;
    padding: 72px 28px 52px;
    border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-tag {
    color: rgba(255,255,255,0.55);
    font-size: 14px; line-height: 1.6; margin: 0 0 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social .icon-link { width: 38px; height: 38px; border: 1px solid var(--line-dark); }

.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--gold); margin: 0 0 8px;
}
.footer-col a {
    color: rgba(255,255,255,0.66); font-size: 14.5px;
    transition: color 150ms var(--ease);
}
.footer-col a:hover { color: #fff; }

.footer-base {
    padding: 26px 28px;
    text-align: center;
    font-size: 13px; color: rgba(255,255,255,0.42);
}
.footer-base p { margin: 0; }

/* ============================================================
   Focus + reveal
   ============================================================ */

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; transition: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
    .category-row { flex-wrap: wrap; }
    .category-row li { flex: 1 1 25%; }
    .category-row li + li { border-left: 1px solid var(--line-dark); }
    .category-row li:nth-child(4n+1) { border-left: none; }

    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 920px) {
    .nav-toggle { display: inline-flex; order: 3; }

    .primary-nav {
        position: absolute; top: 76px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--navy-2);
        border-bottom: 1px solid var(--line-dark);
        padding: 12px 28px 22px;
        opacity: 0; transform: translateY(-12px); pointer-events: none;
        transition: opacity 180ms var(--ease), transform 180ms var(--ease);
    }
    .primary-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }

    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-list > li { border-bottom: 1px solid var(--line-dark); }
    .nav-link { width: 100%; justify-content: space-between; padding: 15px 2px; font-size: 15px; }
    .nav-link.is-active::after { display: none; }

    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; background: transparent;
        padding: 0 0 8px 14px; min-width: 0;
        display: none;
    }
    .dropdown.is-open { display: block; }
    .has-dropdown:hover .dropdown { /* disable hover-open on mobile */ }

    .nav-utils { padding: 16px 0 0; justify-content: flex-start; }

    /* hero stacks: copy on navy, photo as a band below */
    .hero-media { position: relative; width: 100%; height: 300px; }
    .hero-media::after {
        background: linear-gradient(0deg, rgba(10,26,47,0.55), transparent 60%);
    }
    .hero-copy { padding: 72px 0 60px; max-width: 100%; text-align: center; }
    .hero-title { align-items: center; }
    .hero-ctas { justify-content: center; }
    .hero-compass, .hero-plane { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-media { order: -1; }
    .about-copy p { max-width: none; }

    /* featured header stacks so "View All" sits cleanly under the title */
    .featured-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }

    /* newsletter: icon stacks above copy, form goes full-width */
    .newsletter-grid { grid-template-columns: 1fr; gap: 28px; }
    .newsletter-copy { flex-direction: column; gap: 16px; }
    .newsletter-form .btn { flex: 1 1 100%; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .category-row li { flex: 1 1 50%; }
    .category-row li:nth-child(4n+1) { border-left: 1px solid var(--line-dark); }
    .category-row li:nth-child(odd) { border-left: none; }
    .category-row a { padding: 24px 12px; gap: 10px; }
    .featured-grid { grid-template-columns: 1fr; }
    .feature-card h3 { min-height: 0; } /* full-width cards: no need to reserve title height */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { padding: 56px 20px 44px; }
    .hero-ctas .btn { flex: 1 1 100%; }
}

/* ============================================================
   Brevo honeypot (hidden anti-bot field)
   ============================================================ */
.brevo-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* ============================================================
   Sub-pages (Privacy / Thank you)
   ============================================================ */
.subpage-nav { display: flex; gap: 22px; align-items: center; }

.subpage-main {
    background: var(--cream);
    padding: 132px 0 90px;
    min-height: 70vh;
}
.legal { max-width: 760px; }
.legal .section-title { color: var(--navy); margin: 0 0 8px; }
.legal-updated { color: var(--muted); font-size: 14px; margin: 0 0 30px; }
.legal h2 {
    font-family: var(--font-head);
    font-size: 20px; font-weight: 700;
    color: var(--navy);
    margin: 34px 0 10px;
}
.legal p, .legal li { color: var(--ink); font-size: 16px; line-height: 1.75; }
.legal p a, .legal li a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal p a:hover, .legal li a:hover { color: var(--gold); }
.legal ul:not(.feature-list) { padding-left: 20px; margin: 0 0 16px; list-style: disc; }
.legal li { margin-bottom: 6px; }
.legal .feature-list li { margin-bottom: 0; }
.legal .btn { margin-top: 30px; }

.subpage-footer {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
}
.subpage-foot-links { display: flex; gap: 18px; }
.subpage-foot-links a { color: rgba(255,255,255,0.6); font-size: 14px; }
.subpage-foot-links a:hover { color: #fff; }

/* Thank-you page */
.thanks-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--navy); }
.thanks-hero {
    flex: 1; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 140px 24px 80px;
}
.thanks-content { max-width: 540px; }
.thanks-mark {
    width: 84px; height: 84px; margin: 0 auto 28px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.thanks-title {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 52px); font-weight: 800;
    color: #fff; margin: 0 0 16px; letter-spacing: -0.01em;
}
.thanks-title span { color: var(--gold); }
.thanks-desc { font-size: 18px; color: var(--muted-light); line-height: 1.7; margin: 0 0 32px; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.thanks-foot { padding: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.42); }

@media (max-width: 560px) {
    .thanks-actions { flex-direction: column; align-items: stretch; }
    .thanks-actions .btn { width: 100%; }
}

/* ============================================================
   Content inner pages (category / about / contact / etc.)
   ============================================================ */
.subpage-nav .nav-link.cta {
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 9px 18px;
    transition: background 160ms var(--ease), color 160ms var(--ease);
}
.subpage-nav .nav-link.cta:hover { background: var(--gold); color: var(--navy); }
.subpage-nav .nav-link.cta::after { display: none; }

.page-hero {
    background: var(--navy);
    color: #fff;
    padding: 124px 0 64px;
    border-bottom: 1px solid var(--line-dark);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 54px);
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 16px;
}
.page-lead {
    color: var(--muted-light);
    font-size: 18px;
    line-height: 1.7;
    max-width: 60ch;
    margin: 0;
}

.page-section { background: var(--cream); padding: 76px 0; }
.page-section .legal h2 { margin-top: 44px; }
.page-section .legal > h2:first-child { margin-top: 0; }

.feature-list { list-style: none; padding: 0; margin: 0 0 8px; }
.feature-list li {
    position: relative;
    padding: 14px 0 14px 30px;
    border-bottom: 1px solid var(--line-light);
    color: var(--ink);
    font-size: 16px;
}
.feature-list li::before {
    content: "";
    position: absolute;
    left: 4px; top: 21px;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.callout {
    background: #fff;
    border: 1px solid var(--line-light);
    border-left: 4px solid var(--gold);
    border-radius: var(--r-md);
    padding: 22px 24px;
    margin: 32px 0 0;
}
.callout p { margin: 0; color: var(--ink); }
.callout a { color: var(--navy); text-decoration: underline; }

.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.tile {
    display: block;
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: var(--r-md);
    padding: 22px 22px 20px;
    transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.tile:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 16px 36px -20px rgba(10,26,47,0.18); }
.tile h3 { font-family: var(--font-head); font-size: 18px; color: var(--navy); margin: 0 0 6px; }
.tile p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.page-cta { background: var(--navy-2); color: #fff; text-align: center; padding: 66px 0; }
.page-cta h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin: 0 0 12px; }
.page-cta p { color: var(--muted-light); margin: 0 0 26px; max-width: 48ch; margin-left: auto; margin-right: auto; }

/* FAQ accordion (native, accessible details/summary) */
.faq-section { padding-top: 0; }
.faq { margin-top: 8px; }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    padding: 16px 30px 16px 0;
    position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute; right: 2px; top: 12px;
    color: var(--gold-ink);
    font-size: 22px; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.faq .faq-a { padding: 0 0 18px; }
.faq .faq-a p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.7; }

@media (max-width: 640px) {
    .subpage-nav .nav-link:not(.cta) { display: none; }
    .page-hero { padding: 104px 0 52px; }
    .page-section { padding: 56px 0; }
}
