/* ============================================================
   FabrikateFest 2026 — Colorful Festive Styles
   ============================================================ */

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

img, video { max-width: 100%; }

:root {
    --purple: #7B00CC;   /* Fabrikate brand purple */
    --lime:   #88CC00;   /* Fabrikate logo lime green */
    --pink:   #E8006B;
    --teal:   #00C8B8;
    --coral:  #FF6B35;
    --dark:   #0A0A0A;   /* Fabrikate black */
    --white:  #FFFFFF;
    --nav-h:  64px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--purple);
    height: var(--nav-h);
    border-bottom: none;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.nav-logo span { color: var(--lime); }

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

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--lime); }

.nav-cta {
    background: var(--lime) !important;
    color: var(--dark) !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(136, 204, 0, 0.45) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #000000 0%, #2D006B 45%, #7B00CC 80%, #55008F 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 3rem) 1.5rem 5rem;
    box-sizing: border-box;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

/* Starfield */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 20%, rgba(255,230,0,0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 50%, rgba(0,212,200,0.4) 0%, transparent 100%);
    pointer-events: none;
}

.confetti-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    animation: confettiFall linear infinite;
    opacity: 0;
}

@keyframes confettiFall {
    0%   { transform: translateY(-40px) rotate(0deg);   opacity: 0; }
    5%   { opacity: 0.85; }
    95%  { opacity: 0.6; }
    100% { transform: translateY(110vh) rotate(800deg); opacity: 0; }
}


.hero-eyebrow {
    font-size: 1rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 11.5vw, 9.5rem);
    color: white;
    line-height: 0.9;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 80px rgba(136, 204, 0, 0.2), 0 4px 30px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

.hero-title span {
    color: var(--lime);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 3vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.hero-date {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--lime);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.hero-afterparty-box {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 0.5rem 1.1rem 0.5rem 0.6rem;
    margin-bottom: 1.75rem;
}

.hero-afterparty {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.45;
}

.hero-parcadia {
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.hero-parcadia:hover { opacity: 1; }
.hero-parcadia img {
    display: block;
    height: 48px;
    max-height: 48px;
    width: auto;
    max-width: 150px;
    mix-blend-mode: screen;
}
.hero-afterparty a {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-afterparty a:hover { color: white; }

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-grant {
    position: absolute;
    bottom: 1.5rem;
    left: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: rgba(255,255,255,0.88);
    border-radius: 8px;
    padding: 0.35rem 0.65rem 0.35rem 0.45rem;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 1;
}
.hero-grant:hover { opacity: 1; }
.hero-grant img {
    height: 40px;
    width: auto;
}
.hero-grant span {
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    max-width: 90px;
    line-height: 1.35;
}

/* ---- Countdown ---- */
.hero-countdown {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 0.4rem 1.1rem;
    margin-bottom: 0.9rem;
}
.cd-block { display: inline-flex; align-items: baseline; gap: 0.2rem; }
.cd-num {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    min-width: 1.6ch;
    text-align: right;
}
.cd-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.cd-sep {
    color: rgba(255,255,255,0.25);
    font-size: 0.9rem;
    align-self: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.hero-scroll-hint:hover { color: rgba(255,255,255,0.8); }

.scroll-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: lowercase;
}

.scroll-arrow {
    font-size: 1.1rem;
    animation: bounce 2.2s ease-in-out infinite;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--lime);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(136, 204, 0, 0.35);
}

.btn-primary:hover { box-shadow: 0 8px 30px rgba(136, 204, 0, 0.55); }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.55);
}

.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-outline:hover { background: var(--purple); color: white; }

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
}

.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.12); }

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    background: var(--lime);
    color: var(--dark);
}

.btn-small:hover { box-shadow: 0 4px 15px rgba(136,204,0,0.4); }

.btn-donate {
    background: var(--lime);
    color: var(--dark);
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    box-shadow: 0 4px 25px rgba(136, 204, 0, 0.4);
}

.btn-donate:hover { box-shadow: 0 10px 40px rgba(136, 204, 0, 0.6); }

.donate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-sponsor {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.45);
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
}

.btn-sponsor:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section {
    padding: 6rem 1.5rem;
    overflow-x: clip;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.05;
    color: white;
}

.section-title span { color: var(--lime); }

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* ============================================================
   STORY (merged about + community)
   ============================================================ */

.section-story {
    background: var(--dark);
}

.section-story .section-title { margin-bottom: 2.5rem; }


.story-text p {
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.story-text strong { color: var(--lime); }
.story-text em { color: var(--coral); font-style: italic; }

.story-text blockquote {
    border-left: 4px solid var(--lime);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(136, 204, 0, 0.08);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.story-sig {
    font-weight: 800;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem !important;
}

.story-sig a {
    color: var(--lime);
    text-decoration: none;
}

.story-sig a:hover { text-decoration: underline; }

/* ============================================================
   STORY ARTICLE LAYOUT
   ============================================================ */

.story-body {
    max-width: 720px;
    margin: 0 auto;
}

.story-text {
    margin: 1.75rem 0;
}

.story-text:first-child { margin-top: 0; }

.story-figure {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    min-width: 0;
}

.story-figure img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    max-height: 520px;
}

.story-photo-pair {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.story-photo-pair .story-figure {
    margin: 0;
}

.story-photo-pair .story-figure img {
    max-height: 340px;
}

.story-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.story-videos video {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #000;
}

.story-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.25);
    padding: 1.5rem 1.75rem;
    text-decoration: none;
    margin: 2rem 0;
    transition: border-color 0.2s, transform 0.2s;
}

