@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;
}

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

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

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

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

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

.outlined-note {
    border: 1px solid var(--gold-color);
    padding: 1rem;
    border-radius: 10px;
}

/* ===== 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: 1.75rem;
    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 ===== */
#mobile-menu-toggle {
    display: none;
    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;
}

.dropdown-menu {
    position: absolute;
    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;
}

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

.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;
    background: transparent;
    padding: 1rem 1.25rem;
}

.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;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    isolation: isolate;
    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%;
    object-fit: cover;
    object-position: 25% 50%;
}

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

.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;
}

.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;
}

/* ===== 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: .75rem;
    background: var(--main-bg-color);
}

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

.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);
}

.pillar-icon {
    width: 2rem;
    height: 2rem;
}

/* ===== EVENTS (homepage) ===== */
.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);
}

/* ===== 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 {
    padding: var(--section-pad-tight) 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 {
    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;
}

.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,
.guest-bio-wrap.open .guest-bio-toggle {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.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-toggle::after         { content: 'Read Biography'; }
.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); }

/* ===== EVENT 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-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; }

.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;
}

/* ===== 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;
}

/* ===== DONATION PAGE ===== */
.donate-hero { 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); cursor: pointer; }

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

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

.donation-impact h2 span,
.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; }

.impact-grid-icon { display: block; margin-bottom: 1rem; color: var(--gold-color) }

.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); }

.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);
}

/* ===== DONATION PURPOSE ===== */
.donation-purpose {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 1.5rem 0;
    text-align: left;
}

.donation-purpose label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-color);
}

.donation-purpose select {
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--foreground);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.donation-purpose select:focus {
    outline: none;
    border-color: var(--gold-color);
}

.donation-purpose select option {
    background: var(--card-bg-color);
    color: var(--foreground);
}

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

.donation-amount {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.donation-amount label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-color);
}

.donation-amount-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-mid);
    transition: border-color 0.2s ease;
}

.donation-amount-input:focus-within {
    border-color: var(--gold-color);
}

.donation-amount-prefix {
    padding: 0.75rem 0 0.75rem 1rem;
    color: var(--foreground-faint);
    font-size: 1rem;
}

.donation-amount-input input {
    background: transparent;
    border: none;
    color: var(--foreground);
    padding: 0.75rem 1rem 0.75rem 0.25rem;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
}

.donation-amount-input input:focus {
    outline: none;
}

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

/* ===== 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));
    gap: 1rem;
}

.gallery-page-item {
    width: 100%;
    max-width: 400px;
    border: 0;
    background: none;
    padding: 0;
    display: block;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-page-item img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    display: block;
    transition: transform .25s ease, opacity .25s ease;
}

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


.gallery-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.gallery-pagination nav {
    display: flex;
}

.gallery-pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-pagination li {
    display: flex;
}

.gallery-pagination a,
.gallery-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;

    padding: 0 1rem;

    border: 1px solid #ddd;
    border-radius: 8px;

    text-decoration: none;
    color: #222;
    background: #fff;
}

.gallery-pagination a:hover {
    background: #f5f5f5;
}

.gallery-pagination .active span {
    font-weight: 600;
    background: #222;
    color: #fff;
    border-color: #222;
}

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

.gallery-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.gallery-pagination nav {
    display: flex;
    justify-content: center;
    width: 100%;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    border-top: none;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin: 0;
    z-index: auto;
}

.gallery-pagination nav.open {
    display: flex;
}

/* Hide Laravel's "showing x of y" text — all screen sizes */
.gallery-pagination nav > div:first-child {
    display: none !important;
}

.gallery-pagination p,
.gallery-pagination nav > div:first-child {
    display: none !important;
}

.gallery-pagination nav > div:last-child {
    display: flex;
    justify-content: center;
}

