@font-face {
    font-family: "Elms Sans";
    src: url("/fonts/ElmsSans-VariableFont_wght.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Elms Sans";
    src: url("/fonts/ElmsSans-Italic-VariableFont_wght.woff2") format("woff2");
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
    --main-bg-color:    #05060a;
    --card-bg-color:    #0c0d12;
    --gold-color:       #c69a2d;
    --red-color:        #e30613;
    --red-hover:        #f10d1a;
    --foreground:       #ffffff;
    --foreground-muted: rgba(255, 255, 255, 0.72);
    --foreground-dim:   rgba(255, 255, 255, 0.50);
    --foreground-faint: rgba(255, 255, 255, 0.70);
    --border-subtle:    rgba(255, 255, 255, 0.15);
    --border-soft:      rgba(255, 255, 255, 0.25);
    --border-mid:       rgba(255, 255, 255, 0.50);
    --section-pad:      clamp(4rem, 8vw, 7rem);
    --section-pad-tight:clamp(2rem, 8vw, 4rem);
    --page-max:         1920px;
    --page-pad:         36px;
}

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

body {
    font-family: "Elms Sans", sans-serif;
    background: #000;
    color: var(--foreground);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== SHARED ===== */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 0.75rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

/* ===== HEADER ===== */
header {
    background: var(--main-bg-color);
    border-bottom: 1px solid var(--border-subtle);
}

header > div {
    max-width: var(--page-max);
    margin: 0 auto;
    height: 114px;
    padding: 0 var(--page-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.home-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img { width: 70px; }

.logo-text { display: flex; flex-direction: column; }

.logo-text div:first-child {
    color: #f4f4f4;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    line-height: 1;
}

.logo-text div:last-child {
    margin-top: 0.1rem;
    color: var(--gold-color);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    line-height: 1;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

nav a {
    color: var(--foreground-muted);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

nav a:hover          { color: var(--foreground); }
nav a.active { color: var(--gold-color); }

nav > a:last-child {
    background: var(--red-color);
    color: var(--foreground);
    padding: 0.8rem 1.2rem;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.14em;
    transition: background 0.2s ease;
}

nav > a:last-child:hover { background: var(--red-hover); }

/* ===== MOBILE TOGGLE ===== */
button[aria-label="Toggle menu"] {
    display: none;
    background: none;
    border: 0;
    color: var(--foreground);
    cursor: pointer;
    padding: 0;
}

#mobile-menu-toggle {
    background: none;
    border: 0;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

#mobile-menu-toggle svg { overflow: visible; }

#mobile-menu-toggle .line {
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

#mobile-menu-toggle[aria-expanded="true"] .top    { transform: translateY(2.5px) rotate(45deg); }
#mobile-menu-toggle[aria-expanded="true"] .middle { opacity: 0; }
#mobile-menu-toggle[aria-expanded="true"] .bottom { transform: translateY(-6px) rotate(-45deg); }

/* ===== DROPDOWN ===== */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px; /* matches your gap */
}

/* dropdown panel */
.dropdown-menu {
    position: absolute;
    /*padding-top: 28px;*/
    top: calc( 100% + 10px );
    left: -18px;

    min-width: 240px;
    background: var(--card-bg-color);

    border: 1px solid var(--border-soft);
    border-top: 2px solid var(--gold-color);

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
            opacity .18s ease,
            transform .18s ease,
            visibility .18s ease;

    z-index: 1000;
}

/* hover opens menu */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* dropdown links */
.dropdown-menu a {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu a:last-child {
    border-bottom: 0;
    margin: 0;
    background: transparent;
    padding: 1rem 1.25rem;
}

/* hover */
.dropdown-menu a:hover {
    background: rgba(255,255,255,0.04);
    color: var(--gold-color);
}
/* ===== HERO ===== */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% top;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(10, 10, 12, 0.10)  0%,
            rgba(10, 10, 12, 0.20) 30%,
            rgba(10, 10, 12, 0.70) 55%,
            rgba(10, 10, 12, 0.95) 80%,
            rgba(10, 10, 12, 1.00) 100%
    );
}

.hero-content {
    width: 100%;
    max-width: var(--page-max);
    margin-inline: auto;
    padding: 8rem var(--page-pad) 4rem;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    max-width: 18ch;
}

.hero h1 span { color: var(--red-color); }

.hero-body {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 243, 240, 0.82);
    max-width: 80ch;
    margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--foreground);
    background: var(--red-color);
    padding: 1rem 1.6rem;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--foreground);
    background: transparent;
    border: 1.5px solid rgba(245, 243, 240, 0.45);
    padding: 1rem 1.6rem;
    transition: border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

/* ===== PAGE HERO (events, info, etc.) ===== */
.page-hero {
    position: relative;        /* contain the bg image */
    isolation: isolate;        /* keep z-index stacking local */
    overflow: hidden;
    padding: clamp(3rem, 8vw, 6rem) var(--page-pad) clamp(2rem, 5vw, 4rem);
    max-width: var(--page-max);
    margin: 0 auto;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;              /* fill the hero div, not the page */
    object-fit: cover;
    object-position: 25% 50%;
}

.page-hero-top img{
    object-position: 25% 20%;
}

/* gradient overlay so text is readable over the photo */
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(10, 10, 12, 0.40)  0%,
            rgba(10, 10, 12, 0.70) 60%,
            rgba(10, 10, 12, 0.92) 100%
    );
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    /*max-width: 18ch;*/
}

