:root {
            --navy: #0d1235;
            --deep-blue: #111b4a;
            --royal: #1a2870;
            --gold: #c9a84c;
            --gold-light: #e2c170;
            --gold-pale: #f5e6c0;
            --purple-glow: #6b35c9;
            --white: #ffffff;
            --off-white: #f8f6f0;
            --text-muted: rgba(255,255,255,0.65);
            --text-body: #3a3a4a;
            --border-subtle: rgba(201,168,76,0.25);
            --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
            --shadow-deep: 0 20px 60px rgba(0,0,0,0.4);
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Jost', sans-serif;
            background: var(--off-white);
            color: var(--text-body);
            overflow-x: hidden;
        }

        /* ── NAVBAR ── */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(13,18,53,0.96);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: all 0.4s ease;
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 74px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .brand-seal {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            object-fit: cover;
            flex-shrink: 0;
        }

        .brand-text { line-height: 1.2; }
        .brand-text .name {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--white);
            font-weight: 600;
            display: block;
        }
        .brand-text .sub {
            font-size: 0.7rem;
            color: var(--gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--gold);
            color: var(--navy) !important;
            padding: 0.55rem 1.4rem;
            border-radius: 3px;
            font-weight: 600 !important;
            transition: background 0.3s ease, transform 0.2s ease !important;
        }

        .nav-cta:hover {
            background: var(--gold-light) !important;
            color: var(--navy) !important;
            transform: translateY(-1px);
        }

        .nav-cta::after { display: none !important; }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--navy);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 70% 50%, rgba(107,53,201,0.35) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.12) 0%, transparent 50%),
                linear-gradient(135deg, #0a0f2e 0%, #1a1050 50%, #0d1235 100%);
        }

        .hero-wave {
            position: absolute;
            inset: 0;
            background-image: url('back.png');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }

        .hero-grid-lines {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 8rem 2.5rem 6rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            width: 100%;
        }

        .hero-left {}

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .hero-eyebrow-line {
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .hero-eyebrow span {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-tagline {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1rem;
            max-width: 480px;
        }

        .hero-year-theme {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201,168,76,0.12);
            border: 1px solid var(--border-subtle);
            padding: 0.5rem 1rem;
            border-radius: 3px;
            margin-bottom: 2.5rem;
        }

        .hero-year-theme .flame { font-size: 1.2rem; }
        .hero-year-theme span {
            font-size: 0.8rem;
            color: var(--gold-pale);
            font-style: italic;
        }
        .hero-year-theme strong {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.85rem;
        }

        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

        .btn-gold {
            background: var(--gold);
            color: var(--navy);
            padding: 0.9rem 2rem;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.88rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201,168,76,0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 0.9rem 2rem;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.88rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-img-frame {
            position: relative;
        }

        .hero-img-frame::before {
            content: '';
            position: absolute;
            top: -16px; left: -16px;
            right: 16px; bottom: 16px;
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
        }

        .hero-img-frame img {
            width: 100%;
            max-width: 480px;
            height: auto;
            object-fit: contain;
            border-radius: 4px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .hero-banner-img {
            position: absolute;
            bottom: -2rem;
            left: -3rem;
            width: 200px;
            border-radius: 4px;
            border: 3px solid var(--navy);
            box-shadow: var(--shadow-deep);
            z-index: 2;
        }

        .hero-stat-cards {
            position: absolute;
            right: -2rem;
            top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 2;
        }

        .stat-card {
            background: rgba(13,18,53,0.92);
            border: 1px solid var(--border-subtle);
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            backdrop-filter: blur(12px);
            text-align: center;
        }

        .stat-card .num {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold);
            font-weight: 700;
            display: block;
        }

        .stat-card .label {
            font-size: 0.65rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero-scroll {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }

        /* ── SERVICE TIMES STRIP ── */
        .times-strip {
            background: var(--gold);
            padding: 1rem 2.5rem;
        }

        .times-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .time-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .time-icon { font-size: 1.1rem; }

        .time-item .day {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--navy);
        }

        .time-item .hour {
            font-size: 0.8rem;
            color: rgba(13,18,53,0.7);
            font-weight: 500;
        }

        .time-divider {
            width: 1px;
            height: 24px;
            background: rgba(13,18,53,0.2);
        }

        /* ── SECTION BASE ── */
        section { padding: 6rem 0; }

        .section-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1rem;
        }

        .section-label-line {
            width: 32px;
            height: 1px;
            background: var(--gold);
        }

        .section-label span {
            font-size: 0.72rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .section-title em { font-style: italic; color: var(--royal); }

        .section-sub {
            font-size: 1rem;
            color: #5a5a6a;
            line-height: 1.75;
            max-width: 560px;
        }

        /* ── ABOUT ── */
        .about { background: var(--off-white); }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-img-stack {
            position: relative;
        }

        .about-img-main {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 4px;
            display: block;
        }

        .about-img-accent {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 4px;
            border: 6px solid var(--off-white);
        }

        .about-badge {
            position: absolute;
            top: 2rem;
            left: -2rem;
            background: var(--navy);
            color: var(--white);
            padding: 1.25rem 1.5rem;
            border-radius: 4px;
            text-align: center;
            box-shadow: var(--shadow-deep);
        }

        .about-badge .year {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--gold);
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .about-badge .since {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        .about-text { padding: 1rem 0; }

        .about-mission {
            border-left: 3px solid var(--gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }

        .about-mission p {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.05rem;
            color: var(--royal);
            line-height: 1.7;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .value-pill {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: white;
            padding: 0.7rem 1rem;
            border-radius: 3px;
            border: 1px solid #e8e4d8;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--navy);
        }

        .value-pill::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ── SERVICES ── */
        .services { background: var(--navy); }

        .services .section-title { color: var(--white); }
        .services .section-sub { color: var(--text-muted); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .service-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(201,168,76,0.18);
            border-radius: 4px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 3px;
            height: 0;
            background: var(--gold);
            transition: height 0.4s ease;
        }

        .service-card:hover::before { height: 100%; }

        .service-card:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(201,168,76,0.4);
            transform: translateY(-4px);
        }

        .service-emoji {
            font-size: 2rem;
            margin-bottom: 1.25rem;
            display: block;
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .service-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1.25rem;
        }

        .service-time {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201,168,76,0.12);
            border: 1px solid var(--border-subtle);
            padding: 0.4rem 0.9rem;
            border-radius: 2px;
            font-size: 0.78rem;
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 0.06em;
        }

        /* ── EVENTS ── */
        .events { background: var(--off-white); }

        .events-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .event-card {
            background: var(--white);
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #e8e4d8;
            transition: all 0.4s ease;
        }

        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.12);
        }

        .event-header {
            background: var(--navy);
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .event-date-block {
            text-align: center;
            min-width: 60px;
        }

        .event-date-block .day {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--gold);
            font-weight: 700;
            line-height: 1;
            display: block;
        }

        .event-date-block .month {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 600;
        }

        .event-divider {
            width: 1px;
            height: 50px;
            background: rgba(201,168,76,0.3);
        }

        .event-header-title {
            font-family: 'Playfair Display', serif;
            color: var(--white);
            font-size: 1.1rem;
            line-height: 1.3;
        }

        .event-body {
            padding: 1.5rem;
        }

        .event-body p {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .event-meta {
            font-size: 0.8rem;
            color: var(--royal);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* ── CONNECT ── */
        .connect { background: var(--deep-blue); }

        .connect .section-title { color: var(--white); }
        .connect .section-sub { color: var(--text-muted); }

        .connect-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .connect-card {
            position: relative;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(201,168,76,0.15);
            border-radius: 4px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .connect-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: var(--gold);
        }

        .connect-icon {
            width: 56px;
            height: 56px;
            background: rgba(201,168,76,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1.5rem;
            border: 1px solid var(--border-subtle);
        }

        .connect-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .connect-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1.75rem;
        }

        .btn-gold-sm {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
            padding: 0.6rem 1.5rem;
            border-radius: 3px;
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-gold-sm:hover {
            background: var(--gold);
            color: var(--navy);
        }

        /* ── CONTACT ── */
        .contact { background: var(--off-white); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info-stack {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-block { display: flex; gap: 1.25rem; align-items: flex-start; }

        .info-icon {
            width: 44px;
            height: 44px;
            background: var(--navy);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .info-block h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gold);
            margin-bottom: 0.3rem;
        }

        .info-block p, .info-block a {
            font-size: 0.92rem;
            color: var(--text-body);
            text-decoration: none;
            line-height: 1.6;
        }

        .info-block a:hover { color: var(--royal); }

        .social-row {
            display: flex;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--navy);
            color: var(--white);
            padding: 0.65rem 1.25rem;
            border-radius: 3px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background: var(--royal);
            transform: translateY(-2px);
        }

        .contact-form-wrap {
            background: var(--white);
            border: 1px solid #e8e4d8;
            border-radius: 6px;
            padding: 3rem;
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-field {
            margin-bottom: 1.25rem;
        }

        .form-field label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--navy);
            margin-bottom: 0.4rem;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1.5px solid #ddd;
            border-radius: 3px;
            font-family: 'Jost', sans-serif;
            font-size: 0.9rem;
            color: var(--text-body);
            background: #fafafa;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
            background: white;
        }

        .form-field textarea { resize: vertical; min-height: 120px; }

        .btn-submit {
            width: 100%;
            background: var(--navy);
            color: var(--white);
            padding: 1rem;
            border: none;
            border-radius: 3px;
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .btn-submit:hover {
            background: var(--royal);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(13,18,53,0.3);
        }

        /* ── FOOTER ── */
        .footer {
            background: var(--navy);
            padding: 0;
        }

        .footer-banner {
            width: 100%;
            height: 140px;
            object-fit: cover;
            object-position: center;
            display: block;
            opacity: 0.7;
        }

        .footer-body {
            padding: 4rem 2.5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .brand-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-top: 1rem;
        }

        .footer-col h5 {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--gold);
            margin-bottom: 1.25rem;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.6rem; }
        .footer-col a {
            font-size: 0.88rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col a:hover { color: var(--gold); }
        .footer-col p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

        .footer-bottom {
            border-top: 1px solid rgba(201,168,76,0.15);
            padding: 1.5rem 2.5rem;
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover { color: var(--gold); }

        /* ── TOAST ── */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--navy);
            color: var(--white);
            border: 1px solid var(--gold);
            padding: 1rem 1.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
            z-index: 9999;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-deep);
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; gap: 3rem; }
            .hero-right { display: none; }
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .about-img-stack { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: fixed; top: 74px; left: 0; right: 0; background: var(--navy); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
            .nav-links.open { display: flex; }
            .menu-toggle { display: flex; }
            .services-grid, .events-list, .connect-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .times-inner { flex-direction: column; gap: 1rem; }
            .time-divider { display: none; }
            .hero-stat-cards { display: none; }
            section { padding: 4rem 0; }
        }

        @media (max-width: 480px) {
            .nav-inner { padding: 0 1.25rem; }
            .section-wrap { padding: 0 1.25rem; }
            .contact-form-wrap { padding: 2rem 1.25rem; }
            .hero-content { padding: 7rem 1.25rem 5rem; }
        }