/* ============================================
   ELIZABETH WEIDO  - DESIGN SYSTEM
   Power-professional. Rounded. Refined.
   Navy #0A1A2F | Mint #A8E6CF | Gold #D4AF37
   ============================================ */

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

/* ===================================================
   PRELOADER / SPLASH SCREEN
   =================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://assets.cdn.filesafe.space/3jB2DaexgWSzuSh84NMy/media/69e6dfa36da81710db183219.png') center center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}
.preloader-logo {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.preloader-logo img {
    height: 48px;
    width: auto;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-figures {
    position: relative;
    z-index: 1;
    width: min(480px, 72vw);
    aspect-ratio: 1243 / 368;
}
.preloader-figure {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.preloader-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.preloader-figure.visible { opacity: 1; }


body.loading { overflow: hidden; }

:root {
    --navy: #122D4F;
    --navy-mid: #1A3A60;
    --navy-light: #224670;
    --mint: #A8E6CF;
    --mint-light: #d6f3e6;
    --mint-xlight: #edf9f3;
    --mint-dark: #6fcca3;
    --gold: #C8A84E;
    --gold-soft: #bfa04a;
    --white: #FFFFFF;
    --cream: #F9FAF8;
    --text-dark: #0f1923;
    --text-body: #3d4f5f;
    --text-muted: #6b7d8d;
    --border: rgba(10,26,47,0.07);
    --shadow-xs: 0 1px 3px rgba(10,26,47,0.03);
    --shadow-sm: 0 4px 12px rgba(10,26,47,0.04);
    --shadow-md: 0 12px 36px rgba(10,26,47,0.06);
    --shadow-lg: 0 24px 56px rgba(10,26,47,0.08);
    --shadow-xl: 0 36px 72px rgba(10,26,47,0.1);
    --radius: 28px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --radius-pill: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.35s var(--ease); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.45s var(--ease);
}

/* Transparent on hero pages */
.nav.nav-light:not(.scrolled) { background: transparent; }

/* Solid on interior pages + after scroll */
.nav.nav-dark,
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 42px;
    width: auto;
    transition: filter 0.4s ease;
}
.nav.nav-light:not(.scrolled) .nav-logo img {
    filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links > li > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav.nav-light:not(.scrolled) .nav-links > li > a {
    color: rgba(255,255,255,0.8);
}
.nav.nav-light:not(.scrolled) .nav-links > li > a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.nav.nav-dark .nav-links > li > a,
.nav.scrolled .nav-links > li > a {
    color: var(--text-body);
}
.nav.nav-dark .nav-links > li > a:hover,
.nav.scrolled .nav-links > li > a:hover {
    color: var(--navy);
    background: var(--mint-xlight);
}

/* CTA button in nav */
.nav-links .nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-pill) !important;
}
.nav.nav-light:not(.scrolled) .nav-links .nav-cta {
    background: var(--mint) !important;
    color: var(--navy) !important;
}
.nav-links .nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(10,26,47,0.2) !important;
}

.nav-links .nav-external {
    color: var(--gold) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a .dropdown-arrow {
    width: 10px; height: 10px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 8px;         /* invisible bridge so hover doesn't break */
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
    z-index: 100;
}
.nav-dropdown-menu-inner {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 40px rgba(10,26,47,0.12);
    border: 1px solid var(--border);
    padding: 8px;
    transform: translateY(6px);
    transition: transform 0.25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-dropdown:hover .nav-dropdown-menu-inner {
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    color: var(--text-body) !important;
    border-radius: 8px;
    white-space: nowrap;
    background: transparent !important;
}
.nav-dropdown-menu a:hover {
    background: var(--mint-xlight) !important;
    color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav.nav-light:not(.scrolled) .hamburger span { background: #fff; }
.nav.nav-dark .hamburger span,
.nav.scrolled .hamburger span { background: var(--navy); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 96px 32px 40px;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: block;
}
.mobile-menu .mob-sub {
    padding-left: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
}
.mobile-menu .mob-cta {
    display: inline-block;
    margin-top: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    text-align: center;
    font-weight: 700;
    border-bottom: none;
}

/* ===================================================
   PAGE HERO (interior pages)
   =================================================== */
.page-hero {
    padding: 150px 0 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 100%, rgba(168,230,207,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 10%, rgba(200,168,78,0.04) 0%, transparent 50%);
}
.page-hero-content {
    position: relative; z-index: 1;
    max-width: 640px;
}

.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb svg {
    width: 12px; height: 12px;
    stroke: rgba(255,255,255,0.25);
    fill: none; stroke-width: 2;
}

.page-hero .section-eyebrow { color: var(--gold); }
.page-hero .section-eyebrow::before { background: var(--gold); }

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.page-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--mint);
}
.page-hero p {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.58);
    max-width: 500px;
    line-height: 1.85;
}

/* ===================================================
   SECTION SYSTEM
   =================================================== */
.section { padding: 100px 0; }
.section-lg { padding: 120px 0; }

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}
.section-eyebrow.center { justify-content: center; }