.page-hero h1 span { color: var(--red-color); }

.page-hero > p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 243, 240, 0.70);
    max-width: 80ch;
}

/* ===== EVENTS LIST PAGE ===== */
.events-list {
    border-top: 1px solid var(--border-subtle);
    padding-block: clamp(2rem, 5vw, 4rem);
}

.event-details a, .events-list a {
    color: var(--foreground);
    text-decoration: underline;
}

.events-list-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-list-card {
    background: var(--card-bg-color);
    border: 1px solid var(--border-subtle);
    padding: 2rem 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    transition: border-color 0.2s ease;
}

.event-list-card:hover { border-color: rgba(255, 255, 255, 0.15); }

.event-list-date {
    flex-shrink: 0;
    width: 7rem;
    min-height: 7rem;
    border: 1px solid var(--red-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
}

.event-list-date .event-month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-list-date .event-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--foreground);
}

.event-list-date .event-year {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--foreground-faint);
    margin-top: 0.3rem;
    line-height: 1;
}

.event-list-body { flex: 1; }

.event-list-body h2 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 0.9rem;
    color: var(--foreground);
}

.event-list-body .event-meta {
    margin-bottom: 1rem;
}

.event-list-body > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--foreground-faint);
}

/* ==========================================================
   SINGLE EVENT PAGE
========================================================== */

.event-hero {
    padding: clamp(4rem, 8vw, 7rem) var(--page-pad);
    border-bottom: 1px solid var(--border-soft);
    background:
            linear-gradient(
                    to bottom,
                    rgba(198,154,45,.06),
                    rgba(0,0,0,0)
            );
}

.event-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.event-hero h1 {
    max-width: 1100px;
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin-top: .5rem;
}

.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: .85rem;

    color: var(--foreground-faint);
    font-size: 1rem;
    font-weight: 500;
}

.event-meta-item img {
    width: 18px;
    opacity: .8;
}


/* ==========================================================
   EVENT CONTENT LAYOUT
========================================================== */

.event-content {
    padding: var(--section-pad-tight) var(--page-pad);
    /*padding: 0 var(--page-pad);*/

}

.event-content-inner {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 4rem;
    align-items: start;
}

.event-main {
    min-width: 0;
}


/* ==========================================================
   EVENT COPY
========================================================== */

.event-copy {
    color: var(--foreground-faint);
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.event-copy p {
    margin-bottom: 1.5rem;
}

.event-copy strong {
    color: var(--foreground);
}

.event-copy a {
    color: var(--gold-color);
    text-decoration: none;
}

.event-copy a:hover {
    text-decoration: underline;
}

.guest_bio img {
    max-width: 100%;
    margin-bottom: 1.5rem;
    /*margin: 0 0 1.5rem 1.5rem;*/
}

.guest-bio-content {
    display: none;
    margin-top: 1rem;
}

.guest-bio-content p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.guest-bio-wrap.open .guest-bio-content {
    display: block;
}

.guest-bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1.5px solid rgba(245, 243, 240, 0.45);
    color: var(--foreground);
    padding: 0.7rem 1.4rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    margin-top: 0.75rem;
}

