/*
Theme Name:   Foundry Child
Theme URI:    https://foundryent.org
Description:  GeneratePress child theme for Foundry Entertainment Hall — preserves the industrial aesthetic with full WordPress editing support.
Author:       Foundry Entertainment Hall
Author URI:   https://foundryent.org
Template:     generatepress
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  foundry-child
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* Brand Colors */
    --navy:         #0e1e38;
    --navy-mid:     #1B3A6B;
    --gold:         #C9A84C;
    --gold-bright:  #e8c56a;
    --gold-dim:     #8a6e2e;
    --rust:         #8B3A1A;
    --ember:        #c44b1a;
    --cream:        #f5ede0;
    --warm-white:   #faf6f0;
    --charcoal:     #111111;
    --mid-gray:     #2a2a2a;
    --text-light:   #c8c2b8;
    --text-muted:   #887f74;

    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-serif:   'Libre Baskerville', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --section-pad:  80px 40px;
    --section-pad-sm: 60px 24px;

    /* Transitions */
    --transition:   0.25s ease;
}

/* ============================================================
   BASE RESET & GLOBAL STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cream);
    background: var(--charcoal);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold-bright); }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin: 0 0 0.5em;
    color: var(--cream);
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.3rem; }

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0 0 1.2em;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.foundry-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 30, 56, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background var(--transition);
}

.foundry-nav.scrolled {
    background: rgba(14, 30, 56, 0.99);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--gold-bright) !important;
    color: var(--navy) !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

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

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14,30,56,0.6) 0%,
        rgba(14,30,56,0.45) 40%,
        rgba(14,30,56,0.75) 75%,
        rgba(14,30,56,0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-bright);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    letter-spacing: 0.05em;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 20px;
}

.hero-sub {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
}

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

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,237,224,0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-ghost:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================================
   COUNTDOWN STRIP
   ============================================================ */
.countdown-strip {
    background: var(--gold);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
}

.countdown-timer {
    display: flex;
    gap: 4px;
    align-items: center;
}

.countdown-unit {
    text-align: center;
    min-width: 52px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.countdown-unit-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(14,30,56,0.65);
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    line-height: 1;
    padding-bottom: 10px;
}

.countdown-cta a {
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
}
.countdown-cta a:hover {
    background: var(--navy-mid);
    color: var(--gold-bright);
}

/* ============================================================
   IMAGE STRIP
   ============================================================ */
.image-strip {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: 320px;
}

.image-strip-item {
    position: relative;
    overflow: hidden;
}

.image-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-strip-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,237,224,0.7);
    background: rgba(14,30,56,0.6);
    padding: 4px 10px;
    border-radius: 2px;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
    background: var(--navy);
    padding: var(--section-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-diagram {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 40px;
    text-align: center;
}

.stage-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.stage-dims {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.seats-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ============================================================
   FORGE / STATS SECTION
   ============================================================ */
.forge-section {
    background: var(--charcoal);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.forge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&w=1800') center/cover;
    opacity: 0.06;
}

.forge-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.15);
}

.stat-item {
    background: var(--charcoal);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: border-color var(--transition);
}

.stat-item:hover {
    border-color: rgba(201,168,76,0.3);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
    background: var(--navy);
    padding: var(--section-pad);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.event-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}

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

.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-body {
    padding: 24px;
}

.event-date {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
}

.event-tags {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 16px;
}

.event-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}

.event-tag-pill {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
    background: var(--charcoal);
    padding: var(--section-pad);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 4px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

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

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

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(14,30,56,0.85));
    padding: 20px 16px 12px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0;
    transition: opacity var(--transition);
}

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

/* ============================================================
   FUNDRAISING SECTION
   ============================================================ */
.fundraising-section {
    background: var(--navy);
    padding: var(--section-pad);
}

.funding-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.progress-item {
    margin-bottom: 28px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
}

.progress-goal {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.progress-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    border-radius: 3px;
    transition: width 1s ease;
}

.funding-target {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.target-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1;
    display: block;
}

.target-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}

.breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
}

.breakdown-list li:last-child { border-bottom: none; }

.breakdown-amount {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foundry-footer {
    background: #080e1c;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    line-height: 1;
    display: block;
}

.footer-brand-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-legal {
    font-size: 0.7rem;
    color: rgba(136,127,116,0.6);
    line-height: 1.6;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 16px;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-right: none;
    color: var(--cream);
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 2px 0 0 2px;
    outline: none;
}

.footer-newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }

.footer-newsletter-form input[type="email"]:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(255,255,255,0.08);
}

.footer-newsletter-form button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    transition: background var(--transition);
}

.footer-newsletter-form button:hover { background: var(--gold-bright); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(136,127,116,0.5);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-status::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-max {
    max-width: 1200px;
    margin: 0 auto;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ============================================================
   WORDPRESS CONTENT AREA OVERRIDES
   ============================================================ */
.entry-content {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
}

.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4 {
    font-family: var(--font-display);
    color: var(--cream);
}

.entry-content a { color: var(--gold); }
.entry-content a:hover { color: var(--gold-bright); }

.wp-block-image img {
    border-radius: 2px;
}

/* Override GeneratePress defaults */
.site-main { background: var(--charcoal); }
.site-header { display: none; } /* replaced by .foundry-nav */
.site-footer { display: none; } /* replaced by .foundry-footer */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-strip { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-row: span 1; }
    .funding-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px 24px; }

    .foundry-nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(14,30,56,0.98);
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    .image-strip { grid-template-columns: 1fr; height: auto; }
    .image-strip-item { height: 200px; }

    .countdown-strip {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .events-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

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

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    .foundry-nav, .no-print { display: none !important; }
}