.story-link-card:hover {
    border-color: rgba(136,204,0,0.5);
    transform: translateY(-2px);
}

.story-link-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin: 0;
}

.story-card-excerpt {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-style: italic;
}

.collage-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(136,204,0,0.12);
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    align-self: flex-start;
}

.collage-source {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

.collage-read {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.02em;
    padding-top: 0.25rem;
}

/* ============================================================
   GERTIE
   ============================================================ */

.section-gertie {
    background: linear-gradient(160deg, #000000 0%, #1A0040 50%, #7B00CC 100%);
    color: white;
}

.section-gertie .section-title { color: var(--lime); }
.section-gertie .section-subtitle { color: rgba(255,255,255,0.65); }

.gertie-collage {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.gertie-photo {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    min-width: 0;
    aspect-ratio: 4 / 3;
}

.gertie-photo img,
.gertie-photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gertie-photo:hover img,
.gertie-photo:hover video { transform: scale(1.04); }

/* ============================================================
   WHAT TO EXPECT
   ============================================================ */

.section-expect {
    background: linear-gradient(135deg, #7B00CC 0%, #3D0066 100%);
}

.section-expect .section-title { color: var(--lime); }
.section-expect .section-subtitle { color: rgba(255,255,255,0.75); }

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.expect-item {
    background: rgba(255,255,255,0.88);
    border-radius: 20px;
    padding: 2rem;
}

.expect-num {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.expect-item h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.expect-item p {
    color: rgba(26,10,46,0.72);
    font-size: 0.95rem;
    line-height: 1.65;
}

.expect-note {
    text-align: center;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.expect-note a {
    color: var(--lime);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================================
   GALLERY
   ============================================================ */

.section-gallery {
    background: #000000;
}

.section-gallery .section-title { color: var(--lime); }
.section-gallery .section-subtitle { color: rgba(255,255,255,0.55); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.gallery-item {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(13, 5, 32, 0.85));
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 4/3;
}

.gallery-cta {
    text-align: center;
}

.gallery-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.gallery-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   GET INVOLVED
   ============================================================ */

.section-involved {
    background: linear-gradient(150deg, #1A0040 0%, #7B00CC 100%);
}

.section-involved .section-title { }
.section-involved .section-subtitle { color: rgba(255,255,255,0.78); }

.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.involved-card {
    background: rgba(255,255,255,0.96);
    border-radius: 22px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.involved-icon {
    font-size: 2.75rem;
}

.involved-card h3 {
    font-weight: 800;
    color: var(--purple);   /* brand purple on white card */
    font-size: 1.1rem;
}

.involved-card p {
    color: rgba(26,10,46,0.7);
    line-height: 1.65;
    font-size: 0.9rem;
    flex: 1;
}

/* ============================================================
   DONATE
   ============================================================ */

.section-donate {
    background: linear-gradient(150deg, #000000 0%, #3D0066 50%, #7B00CC 100%);
}

.donate-box {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.donate-icon {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 1.25rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15%       { transform: scale(1.12); }
    30%       { transform: scale(1); }
    45%       { transform: scale(1.08); }
    60%       { transform: scale(1); }
}

.donate-box h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.donate-box h2 span { color: var(--lime); }

.donate-box p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    opacity: 0.92;
}

.donate-box p a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.donate-box p a:hover { color: white; }

.donate-small {
    font-size: 0.9rem !important;
    opacity: 0.75 !important;
    margin-bottom: 2rem !important;
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #000000;
    color: white;
    padding: 4rem 1.5rem 2.5rem;
    text-align: center;
    border-top: 3px solid var(--purple);
}

.footer-logo {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: white;
    margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--lime); }

.footer-tagline {
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.footer-location {
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.08);
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
}

.social-link-gofundme {
    background: rgba(136,204,0,0.15);
    border-color: rgba(136,204,0,0.35);
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer-grant {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    margin-top: 0.4rem;
}
.footer-grant a {
    color: rgba(255,255,255,0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-grant a:hover { color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .gertie-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .expect-grid   { grid-template-columns: 1fr; }
    .involved-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    :root { --nav-h: 56px; }

    .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--purple);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a { display: block; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links.open .nav-cta { margin-top: 0.75rem; text-align: center; border: none; }

    .nav-toggle { display: block; }

    .story-photo-pair,
    .story-videos { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .section      { padding: 4rem 1.25rem; }
    .gertie-collage { grid-template-columns: 1fr; }

    /* Hero: tighten vertical padding */
    .hero { padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: 4rem; }

    /* Hero buttons: smaller pills, all three on one row */
    .hero-buttons { gap: 0.4rem; }
    .hero-buttons .btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
    }

    /* Grant badge: flow below buttons instead of absolute corner */
    .hero-grant {
        position: static;
        margin-top: 1.25rem;
        opacity: 0.6;
    }
}