.guest-bio-toggle:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.guest-bio-wrap.open .guest-bio-toggle {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

/* arrow icon that rotates on open */
.guest-bio-toggle::after {
    content: 'Read Biography';
}

.guest-bio-toggle::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.guest-bio-wrap.open .guest-bio-toggle::after {
    content: 'Hide Biography';
}

.guest-bio-wrap.open .guest-bio-toggle::before {
    transform: rotate(180deg);
}

.event-gallery-card {
    margin-top: 1.5rem;
    text-align: center;
}

.event-gallery-card h3 {
    margin: 0.35rem 0;
}

.event-gallery-card p:last-of-type {
    margin: 0.75rem 0 1.5rem;
    color: var(--foreground-muted);
}

/* ==========================================================
   SIDEBAR
========================================================== */

.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    position: sticky;
    top: 2rem;
}

.event-featured-image {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.event-card {
    background: var(--card-bg-color);
    border: 1px solid var(--border-soft);
    padding: 2rem;
}

.event-card a {
    color: var(--foreground);
    text-decoration: none;
}

.event-card a:hover {
    text-decoration: underline;
}

.event-card h3 {
    color: var(--gold-color);
    margin-bottom: 1.5rem;
}

.event-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-card p {
    color: var(--foreground-faint);
    line-height: 1.7;
}


/* ==========================================================
   EVENT DETAILS LIST
========================================================== */

.event-card ul {
    list-style: none;
}

.event-card li {
    display: flex;
    flex-direction: column;
    gap: .35rem;

    padding: 1rem 0;
    border-top: 1px solid var(--border-soft);
}

.event-card li:first-child {
    border-top: 0;
    padding-top: 0;
}

.event-card strong {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-color);
}

.event-card span {
    color: var(--foreground-faint);
    line-height: 1.5;
}


/* ==========================================================
   REGISTRATION CARD
========================================================== */

.event-registration {
    text-align: center;
}

.event-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.registration-closed {
    padding: 1rem;
    border: 1px solid rgba(227,6,19,.3);
    background: rgba(227,6,19,.08);
    color: #ff8a8a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 1100px) {

    .event-content-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .event-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {

    .event-hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .event-hero h1 {
        line-height: 1;
    }

    .event-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .event-copy {
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 2rem;
    }

    .event-card {
        padding: 1.5rem;
    }

    .event-price {
        font-size: 2rem;
    }
}

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

.gallery-subtitle {
    margin-top: 1rem;
    color: var(--foreground-muted);
    font-size: 1.1rem;
}

.gallery-hero-actions {
    margin-top: 2rem;
}

.gallery-back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold-color);
    font-weight: 600;
    transition: opacity .2s ease;
}

.gallery-back-button:hover {
    opacity: .8;
}

.gallery-page {
    padding:
        clamp(2rem, 5vw, 4rem)
        var(--page-pad);
}

.gallery-page-inner {
    max-width: 1920px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    /*grid-template-columns: repeat(5, 1fr);*/
    gap: 1rem;}

.gallery-page-item {
    width: 100%;
    border: 0;
    background: none;
    padding: 0;
    /*margin: 0 0 1rem;*/

    display: block;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-page-item img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    display: block;
    /*margin-bottom: 1rem;*/

    transition:
            transform .25s ease,
            opacity .25s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.015);
    opacity: .92;
}

/* ==========================
   LIGHTBOX
========================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);

    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.open {
    display: flex;
}

/* NEW WRAPPER */
.gallery-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 90vw;
    max-height: 90vh;
}

