*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --green:      #14ff72cb;
            --green-s:    #10e060;
            --gold:       #e8b86d;
            --purple:     #b07dff;
            --red:        #ff5252;
            --teal:       #5fe0c8;
            --orange:     #ff9f56;
            --dark:       #080808;
            --dark2:      #0f0f0f;
            --dark3:      #181818;
            --mid:        #252525;
            --border:     rgba(255,255,255,0.07);
            --text:       #e8e8e8;
            --muted:      #777;
            --white:      #fff;
            --glass:      rgba(255,255,255,0.05);
            --glass-b:    rgba(255,255,255,0.10);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: "Poppins", sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }

        /* ══════════════════════════════════════
           NAV
        ══════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 900;
            background: rgba(8,8,8,0.82);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }

        .nav-inner {
            max-width: 1200px;
            margin: auto;
            padding: 0 24px;
            height: 62px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 4px;
            color: var(--green-s);
        }

        .nav-links { display: flex; gap: 2px; }

        .nav-links a {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.05em;
            color: var(--muted);
            padding: 6px 14px;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: var(--green-s);
            color: #000;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block; width: 22px; height: 2px;
            background: #fff; border-radius: 2px; transition: 0.3s;
        }

        /* ══════════════════════════════════════
           HERO
        ══════════════════════════════════════ */
        .hero {
            height: 100vh;
            min-height: 640px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--dark2);
        }

        /* Kente-inspired geometric background */
        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(0deg,   transparent 0px, transparent 38px, rgba(232,184,109,0.06) 38px, rgba(232,184,109,0.06) 40px),
                repeating-linear-gradient(90deg,  transparent 0px, transparent 38px, rgba(20,255,114,0.04)  38px, rgba(20,255,114,0.04)  40px),
                repeating-linear-gradient(45deg,  transparent 0px, transparent 18px, rgba(176,125,255,0.03) 18px, rgba(176,125,255,0.03) 20px),
                repeating-linear-gradient(-45deg, transparent 0px, transparent 18px, rgba(255,82,82,0.03)   18px, rgba(255,82,82,0.03)   20px);
        }

        .hero-glow {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 20% 50%, rgba(232,184,109,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 80% 30%, rgba(176,125,255,0.09) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 60% 90%, rgba(20,255,114,0.07) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            padding-top: 80px;
            animation: fadeUp 1s 0.2s both;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
        }

        .hero-eyebrow::before,
        .hero-eyebrow::after {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--gold);
            opacity: 0.5;
        }

        .hero-title {
            font-size: clamp(4rem, 9vw, 8rem);
            font-weight: 900;
            line-height: 0.95;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 30px;
        }

        .hero-title .cursive {
            font-family: "Miniver", cursive;
            font-weight: 400;
            font-size: 0.85em;
            color: var(--gold);
            text-transform: none;
            letter-spacing: normal;
            display: block;
        }

        .hero-sub {
            font-size: 15px;
            font-family: "Lora", serif;
            font-style: italic;
            color: rgba(255,255,255,0.55);
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hero-stat .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .hero-stat .label {
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 9px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
            animation: fadeUp 1s 1.5s both;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(1); }
            50%       { opacity: 1;   transform: scaleY(1.2); }
        }

        /* ══════════════════════════════════════
           INTRO STRIP
        ══════════════════════════════════════ */
        .intro-strip {
            background: linear-gradient(135deg, #100c00 0%, #0a0a0a 100%);
            border-top: 1px solid rgba(232,184,109,0.15);
            border-bottom: 1px solid rgba(232,184,109,0.15);
            padding: 60px 40px;
            text-align: center;
        }

        .intro-strip p {
            max-width: 760px;
            margin: 0 auto;
            font-family: "Lora", serif;
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            line-height: 1.85;
            color: rgba(255,255,255,0.72);
        }

        .intro-strip strong { color: var(--gold); font-style: italic; }

        /* ══════════════════════════════════════
           FILTER TABS
        ══════════════════════════════════════ */
        .filter-wrap {
            position: sticky;
            top: 62px;
            z-index: 80;
            background: rgba(8,8,8,0.90);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

        .filter-inner {
            max-width: 1200px;
            margin: auto;
            padding: 0 24px;
            display: flex;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .filter-inner::-webkit-scrollbar { display: none; }

        .ftab {
            background: none;
            border: none;
            font-family: "Poppins", sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
            padding: 16px 20px;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.2s;
            position: relative;
        }

        .ftab::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 0; height: 2px;
            transition: width 0.3s;
        }

        .ftab.all::after    { background: var(--gold); }
        .ftab.north::after  { background: var(--purple); }
        .ftab.south::after  { background: var(--teal); }
        .ftab.east::after   { background: var(--red); }
        .ftab.west::after   { background: var(--orange); }
        .ftab.national::after { background: var(--green-s); }

        .ftab.active, .ftab:hover { color: var(--white); }
        .ftab.active::after, .ftab:hover::after { width: 70%; }

        /* ══════════════════════════════════════
           TIMELINE SECTION
        ══════════════════════════════════════ */
        .timeline-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 40px 120px;
        }

        .section-heading {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 80px;
        }

        .section-heading h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            color: var(--white);
        }

        .section-heading h2 span {
            font-family: "Miniver", cursive;
            color: var(--gold);
            font-weight: 400;
        }

        .section-rule {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--border), transparent);
        }

        /* ── THE TIMELINE ── */
        .timeline {
            position: relative;
            padding-left: 0;
        }

        /* Central spine */
        .timeline-spine {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom,
                transparent 0%,
                rgba(232,184,109,0.4) 5%,
                rgba(232,184,109,0.4) 95%,
                transparent 100%
            );
        }

        /* Year marker */
        .year-marker {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: center;
            margin: 60px 0 40px;
        }

        .year-badge {
            background: var(--gold);
            color: #000;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            padding: 6px 20px;
            border-radius: 2px;
        }

        /* Festival entry */
        .festival-entry {
            display: grid;
            grid-template-columns: 1fr 60px 1fr;
            gap: 0;
            align-items: start;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .festival-entry.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Left entry */
        .festival-entry.left .entry-card {
            grid-column: 1;
            grid-row: 1;
            margin-right: 40px;
        }

        .festival-entry.left .entry-node {
            grid-column: 2;
            grid-row: 1;
        }

        .festival-entry.left .entry-empty {
            grid-column: 3;
            grid-row: 1;
        }

        /* Right entry */
        .festival-entry.right .entry-empty {
            grid-column: 1;
            grid-row: 1;
        }

        .festival-entry.right .entry-node {
            grid-column: 2;
            grid-row: 1;
        }

        .festival-entry.right .entry-card {
            grid-column: 3;
            grid-row: 1;
            margin-left: 40px;
        }

        /* Node dot */
        .entry-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding-top: 36px;
            z-index: 5;
        }

        .node-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 3px solid;
            background: var(--dark);
            flex-shrink: 0;
            position: relative;
        }

        .node-dot::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px solid;
            opacity: 0.25;
        }

        /* Color by region */
        [data-region="north"] .node-dot { border-color: var(--purple); }
        [data-region="north"] .node-dot::after { border-color: var(--purple); }
        [data-region="south"] .node-dot { border-color: var(--teal); }
        [data-region="south"] .node-dot::after { border-color: var(--teal); }
        [data-region="east"]  .node-dot { border-color: var(--red); }
        [data-region="east"]  .node-dot::after { border-color: var(--red); }
        [data-region="west"]  .node-dot { border-color: var(--orange); }
        [data-region="west"]  .node-dot::after { border-color: var(--orange); }
        [data-region="national"] .node-dot { border-color: var(--green-s); }
        [data-region="national"] .node-dot::after { border-color: var(--green-s); }

        .node-month {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            writing-mode: vertical-lr;
            transform: rotate(180deg);
        }

        /* Card */
        .entry-card {
            background: var(--dark3);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.3s, transform 0.4s;
        }

        .entry-card:hover {
            transform: translateY(-5px);
        }

        [data-region="north"] .entry-card:hover { border-color: rgba(176,125,255,0.35); }
        [data-region="south"] .entry-card:hover { border-color: rgba(95,224,200,0.35); }
        [data-region="east"]  .entry-card:hover { border-color: rgba(255,82,82,0.35); }
        [data-region="west"]  .entry-card:hover { border-color: rgba(255,159,86,0.35); }
        [data-region="national"] .entry-card:hover { border-color: rgba(16,224,96,0.35); }

        /* Media area */
        .card-media {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .entry-card:hover .card-img {
            transform: scale(1.05);
        }

        /* Gradient colour background as placeholder */
        .card-img-bg {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            transition: transform 0.5s;
        }

        .entry-card:hover .card-img-bg {
            transform: scale(1.05);
        }

        /* Video embed area */
        .card-video {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #000;
        }

        .card-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .card-video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .card-video-placeholder:hover { background: rgba(255,255,255,0.04); }

        .play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255,255,255,0.10);
            border: 2px solid rgba(255,255,255,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .card-video-placeholder:hover .play-btn {
            background: var(--gold);
            border-color: var(--gold);
        }

        .play-btn svg {
            width: 22px;
            fill: #fff;
            margin-left: 4px;
        }

        .card-video-placeholder:hover .play-btn svg { fill: #000; }

        .video-label {
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* Media overlay tag */
        .media-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 2px;
            z-index: 5;
        }

        [data-region="north"]    .media-tag { background: rgba(176,125,255,0.85); color: #fff; }
        [data-region="south"]    .media-tag { background: rgba(95,224,200,0.85); color: #000; }
        [data-region="east"]     .media-tag { background: rgba(255,82,82,0.85); color: #fff; }
        [data-region="west"]     .media-tag { background: rgba(255,159,86,0.85); color: #000; }
        [data-region="national"] .media-tag { background: rgba(16,224,96,0.85); color: #000; }

        /* Card body */
        .card-body {
            padding: 22px 24px 28px;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .region-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        [data-region="north"]    .region-dot { background: var(--purple); }
        [data-region="south"]    .region-dot { background: var(--teal); }
        [data-region="east"]     .region-dot { background: var(--red); }
        [data-region="west"]     .region-dot { background: var(--orange); }
        [data-region="national"] .region-dot { background: var(--green-s); }

        .region-name {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        [data-region="north"]    .region-name { color: var(--purple); }
        [data-region="south"]    .region-name { color: var(--teal); }
        [data-region="east"]     .region-name { color: var(--red); }
        [data-region="west"]     .region-name { color: var(--orange); }
        [data-region="national"] .region-name { color: var(--green-s); }

        .card-month {
            font-size: 10px;
            color: var(--muted);
            letter-spacing: 0.05em;
        }

        .card-title {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.25;
            margin-bottom: 10px;
        }

        .card-people {
            font-size: 11px;
            font-style: italic;
            color: var(--gold);
            margin-bottom: 14px;
            font-family: "Lora", serif;
        }

        .card-desc {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255,255,255,0.55);
            margin-bottom: 20px;
        }

        /* Card footer */
        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }

        .card-location {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--muted);
        }

        .card-location svg {
            width: 12px;
            opacity: 0.6;
        }

        .card-expand {
            background: none;
            border: none;
            font-family: "Poppins", sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--gold);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .card-expand:hover { gap: 10px; }

        /* Expandable Details */
        .card-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .card-details.open {
            max-height: 400px;
            opacity: 1;
        }

        .details-inner {
            border-top: 1px solid var(--border);
            margin-top: 16px;
            padding-top: 16px;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            font-size: 12px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .detail-row:last-child { border-bottom: none; }

        .detail-key {
            font-weight: 600;
            color: var(--muted);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 10px;
            flex-shrink: 0;
            padding-right: 16px;
        }

        .detail-val {
            color: rgba(255,255,255,0.75);
            text-align: right;
            line-height: 1.5;
        }

        /* ══════════════════════════════════════
           GALLERY STRIP
        ══════════════════════════════════════ */
        .gallery-strip {
            background: var(--dark2);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 80px 40px;
            overflow: hidden;
        }

        .gallery-label {
            max-width: 1200px;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .gallery-label h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
        }

        .gallery-label span { color: var(--gold); font-family: "Miniver", cursive; }

        .gallery-track {
            display: flex;
            gap: 16px;
            animation: galleryScroll 40s linear infinite;
            width: max-content;
        }

        .gallery-track:hover { animation-play-state: paused; }

        @keyframes galleryScroll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        .gallery-item {
            width: 260px;
            height: 180px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            cursor: pointer;
        }

        .gallery-item-bg {
            width: 100%;
            height: 100%;
            transition: transform 0.4s;
            display: flex;
            align-items: flex-end;
        }

        .gallery-item:hover .gallery-item-bg { transform: scale(1.05); }

        .gallery-item-label {
            width: 100%;
            padding: 30px 14px 12px;
            background: linear-gradient(transparent, rgba(0,0,0,0.75));
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: #fff;
            text-transform: uppercase;
        }

        /* ══════════════════════════════════════
           QUOTE BANNER
        ══════════════════════════════════════ */
        .quote-section {
            padding: 100px 40px;
            text-align: center;
            background:
                radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,184,109,0.07) 0%, transparent 70%),
                var(--dark);
        }

        .quote-icon {
            font-family: "Miniver", cursive;
            font-size: 80px;
            color: var(--gold);
            opacity: 0.35;
            line-height: 0.5;
            display: block;
            margin-bottom: 32px;
        }

        .quote-text {
            max-width: 740px;
            margin: 0 auto 28px;
            font-family: "Lora", serif;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-style: italic;
            line-height: 1.65;
            color: rgba(255,255,255,0.88);
        }

        .quote-author {
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* ══════════════════════════════════════
           MAP SECTION
        ══════════════════════════════════════ */
        .map-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .map-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .map-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .map-text h2 em {
            font-family: "Miniver", cursive;
            font-weight: 400;
            color: var(--gold);
            font-style: normal;
        }

        .map-text p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255,255,255,0.55);
            margin-bottom: 30px;
        }

        .region-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .region-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: rgba(255,255,255,0.75);
        }

        .region-list li::before {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .region-list li.north::before  { background: var(--purple); }
        .region-list li.south::before  { background: var(--teal); }
        .region-list li.east::before   { background: var(--red); }
        .region-list li.west::before   { background: var(--orange); }
        .region-list li.national::before { background: var(--green-s); }

        /* Ghana SVG map */
        .map-visual {
            position: relative;
        }

        .map-svg-wrap {
            background: var(--dark3);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ghana-map {
            width: 100%;
            max-width: 320px;
        }

        /* Map region fills */
        .map-north   { fill: rgba(176,125,255,0.25); stroke: rgba(176,125,255,0.6); stroke-width: 1.5; }
        .map-south   { fill: rgba(95,224,200,0.25);  stroke: rgba(95,224,200,0.6);  stroke-width: 1.5; }
        .map-east    { fill: rgba(255,82,82,0.25);   stroke: rgba(255,82,82,0.6);   stroke-width: 1.5; }
        .map-west    { fill: rgba(255,159,86,0.25);  stroke: rgba(255,159,86,0.6);  stroke-width: 1.5; }
        .map-central { fill: rgba(232,184,109,0.20); stroke: rgba(232,184,109,0.5); stroke-width: 1.5; }

        /* ══════════════════════════════════════
           NEWSLETTER
        ══════════════════════════════════════ */
        .nl-section {
            background: linear-gradient(135deg, #0a1a0c 0%, #0a0a0a 100%);
            border-top: 1px solid var(--border);
            padding: 70px 40px;
        }

        .nl-inner {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .nl-inner h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .nl-inner p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 32px;
        }

        .nl-form {
            display: flex;
            justify-content: center;
            gap: 0;
        }

        .nl-form input {
            width: 280px;
            background: var(--mid);
            border: 1px solid var(--border);
            border-right: none;
            color: var(--white);
            font-family: "Poppins", sans-serif;
            font-size: 13px;
            padding: 14px 20px;
            outline: none;
            transition: border-color 0.2s;
        }

        .nl-form input:focus { border-color: rgba(20,255,114,0.4); }
        .nl-form input::placeholder { color: var(--muted); }

        .nl-form button {
            background: var(--green-s);
            border: none;
            color: #000;
            font-family: "Poppins", sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 14px 24px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .nl-form button:hover { background: var(--gold); }

        /* ══════════════════════════════════════
           FOOTER
        ══════════════════════════════════════ */
        footer {
            border-top: 1px solid var(--border);
            padding: 40px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-brand {
            font-size: 18px;
            font-weight: 900;
            letter-spacing: 4px;
            color: var(--white);
        }

        .footer-links {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }

        .footer-links a {
            font-size: 11px;
            color: var(--muted);
            padding: 5px 12px;
            border-radius: 4px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--green-s); }

        .footer-copy {
            font-size: 11px;
            color: var(--muted);
        }

        /* ══════════════════════════════════════
           MODAL
        ══════════════════════════════════════ */
        .modal-bg {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s;
            padding: 20px;
        }

        .modal-bg.open {
            opacity: 1;
            pointer-events: all;
        }

        .modal-box {
            background: var(--dark3);
            border: 1px solid var(--glass-b);
            border-radius: 6px;
            max-width: 680px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(30px) scale(0.97);
            transition: transform 0.35s;
            scrollbar-width: thin;
            scrollbar-color: var(--mid) transparent;
        }

        .modal-bg.open .modal-box {
            transform: translateY(0) scale(1);
        }

        .modal-header {
            position: relative;
            padding: 30px 30px 0;
        }

        .modal-close-btn {
            position: absolute;
            top: 16px; right: 16px;
            width: 34px; height: 34px;
            border-radius: 50%;
            background: var(--glass);
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }

        .modal-close-btn:hover { background: rgba(255,255,255,0.1); }

        .modal-region {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .modal-title {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .modal-subtitle {
            font-family: "Lora", serif;
            font-style: italic;
            font-size: 14px;
            color: var(--gold);
            margin-bottom: 24px;
        }

        .modal-body {
            padding: 0 30px 30px;
        }

        .modal-img {
            width: 100%;
            aspect-ratio: 16/8;
            border-radius: 4px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            overflow: hidden;
        }

        .modal-desc {
            font-size: 14px;
            line-height: 1.85;
            color: rgba(255,255,255,0.65);
            margin-bottom: 24px;
            font-family: "Lora", serif;
        }

        .modal-facts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .modal-fact {
            background: var(--dark2);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 14px 16px;
        }

        .modal-fact-key {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 5px;
        }

        .modal-fact-val {
            font-size: 13px;
            color: var(--white);
            line-height: 1.4;
        }

        /* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
        @media (max-width: 860px) {
            .timeline-spine { display: none; }

            .festival-entry,
            .festival-entry.left,
            .festival-entry.right {
                display: block;
            }

            .festival-entry .entry-empty { display: none; }

            .festival-entry.left .entry-card,
            .festival-entry.right .entry-card {
                margin: 0 0 12px;
            }

            .entry-node {
                flex-direction: row;
                padding-top: 0;
                padding-bottom: 16px;
                justify-content: flex-start;
            }

            .node-month {
                writing-mode: horizontal-tb;
                transform: none;
            }

            .map-grid { grid-template-columns: 1fr; }

            .hero-title { font-size: 3.5rem; }
        }

        @media (max-width: 600px) {
            .hero-content { padding: 0 20px; padding-top: 80px; }
            .timeline-section { padding: 60px 20px 80px; }
            .gallery-strip { padding: 60px 0; }
            .map-section { padding: 60px 20px; }
            .nl-form { flex-direction: column; align-items: center; }
            .nl-form input { width: 100%; max-width: 320px; border-right: 1px solid var(--border); }
            .modal-facts { grid-template-columns: 1fr; }
            .hamburger { display: flex; }
            .nav-links {
                display: none;
                position: fixed;
                top: 62px; left: 0; right: 0;
                background: rgba(8,8,8,0.97);
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                padding: 12px 16px;
                gap: 2px;
            }
            .nav-links.open { display: flex; }
            .nav-links a { display: block; padding: 10px 14px; }
            footer .footer-inner { flex-direction: column; text-align: center; }
        }

        .gallery-item-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* or whatever your design uses */
    overflow: hidden;
}

.gallery-item-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 14px;
}