.section-heading {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.section-heading em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}
.section-heading.center { text-align: center; }
.section-heading.white { color: var(--white); }

.section-subtext {
    font-size: 0.98rem;
    color: var(--text-body);
    max-width: 520px;
    line-height: 1.85;
}
.section-subtext.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gold-line {
    width: 36px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 18px 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ===================================================
   BUTTONS  - pill-shaped, confident
   =================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(10,26,47,0.2);
}

.btn-mint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--mint);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.btn-mint:hover {
    background: var(--mint-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(168,230,207,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid var(--navy);
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 14px; height: 14px;
    stroke: currentColor; stroke-width: 2.5;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* ===================================================
   CARDS  - soft, rounded
   =================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* ===================================================
   QUOTE BLOCK
   =================================================== */
.quote-block {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.12rem;
    color: var(--navy);
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin: 28px 0;
    line-height: 1.75;
}

/* ===================================================
   ICON BOX  - circle
   =================================================== */
.icon-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle-mint { background: var(--mint-light); }
.icon-circle svg {
    width: 22px; height: 22px;
    stroke: var(--navy);
    stroke-width: 1.5;
    fill: none;
}

/* ===================================================
   FORMS
   =================================================== */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mint-dark);
    box-shadow: 0 0 0 4px rgba(168,230,207,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.35s var(--ease);
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10,26,47,0.2);
}

/* ===================================================
   VISUAL BREAK / PHOTO INTERSTITIAL
   =================================================== */
.visual-break {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.visual-break img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.visual-break-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(18,45,79,0.6) 0%,
        rgba(18,45,79,0.45) 40%,
        rgba(18,45,79,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 32px;
}
.visual-break-content {
    max-width: 640px;
}
.visual-break-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 16px;
}
.visual-break-content cite {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-style: normal;
}

/* Split visual (image + text side by side) */
.split-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
}
.split-visual-img {
    position: relative;
    overflow: hidden;
}
.split-visual-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.split-visual-content {
    display: flex;
    align-items: center;
    padding: 60px 64px;
}
.split-visual-content.bg-navy {
    background: var(--navy);
    color: var(--white);
}
.split-visual-content.bg-cream {
    background: var(--cream);
}
.split-visual-content.bg-mint {
    background: var(--mint-xlight);
}
.split-visual-inner .section-eyebrow {
    margin-bottom: 12px;
}
.split-visual-inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.split-visual-content.bg-navy h2 { color: var(--white); }
.split-visual-content.bg-navy .section-eyebrow { color: rgba(255,255,255,0.45); }
.split-visual-inner p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 20px;
}
.split-visual-content.bg-navy p { color: rgba(255,255,255,0.6); }
.split-visual-inner .btn-mint,
.split-visual-inner .btn-outline {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .visual-break { height: 300px; }
    .split-visual {
        grid-template-columns: 1fr;
    }
    .split-visual-img { height: 280px; }
    .split-visual-content { padding: 48px 32px; }
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(168,230,207,0.08) 0%, transparent 60%);
}
.cta-banner h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}
.cta-banner h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--mint);
}
.cta-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
    font-size: 0.84rem;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}
.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer h4 {
    color: rgba(255,255,255,0.8);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
}
.footer-links a:hover { color: var(--mint); }

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social a:hover {
    background: var(--mint);
    transform: translateY(-2px);
}
.footer-social svg {
    width: 15px; height: 15px;
    fill: rgba(255,255,255,0.6);
}
.footer-social a:hover svg { fill: var(--navy); }

.footer-compliance {
    padding: 28px 0;
    font-size: 0.68rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.22);
    text-align: center;
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===================================================
   UTILITY
   =================================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 72px 0; }
    .section-lg { padding: 88px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
    .btn-primary, .btn-mint, .btn-outline, .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    padding: 18px 0;
    transform: translateY(100%);
    transition: transform 0.45s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.cookie-banner-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    flex: 1;
}
.cookie-banner-text a {
    color: var(--mint);
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cookie-btn-accept {
    background: var(--mint);
    color: var(--navy);
}
.cookie-btn-accept:hover {
    background: var(--mint-dark);
}
.cookie-btn-manage {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn-manage:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.cookie-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 520px;
    width: 90%;
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
}
.cookie-modal h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.cookie-modal p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 28px;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}
.cookie-category-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}
.cookie-category-info span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
}
/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.cookie-toggle-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--mint-dark);
}
.cookie-toggle input:checked + .cookie-toggle-slider::after {
    transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: default;
}
.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.cookie-modal-actions .cookie-btn {
    flex: 1;
    text-align: center;
}
.cookie-modal-actions .cookie-btn-accept {
    background: var(--navy);
    color: #fff;
}
.cookie-modal-actions .cookie-btn-accept:hover {
    background: var(--navy-mid);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 24px;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-modal {
        padding: 28px;
    }
}