/* IMAGE */
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid var(--border-subtle);

    opacity: 0;
    transform: scale(0.99);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox img.show {
    opacity: 1;
    transform: scale(1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 80px;
    cursor: pointer;
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-nav:hover {
    background: rgba(198,154,45,0.2);
}

.gallery-caption {
    margin-top: 1rem;
    color: rgba(255,255,255,.75);
    font-size: .95rem;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;

    background: none;
    border: 0;

    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.gallery-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.gallery-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--gold-color);
    color: #000;

    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;

    padding: 0.9rem 1.4rem;
    border-radius: 6px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    transition:
            transform .2s ease,
            opacity .2s ease;
}

.gallery-download-button:hover {
    opacity: .92;
    transform: translateY(-1px);
}

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

@media (max-width: 980px) {

    /*.gallery-page-inner {*/
    /*    columns: 2 220px;*/
    /*}*/
}

@media (max-width: 640px) {

    /*.gallery-page-inner {*/
    /*    columns: 1;*/
    /*}*/

    .gallery-close {
        top: 10px;
        right: 20px;
    }
}

/* ===== INFORMATION ===== */
.information {
    padding-block: var(--section-pad-tight);
    border-top: 1px solid var(--border-subtle);
}

.information-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.information-label {
    position: relative;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
}

.information-label h2 {
    font-size: 2rem;
    color: var(--gold-color);
    text-align: right;
}

.information-bg {
    grid-row: 2 / span 1;
    grid-column: 1 / span 1;
    inset: 0;
    height: 100%;
    z-index: -1;
    /*outline: 1px solid red;*/
}

.information-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: 25% top;*/
}

.information-content {
    grid-row: 1 / span 2;
    grid-column: 2 / span 1;
}

.information p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--foreground-faint);
}

.information p:not(:last-child) {
    margin-bottom: 1rem;
}

.information li {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 1rem 1.5rem;
    color: var(--foreground-faint);
}

/* ===== NEWSLETTER ===== */

.newsletter {
    padding-block: var(--section-pad);
    border-top: 1px solid var(--border-subtle);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px;
}

.newsletter-inner {
    padding: 2rem 0;
}

.newsletter-copy {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.newsletter-copy p:first-child {
    color: #c69a2d;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .8rem;
    margin-bottom: .75rem;
}

.newsletter-copy h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.newsletter-copy p:last-child {
    color: rgba(255,255,255,.7);
    line-height: 1.7;
}

/* Form container */
.mc-signup-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    padding: 3rem;
    display: grid;
    gap: 1.5rem;

    position: relative;
}

/* subtle gold top line */
.mc-signup-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #c69a2d;
}

/* labels */
.mc-signup-form label {
    display: block;
    margin-bottom: 0;

    color: var(--gold-color);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* stack label + input */
.mc-signup-form label,
.mc-signup-form input[type="email"],
.mc-signup-form input[type="text"] {
    width: 100%;
}

/* inputs */
.mc-signup-form input[type="email"],
.mc-signup-form input[type="text"] {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    height: 3rem;
    padding: 0 1rem;

    font-family: inherit;
    font-size: 1rem;

    transition:
            border-color .2s ease,
            background .2s ease;
}

/* focus state */
.mc-signup-form input:focus {
    outline: none;
    border-color: var(--gold-color);
    background: rgba(255,255,255,0.06);
}

/* placeholder */
.mc-signup-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

/* submit button */
#mc-embedded-subscribe {
    background: var(--red-color);
    color: #fff;
    border: 0;

    height: 56px;
    padding: 0 2rem;

    cursor: pointer;

    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    transition: background .2s ease;
    align-self: end;
}

#mc-embedded-subscribe:hover {
    background: #f10d1a;
}

/* button spans full width nicely */
.mc-signup-form .button {
    width: 100%;
}

/* responsive */
@media (max-width: 900px) {
    .mc-signup-form {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .newsletter {
        padding: 3rem 0;
    }

    .newsletter-inner {
        padding: 0 20px;
    }
}


/* ===== STORIES ===== */
.stories {
    padding-block: var(--section-pad);
    border-top: 1px solid var(--border-subtle);
}

.stories-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.story-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 2px solid var(--border-soft);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-img img {
    transform: scale(1.03);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.story-title {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--foreground);
}

.story-link {
    display: inline-block;
    color: var(--red-color);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.story-link:hover {
    color: var(--red-hover);
}

/* ==========================
   STORY PAGE
========================== */

.story-page {
    padding:
            clamp(4rem, 8vw, 7rem)
            var(--page-pad);
}

.story-page-inner {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 4rem;
}

.story-main {
    min-width: 0;
}

.story-featured-image {
    margin-bottom: 2rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #0b0c10;
}

.story-featured-image img {
    width: 100%;
    display: block;
}

.story-content {
    color: rgba(255,255,255,.84);
    font-size: 1.15rem;
    line-height: 1.5;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content h2,
.story-content h3,
.story-content h4 {
    margin:
            2.5rem
            0
            1rem;
}

.story-content strong {
    color: white;
}

.story-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

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

@media (max-width: 980px) {

    .story-page-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-sidebar {
        position: relative;
        top: auto;
    }
}


@media (max-width: 900px) {
    .stories-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stories-inner {
        grid-template-columns: 1fr;
    }
}

/* ===== LINKS PAGE ===== */
.links {
    padding-block: var(--section-pad);
    border-top: 1px solid var(--border-subtle);
}

.links-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    align-items: start;
}

.link-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-img {
    width: 100%;
    aspect-ratio: 4 / 2;
    overflow: hidden;
    border: 1px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg-color);
}

.link-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.link-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.link-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--foreground);
}