/* List container */
.gallery-pagination .relative.z-0 {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Base button styling */
.gallery-pagination a,
.gallery-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border-radius: 0;
    border: 1px solid var(--border-subtle);
    background: var(--card-bg-color);
    color: var(--foreground-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-family: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Remove double-borders from Laravel wrapper spans */
.gallery-pagination nav span { margin: 0; padding: 0; }
.gallery-pagination span[aria-current="page"] { display: flex; }

/* Hover */
.gallery-pagination a:hover {
    background: var(--main-bg-color);
    border-color: var(--gold-color);
    color: var(--gold-color);
}

/* Active page */
.gallery-pagination span[aria-current="page"] span {
    background: var(--red-color);
    border-color: var(--red-color);
    color: var(--foreground);
    font-weight: 700;
}

/* Disabled prev/next */
.gallery-pagination span[aria-disabled="true"] span {
    opacity: 0.35;
    cursor: default;
}

/* Ellipsis */
.gallery-pagination span[aria-disabled="true"] {
    background: transparent;
    border-color: transparent;
}

/* SVG arrows */
.gallery-pagination svg {
    width: 16px;
    height: 16px;
    color: var(--foreground-dim);
}

/* ===== 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; }

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

.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); }

/* ===== 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;
}

.information-bg img { width: 100%; height: 100%; object-fit: cover; }

.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 {
    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: var(--gold-color);
    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; }

.mc-signup-form {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold-color);
    backdrop-filter: blur(10px);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.mc-signup-form label {
    display: block;
    color: var(--gold-color);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mc-signup-form > div > label {
    margin-bottom: 1.5rem;
}
.mc-signup-form label,
.mc-signup-form input[type="email"],
.mc-signup-form input[type="text"] { width: 100%; }

.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;
}

.mc-signup-form .mc-field-full { grid-column: span 3; }

#mce-responses { display: none; }

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

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

#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;
    grid-column: span 2;
}

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

.mc-signup-form .button { width: 100%; }

/* ===== 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; }

/* ===== 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); }

/* ===== 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: var(--section-pad);
}

.contact-map {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--gold-color);
    overflow: hidden;
    filter: grayscale(100%);
}

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

.contact-info,
.register-event-summary
    { display: flex; flex-direction: column; gap: 2rem; }

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

.contact-info-heading,
.register-summary-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,
.register-summary-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 wrap ── */
.contact-form-wrap {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) var(--page-pad) 0;
    border-top: 1px solid var(--border-subtle);
}

.contact-form,
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--card-bg-color);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--gold-color);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-form-header,
.register-form-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

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

.contact-form-group,
.register-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.contact-form-group label,
.register-form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-color);
}


.required {
    font-size: 0.75rem;
    color: var(--foreground-dim);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

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

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

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder,
.register-form-group input::placeholder,
.register-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); }

.form-success {
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 1rem 1.25rem;
    color: #4ade80;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.5rem 0 0 0;
}

/* ===== CHECKBOX ===== */
.register-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--foreground-faint);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.register-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 1px solid var(--border-mid);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.register-checkbox-label input[type="checkbox"]:checked {
    background: var(--red-color);
    border-color: var(--red-color);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.707 4.293a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L6 10.586l6.293-6.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.register-checkbox-label input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--gold-color);
}

.register-checkbox-label:hover input[type="checkbox"] {
    border-color: var(--gold-color);
}

/* ── 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; }
    .contact-submit    { width: 100%; }
}

/* ===== ROLL CALL LOGIN ===== */
.roll-login-form {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-block: clamp(2rem, 5vw, 4rem);
    margin: 0 auto;
}

.roll-login-intro { font-size: 0.95rem; line-height: 1.7; color: var(--foreground-faint); }

.roll-login-field { display: flex; flex-direction: column; gap: 0.4rem; }

.roll-login-field label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-color);
}

.roll-login-field input {
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--foreground);
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.roll-login-field input:focus { outline: none; border-color: var(--gold-color); }
.roll-login-field input::placeholder { color: var(--foreground-dim); }
.roll-login-error { font-size: 0.8rem; color: var(--red-color); letter-spacing: 0.04em; }

/* ===== ROLL CALL PAGE ===== */
.roll-call {
    border-top: 1px solid var(--border-subtle);
    padding-block: clamp(2rem, 5vw, 4rem);
}

.roll-call-container {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-inline: var(--page-pad);
}

.roll-call-list { display: flex; flex-direction: column; gap: 0.75rem; }

.roll-row {
    background: var(--card-bg-color);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.2s ease;
}

.roll-row.open { border-color: rgba(198, 154, 45, 0.5); }

.roll-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    user-select: none;
}

.roll-summary:hover .roll-name { color: var(--gold-color); }

.roll-name {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.roll-nickname {
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: var(--foreground-dim);
    margin-left: 0.5rem;
    font-size: 0.95rem;
}

.roll-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0 1.25rem; }

.roll-meta span {
    font-size: 0.8rem;
    color: var(--foreground-dim);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.roll-meta span:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background: var(--border-subtle);
    margin-left: 1.25rem;
    vertical-align: middle;
}

.roll-rank {
    display: none;
}

.roll-toggle {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--foreground-dim);
    transition: transform 0.22s ease, color 0.2s ease;
}

.roll-row.open .roll-toggle { transform: rotate(180deg); color: var(--gold-color); }

.roll-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
    overflow: hidden;
    max-height: 0;
    padding: 0 1.4rem;
    border-top: 0 solid var(--border-subtle);
    transition: max-height 0.25s ease, padding 0.2s ease, border-top 0.2s ease;
}

.roll-row.open .roll-details {
    max-height: 1200px;
    padding: 1rem 1.4rem 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.roll-details > div { font-size: 1rem; color: var(--foreground-faint); line-height: 1.55; }

.roll-details strong {
    display: block;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 0.2rem;
}

.roll-details a       { color: var(--red-color); text-decoration: underline; }
.roll-details a:hover { color: var(--red-hover); }

.roll-spouse {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
    padding-top: 1rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--gold-color);
}

