:root {
                --navy: #233C6B;
                --cream: #FEF6EC;
                --soft-bg: #fef8f6;
                --yellow: #F5C842;
                --red: #D94F3D;
                --pink: #F2A7B0;
                --text: #1a1a1a;
                --muted: #7a6f68;
            }

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

            body {
                background-color: var(--soft-bg);
                color: var(--text);
                font-family: "DM Sans", sans-serif;
                font-size: 16px;
                line-height: 1.6;
            }

            /* ── ANNOUNCEMENT BAR ── */
            .announcement-bar {
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--cream);
                font-weight: 700;
                font-size: 0.65em;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--navy);
                gap: 12px;
            }
            .announcement-bar span { color: var(--red); }

            /* ── HEADER ── */
            .site-header {
                background-color: var(--navy);
                padding: 14px 24px;
                position: sticky;
                top: 0;
                z-index: 100;
                box-shadow: 0 2px 12px rgba(35,60,107,0.18);
            }
            .header-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                max-width: 1200px;
                margin: 0 auto;
            }
            .header-left, .header-right {
                display: flex;
                align-items: center;
                gap: 8px;
                flex: 1;
            }
            .header-right { justify-content: flex-end; }
            .header-center {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 1;
            }
            .logo-text {
                font-family: "Fraunces", serif;
                color: var(--cream);
                font-size: 1.5rem;
                font-weight: 800;
                letter-spacing: -0.01em;
                line-height: 1.1;
                text-align: center;
            }
            .logo-text em {
                color: var(--yellow);
                font-style: normal;
            }
            .icon-btn {
                background: none;
                border: none;
                cursor: pointer;
                padding: 4px;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0.88;
                transition: opacity 0.2s;
            }
            .icon-btn:hover { opacity: 1; }
            .hamburger-btn { display: flex; }
            .desktop-nav {
                display: none;
                align-items: center;
                gap: 28px;
            }
            .desktop-nav a {
                color: var(--cream);
                text-decoration: none;
                font-weight: 600;
                font-size: 0.92rem;
                letter-spacing: 0.02em;
                opacity: 0.85;
                transition: opacity 0.2s;
            }
            .desktop-nav a:hover { opacity: 1; }
            .desktop-nav a.active { opacity: 1; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
            @media (min-width: 768px) {
                .hamburger-btn { display: none; }
                .desktop-nav { display: flex; }
            }

            /* ── PAGE HERO (smaller than home hero) ── */
            .page-hero {
                background-color: var(--navy);
                padding: 56px 24px 60px;
                position: relative;
                overflow: hidden;
                text-align: center;
            }
            .page-hero::before {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse at 70% 50%, rgba(245,200,66,0.10) 0%, transparent 65%),
                            radial-gradient(ellipse at 15% 80%, rgba(217,79,61,0.08) 0%, transparent 50%);
                pointer-events: none;
            }
            .page-hero-inner {
                position: relative;
                z-index: 1;
                max-width: 700px;
                margin: 0 auto;
            }
            .page-hero-eyebrow {
                display: inline-block;
                background: rgba(245,200,66,0.18);
                border: 1px solid rgba(245,200,66,0.4);
                color: var(--yellow);
                font-size: 0.78rem;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                padding: 5px 14px;
                border-radius: 20px;
                margin-bottom: 20px;
            }
            .page-hero h1 {
                font-family: "Fraunces", serif;
                font-size: clamp(2rem, 5vw, 3.2rem);
                font-weight: 900;
                color: var(--cream);
                line-height: 1.1;
                letter-spacing: -0.02em;
                margin-bottom: 16px;
            }
            .page-hero h1 em {
                color: var(--yellow);
                font-style: italic;
            }
            .page-hero p {
                font-size: 1.1rem;
                color: rgba(254,246,236,0.78);
                max-width: 480px;
                margin: 0 auto;
            }

            /* ── BREADCRUMB ── */
            .breadcrumb {
                background: var(--cream);
                border-bottom: 1px solid rgba(35,60,107,0.08);
                padding: 10px 24px;
            }
            .breadcrumb-inner {
                max-width: 1100px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 0.82rem;
                color: var(--muted);
            }
            .breadcrumb a {
                color: var(--navy);
                text-decoration: none;
                font-weight: 600;
            }
            .breadcrumb a:hover { text-decoration: underline; }
            .breadcrumb-sep { opacity: 0.4; }

            /* ── GENERAL SECTIONS ── */
            .section { padding: 72px 24px; }
            .section-inner { max-width: 1100px; margin: 0 auto; }
            .section-label {
                display: inline-block;
                font-size: 0.75rem;
                font-weight: 800;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: var(--red);
                margin-bottom: 10px;
            }
            .section-title {
                font-family: "Fraunces", serif;
                font-size: clamp(1.8rem, 4vw, 2.8rem);
                font-weight: 800;
                color: var(--navy);
                line-height: 1.15;
                letter-spacing: -0.02em;
                margin-bottom: 24px;
            }
            .section-title.centered { text-align: center; }
            .section-label.centered { display: block; text-align: center; }
            .section-body {
                font-size: 1.05rem;
                color: var(--muted);
                max-width: 680px;
                line-height: 1.75;
            }
            .section-body p + p { margin-top: 16px; }

            /* ── CONTENT PROSE (for text-heavy pages like About, FAQ) ── */
            .prose {
                max-width: 720px;
                margin: 0 auto;
                font-size: 1.05rem;
                line-height: 1.8;
                color: var(--text);
            }
            .prose h2 {
                font-family: "Fraunces", serif;
                font-size: 1.8rem;
                font-weight: 800;
                color: var(--navy);
                margin: 40px 0 14px;
                letter-spacing: -0.01em;
            }
            .prose h3 {
                font-family: "Fraunces", serif;
                font-size: 1.25rem;
                font-weight: 700;
                color: var(--navy);
                margin: 28px 0 10px;
            }
            .prose p { margin-bottom: 16px; color: var(--muted); }
            .prose ul, .prose ol {
                padding-left: 24px;
                margin-bottom: 16px;
                color: var(--muted);
            }
            .prose li { margin-bottom: 8px; }
            .prose a { color: var(--navy); font-weight: 600; }
            .prose a:hover { color: var(--red); }

            /* ── CARDS GRID (reusable) ── */
            .cards-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 24px;
                margin-top: 32px;
            }
            .card {
                background: white;
                border-radius: 20px;
                border: 1px solid rgba(35,60,107,0.07);
                box-shadow: 0 2px 16px rgba(35,60,107,0.05);
                padding: 32px 28px;
                transition: transform 0.2s, box-shadow 0.2s;
            }
            .card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 28px rgba(35,60,107,0.10);
            }
            .card-emoji { font-size: 2rem; margin-bottom: 14px; }
            .card h3 {
                font-family: "Fraunces", serif;
                font-size: 1.2rem;
                font-weight: 700;
                color: var(--navy);
                margin-bottom: 10px;
            }
            .card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

            /* ── BUTTONS ── */
            .btn-primary {
                background: var(--yellow);
                color: var(--navy);
                font-family: "DM Sans", sans-serif;
                font-weight: 800;
                font-size: 0.95rem;
                letter-spacing: 0.01em;
                padding: 14px 30px;
                border-radius: 50px;
                border: none;
                cursor: pointer;
                text-decoration: none;
                display: inline-block;
                transition: transform 0.18s, box-shadow 0.18s;
            }
            .btn-primary:hover { transform: translateY(-2px); }
            .btn-outline {
                background: transparent;
                color: var(--navy);
                font-family: "DM Sans", sans-serif;
                font-weight: 700;
                font-size: 0.95rem;
                padding: 13px 30px;
                border-radius: 50px;
                border: 2px solid rgba(35,60,107,0.25);
                cursor: pointer;
                text-decoration: none;
                display: inline-block;
                transition: border-color 0.18s, background 0.18s;
            }
            .btn-outline:hover { border-color: var(--navy); background: rgba(35,60,107,0.05); }
            .btn-navy {
                background: var(--navy);
                color: var(--cream);
                font-family: "DM Sans", sans-serif;
                font-weight: 700;
                font-size: 0.95rem;
                padding: 13px 28px;
                border-radius: 50px;
                border: none;
                cursor: pointer;
                text-decoration: none;
                display: inline-block;
                transition: opacity 0.18s;
            }
            .btn-navy:hover { opacity: 0.88; }

            /* ── DIVIDER ── */
            .divider {
                border: none;
                border-top: 1px solid rgba(35,60,107,0.08);
                margin: 0;
            }

            /* ── EMAIL SIGNUP ── */
            .email-section {
                background: var(--navy);
                padding: 72px 24px;
                text-align: center;
            }
            .email-inner { max-width: 560px; margin: 0 auto; }
            .email-section .section-title { color: var(--cream); margin-bottom: 12px; }
            .email-section p { color: rgba(254,246,236,0.75); margin-bottom: 28px; }
            .email-form {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .email-form input {
                flex: 1;
                min-width: 220px;
                padding: 13px 18px;
                border-radius: 50px;
                border: none;
                font-family: "DM Sans", sans-serif;
                font-size: 0.95rem;
                outline: none;
                background: rgba(254,246,236,0.12);
                color: var(--cream);
            }
            .email-form input::placeholder { color: rgba(254,246,236,0.45); }
            .email-form input:focus { background: rgba(254,246,236,0.18); }
            .email-note { font-size: 0.8rem; color: rgba(254,246,236,0.45); margin-top: 14px; }

            /* ── FOOTER ── */
            .site-footer {
                background: #1a2d52;
                color: var(--cream);
                padding: 56px 24px 28px;
            }
            .footer-inner { max-width: 1100px; margin: 0 auto; }
            .footer-top {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 40px;
                padding-bottom: 40px;
                border-bottom: 1px solid rgba(254,246,236,0.1);
            }
            @media (max-width: 768px) {
                .footer-top { grid-template-columns: 1fr 1fr; }
                .footer-brand { grid-column: 1 / -1; }
            }
            .footer-brand p {
                font-size: 0.9rem;
                color: rgba(254,246,236,0.55);
                margin-top: 12px;
                line-height: 1.65;
            }
            .footer-col h4 {
                font-size: 0.75rem;
                font-weight: 800;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                color: rgba(254,246,236,0.5);
                margin-bottom: 16px;
            }
            .footer-col a {
                display: block;
                color: rgba(254,246,236,0.8);
                text-decoration: none;
                font-size: 0.92rem;
                margin-bottom: 10px;
                transition: color 0.18s;
            }
            .footer-col a:hover { color: var(--yellow); }
            .footer-bottom {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 12px;
                padding-top: 24px;
                font-size: 0.82rem;
                color: rgba(254,246,236,0.4);
            }
            .footer-social { display: flex; gap: 20px; }
            .footer-social a {
                color: rgba(254,246,236,0.55);
                text-decoration: none;
                font-size: 0.85rem;
                font-weight: 600;
                transition: color 0.18s;
            }
            .footer-social a:hover { color: var(--yellow); }

            /* ── ANIMATIONS ── */
            @keyframes fadeUp {
                from { opacity: 0; transform: translateY(22px); }
                to   { opacity: 1; transform: translateY(0); }
            }

            /* ── MOBILE DRAWER ── */
            .drawer-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.45);
                z-index: 200;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            .drawer-overlay.open {
                display: block;
                opacity: 1;
            }
            .drawer {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 300px;
                max-width: 85vw;
                background: var(--navy);
                z-index: 201;
                display: flex;
                flex-direction: column;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                overflow-y: auto;
            }
            .drawer.open {
                transform: translateX(0);
            }
            .drawer-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 16px 20px;
                border-bottom: 1px solid rgba(254,246,236,0.1);
            }
            .drawer-logo {
                font-family: "Fraunces", serif;
                color: var(--cream);
                font-size: 1.1rem;
                font-weight: 800;
            }
            .drawer-logo em {
                color: var(--yellow);
                font-style: normal;
            }
            .drawer-close {
                background: none;
                border: none;
                cursor: pointer;
                padding: 4px;
                display: flex;
                align-items: center;
                opacity: 0.7;
                transition: opacity 0.2s;
            }
            .drawer-close:hover { opacity: 1; }
            .drawer-nav {
                display: flex;
                flex-direction: column;
                padding: 24px 20px;
                gap: 4px;
                flex: 1;
            }
            .drawer-nav a {
                color: var(--cream);
                text-decoration: none;
                font-size: 1.05rem;
                font-weight: 600;
                padding: 12px 14px;
                border-radius: 10px;
                transition: background 0.18s, color 0.18s;
                opacity: 0.85;
            }
            .drawer-nav a:hover {
                background: rgba(254,246,236,0.1);
                opacity: 1;
            }
            .drawer-nav a.active {
                background: rgba(245,200,66,0.15);
                color: var(--yellow);
                opacity: 1;
            }
            .drawer-divider {
                border: none;
                border-top: 1px solid rgba(254,246,236,0.1);
                margin: 8px 20px;
            }
            .drawer-social {
                display: flex;
                gap: 16px;
                padding: 20px 20px 32px;
            }
            .drawer-social a {
                color: rgba(254,246,236,0.55);
                text-decoration: none;
                font-size: 0.85rem;
                font-weight: 600;
                transition: color 0.18s;
            }
            .drawer-social a:hover { color: var(--yellow); }