.link-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--foreground-faint);
}

.link-btn {
    display: block;
    width: fit-content;
    margin: 0.5rem auto 0;
    background: var(--red-color);
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    transition: background 0.2s ease;
}

.link-btn:hover {
    background: var(--red-hover);
}

@media (max-width: 900px) {
    .links-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .links-inner {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding-block: var(--section-pad);
}

.contact-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Map */
.contact-map {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-mid);
    overflow: hidden;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Info blocks */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-info-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--red-color);
    line-height: 1;
}

.contact-info-block p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--foreground-faint);
}

.contact-info-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--foreground);
    margin-bottom: 0.4rem;
}

.contact-info-link {
    color: var(--red-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.contact-info-link:hover {
    color: var(--red-hover);
}

/* Form */
.contact-form-wrap {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    border-top: 1px solid var(--border-subtle);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
}

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

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form-group label {
    font-size: 1rem;
    color: var(--foreground);
}

.required {
    font-size: 0.85rem;
    color: var(--foreground-faint);
    font-weight: 400;
}

.contact-form-group input,
.contact-form-group textarea {
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--foreground);
    padding: 0.7rem 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--gold-color);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--foreground-dim);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red-color);
    color: var(--foreground);
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.contact-submit:hover {
    background: var(--red-hover);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-map {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-cols {
        grid-template-columns: 1fr;
    }
}

/* ===== MISSION ===== */
.mission {
    padding-block: var(--section-pad);
    border-top: 1px solid var(--border-subtle);
}

.mission-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.mission-label h2 { margin-top: 0.75rem; }

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-mid);
}

.pillar {
    background: var(--main-bg-color);
    padding: 2rem;
    transition: background 0.2s ease;
}

.pillar:hover { background: var(--card-bg-color); }
.pillar svg   { color: var(--gold-color); }

.pillar h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.pillar p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--foreground-faint);
}


/* ===== DONATION PAGE ===== */

.donate-hero {
    /*padding: var(--section-pad);*/
    text-align: center;
}

.hero-copy {
    max-width: 720px;
    margin: 2rem auto 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--foreground-faint);
}

.donate-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button,
.secondary-button,
.donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    min-height: 56px;
    padding: 0 2rem;
}

.cta-button,
.donate-button {
    font-size: 1rem;
    border: 0;
    background: var(--red-color);
    color: white;
}

.cta-button:hover,
.donate-button:hover {
    background: var(--red-hover);
}

.secondary-button {
    border: 1px solid var(--border-mid);
    color: white;
}

/* impact */

.donation-impact {
    padding: var(--section-pad) var(--page-pad);
}

.donation-impact h2 span { color: var(--red-color); }
.donation-trust h2 span { color: var(--red-color); }

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

.impact-grid article {
    background: var(--card-bg-color);
    border: 1px solid var(--border-soft);
    padding: 2rem;
}

.impact-grid p {
    margin-top: 1rem;
    color: var(--foreground-faint);
    line-height: 1.8;
}

/* cta card */

.donation-cta {
    padding: var(--section-pad) var(--page-pad);
}

.donation-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;

    border: 1px solid var(--border-soft);
    background: linear-gradient(
            180deg,
            rgba(198,154,45,.08),
            rgba(255,255,255,.02)
    );

    padding: 4rem;
}

.donation-card p {
    max-width: 640px;
    margin: 1rem auto 2rem;
    line-height: 1.8;
    color: var(--foreground-faint);
}

.donation-card small {
    display: block;
    margin-top: 1rem;
    color: var(--foreground-dim);
}

/* trust */

.donation-trust {
    text-align: center;
    padding: 0 var(--page-pad) var(--section-pad);
}