.empty-state {
    padding: 3rem;
    text-align: center;
    color: var(--foreground-dim);
    border: 1px dashed var(--border-subtle);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}



/* ===== EVENT REGISTRATION ===== */

.register-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;
    margin-bottom: var(--section-pad);
}

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

.register-form-group--narrow { max-width: 200px; }

.register-summary-value  { font-size: 1rem; line-height: 1.65; color: var(--foreground-faint); }

.register-summary-price {
    color: var(--gold-color);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.register-order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--main-bg-color);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--gold-color);
}

.register-total-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--foreground-faint);
}

.register-total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-color);
}

.form-errors {
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.3);
    padding: 1rem 1.25rem;
}

.form-errors p {
    color: #ff8a8a;
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-errors p:not(:last-child) { margin-bottom: 0.5rem; }


/* ===== TICKET CARD ===== */
.ticket-card {
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--gold-color);
    background: var(--main-bg-color);
}

.ticket-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.ticket-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--foreground-dim);
}

.ticket-status {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1px solid;
}

.ticket-status--issued      { color: #4ade80; border-color: rgba(74, 222, 128, 0.3); background: rgba(74, 222, 128, 0.08); }
.ticket-status--checked_in  { color: var(--gold-color); border-color: rgba(198, 154, 45, 0.3); background: rgba(198, 154, 45, 0.08); }
.ticket-status--refunded    { color: #ff8a8a; border-color: rgba(255, 138, 138, 0.3); background: rgba(255, 138, 138, 0.08); }
.ticket-status--canceled    { color: var(--foreground-dim); border-color: var(--border-subtle); background: transparent; }

.ticket-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
    padding: 1rem;
}

.ticket-card-body div { font-size: 0.9rem; color: var(--foreground-faint); line-height: 1.55; }

.ticket-card-body strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 0.2rem;
}

.ticket-uuid {
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--foreground-dim);
    word-break: break-all;
}

@media (max-width: 600px) {
    .ticket-card-body { grid-template-columns: 1fr; }
}


/* ===== 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 — all breakpoints consolidated below
   1200 → 980 → 900 → 768 → 600
============================================================= */

@media (max-width: 1200px) {
    nav { gap: 1.25rem; }
    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: 18px; }
    .logo-text div:last-child  { font-size: 10px; letter-spacing: 0.22em; }

    #mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }

    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; }

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

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

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

    .story-page-inner     { grid-template-columns: 1fr; gap: 2rem; }
    .story-sidebar        { position: relative; top: auto; }

    .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; }

    .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
}

@media (max-width: 900px) {
    .footer-columns   { grid-template-columns: 1fr 1fr; }
    .stories-inner    { grid-template-columns: repeat(2, 1fr); }
    .links-inner      { grid-template-columns: repeat(2, 1fr); }
    .impact-grid      { grid-template-columns: 1fr; }
    .donation-card    { padding: 2rem; }
    .contact-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-map      { aspect-ratio: 16 / 9; }
    .mc-signup-form   { grid-template-columns: 1fr; padding: 2rem; }
    .mc-signup-form .mc-field-full { grid-column: span 1; }
    .newsletter       { padding: 3rem 0; }
    .newsletter-inner { padding: 0 20px; }
    .page-hero h1     { font-size: 3rem; }
    .register-inner          { grid-template-columns: 1fr; gap: 2.5rem; }
    .register-form-row-three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .roll-details        { grid-template-columns: 1fr; }
    .roll-spouse         { grid-template-columns: 1fr; }
    .roll-summary        { padding: 1rem; }

    .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; }

    .information-inner   { grid-template-columns: 1fr; grid-template-rows: 1fr; gap: 1rem; }
    .information-label h2 { text-align: left; }
    .information-bg img { max-width: 100%; max-height: 20rem; }
    .information-content { grid-row: auto; grid-column: 1 / span 1; }

}

@media (max-width: 640px) {
    .gallery-pagination { margin-top: 2rem; }

    .gallery-pagination a,
    .gallery-pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
}

@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; }

    .stories-inner  { grid-template-columns: 1fr; }
    .links-inner    { grid-template-columns: 1fr; }

    .contact-form-row  { grid-template-columns: 1fr; }
    .contact-info-cols { grid-template-columns: 1fr; }
    .contact-submit    { width: 100%; }

    .register-form-row       { grid-template-columns: 1fr; }
    .register-form-row-three { grid-template-columns: 1fr; }
    .register-form-group--narrow { max-width: 100%; }

    .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; }

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

    .roll-meta           { display: none; }
    .roll-rank {
        display: block;
    }
}