.donation-trust p {
    max-width: 720px;
    margin: 1rem auto;
    line-height: 1.8;
    color: var(--foreground-faint);
}

@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .donation-card {
        padding: 2rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }
}

/* ===== EVENTS ===== */
.events {
    padding-block: var(--section-pad);
    background: var(--card-bg-color);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.events-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
}

.events-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.events-header h2 { margin-top: 0.75rem; }

.events-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: gap 0.2s ease;
    white-space: nowrap;
}

.events-all-link:hover { gap: 0.7rem; }

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

.event-card {
    background: var(--main-bg-color);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    transition: border-color 0.2s ease;
}

.event-card:hover { border-color: var(--gold-color); }

.event-card-inner {
    display: flex;
    gap: 1.5rem;
}

.event-date {
    flex-shrink: 0;
    width: 5rem;
    height: 6rem;
    border: 1px solid var(--red-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.1rem;
}

.event-month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-color);
}

.event-day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--foreground);
}

.event-details { flex: 1; }

.event-details h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.event-card:hover .event-details h3 { color: var(--gold-color); }

.event-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.event-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--foreground-faint);
}

.event-meta svg { flex-shrink: 0; color: var(--foreground-faint); }

.event-details > p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(245, 243, 240, 0.75);
}

/* ===== DONATE CTA ===== */
.donate-cta {
    padding-block: var(--section-pad);
}

.donate-cta-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
}

.donate-cta-box {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-mid);
    padding: clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.donate-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    background: linear-gradient(135deg, var(--red-color) 0%, #8b0000 100%);
    pointer-events: none;
}

.donate-cta-box > * { position: relative; z-index: 1; }

.donate-cta-box h2 {
    margin: 0.75rem auto 1.25rem;
    max-width: 22ch;
}

.donate-cta-box > p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--foreground-faint);
    max-width: 42ch;
    margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--main-bg-color);
    border-top: 1px solid var(--border-soft);
    padding: 3rem 0 0;
}

.footer-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 1rem;
}

.footer-col,
.footer-col li {
    color: var(--foreground-faint);
    font-size: 0.95rem;
    line-height: 1.2;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--foreground); }

.footer-col h4 {
    color: var(--gold-color);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f4f4f4;
    margin-bottom: 1rem;
}

.footer-motto {
    margin-top: 1rem;
    color: var(--gold-color);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    color: var(--foreground-dim);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--foreground-dim);
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    nav { gap: 1.5rem; }
    nav a { font-size: 1rem; }
    .logo-text div:first-child { font-size: 1.25rem; }

    .mission-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 980px) {
    header { position: relative; }

    header > div {
        height: 84px;
        padding: 0 20px;
    }

    .logo-text div:first-child { font-size: 22px; }
    .logo-text div:last-child  { font-size: 10px; letter-spacing: 0.22em; }

    nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--main-bg-color);
        border-top: 1px solid var(--border-mid);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        z-index: 999;
    }

    nav.open { display: flex; }

    nav a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        font-size: 1rem;
    }

    nav > a:last-child {
        margin: 1rem;
        text-align: center;
        justify-content: center;
    }

    button[aria-label="Toggle menu"] {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: 0;
        color: var(--foreground);
        cursor: pointer;
        padding: 0.5rem;
    }

    button[aria-expanded="true"] svg { transform: rotate(90deg); }
    button svg { transition: transform 0.2s ease; }

    .hero-content { padding: 6rem 20px 3rem; }

    .mission-pillars { grid-template-columns: 1fr; }

    .events-grid { grid-template-columns: 1fr; }

    .nav-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        border-left: 3px solid var(--gold-color);
        min-width: unset;
        margin-left: 1.5rem;
        transition: none;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .dropdown-menu > a:last-child {
        padding: 0.75rem 1.25rem;
    }

    /* kill the hover trigger since menu is always visible */
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 900px) {
    .footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    :root { --page-pad: 20px; }

    .footer-columns { grid-template-columns: 1fr; }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .event-card-inner  { flex-direction: column; }

    .event-date {
        width: 100%;
        height: auto;
        padding: 0.75rem;
        flex-direction: row;
        gap: 0.75rem;
    }

    .event-list-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .event-list-date {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .event-list-date .event-day { font-size: 2rem; }
}
