/* ============================================================
   Summit Valley Park — Theme Stylesheet
   Colors: #243d29 (green) | #183748 (blue) | #95692a (gold)
   Fonts: Outfit (headings) | Inter (body)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --green:        #243d29;
    --green-mid:    #3a6142;
    --green-light:  #e6ede7;
    --blue:         #183748;
    --blue-mid:     #2a5168;
    --gold:         #95692a;
    --gold-light:   #b8843a;
    --gold-pale:    #f6edd8;
    --cream:        #f5f1eb;
    --white:        #ffffff;
    --text:         #1a1a1a;
    --text-muted:   #5c5c5c;
    --border:       #ddd8d0;
    --shadow-sm:    0 1px 4px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.07);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
    --radius-sm:    4px;
    --radius-md:    10px;
    --radius-lg:    18px;
    --transition:   0.2s ease;
    --max-width:    1200px;
    --font-head:    'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--green);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section     { padding: 5rem 0; }
.section--sm { padding: 2.75rem 0; }
.section--lg { padding: 7rem 0; }
.bg-cream    { background: var(--cream); }
.bg-white    { background: var(--white); }
.text-center { text-align: center; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn--lg { padding: 0.9rem 2.1rem; font-size: 0.9rem; }

.btn--primary {
    background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn--primary:hover {
    background: var(--gold-light); border-color: var(--gold-light); color: var(--white);
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
    background: var(--white); color: var(--green); border-color: var(--white);
}

.btn--green {
    background: var(--green); color: var(--white); border-color: var(--green);
}
.btn--green:hover {
    background: var(--green-mid); border-color: var(--green-mid); color: var(--white);
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .eyebrow,
.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(149,105,42,0.35);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
}
.section-header h2 { color: var(--green); margin-bottom: 0.75rem; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.02rem; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -9999px; left: 1rem; z-index: 9999;
    background: var(--gold); color: var(--white);
    padding: 0.5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

/* ── Site Header ────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: var(--green);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto;
    padding: 0 1.5rem; height: 70px;
}

/* Logo */
.site-logo {
    display: flex; align-items: center; gap: 0.7rem;
    text-decoration: none; flex-shrink: 0;
}
.site-logo__img { height: 50px; width: auto; }
.site-logo__text {
    font-family: var(--font-head);
    font-weight: 700; font-size: 0.95rem;
    color: var(--white); text-transform: uppercase;
    letter-spacing: 0.04em; line-height: 1.25;
}
.site-logo__text span {
    display: block; font-size: 0.65rem; font-weight: 400;
    color: rgba(255,255,255,0.6); letter-spacing: 0.12em;
}

/* Primary Nav */
.site-nav { display: flex; align-items: center; gap: 0.1rem; }
.site-nav a {
    font-family: var(--font-head);
    font-weight: 600; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}
.site-nav a:hover,
.site-nav a.current {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}
.site-nav .btn--primary { margin-left: 0.6rem; color: var(--white); }
.site-nav .btn--primary:hover { color: var(--white); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 0.4rem;
    color: var(--white);
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all 0.3s ease; transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg,
        #0c1d2e 0%,
        var(--blue) 38%,
        #1d3523 72%,
        #121f14 100%
    );
}
.hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.hero__stars {
    position: absolute; top: 0; left: 0; right: 0; height: 55%;
    background-image:
        radial-gradient(1.5px 1.5px at 8%  12%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px   1px   at 18% 6%,  rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(2px   2px   at 28% 20%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1px   1px   at 42% 9%,  rgba(255,255,255,0.60) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 4%,  rgba(255,255,255,0.40) 0%, transparent 100%),
        radial-gradient(1px   1px   at 66% 16%, rgba(255,255,255,0.50) 0%, transparent 100%),
        radial-gradient(2px   2px   at 76% 7%,  rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px   1px   at 87% 22%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 93% 11%, rgba(255,255,255,0.40) 0%, transparent 100%),
        radial-gradient(1px   1px   at 33% 28%, rgba(255,255,255,0.30) 0%, transparent 100%),
        radial-gradient(1px   1px   at 48% 32%, rgba(255,255,255,0.25) 0%, transparent 100%),
        radial-gradient(1px   1px   at 72% 26%, rgba(255,255,255,0.30) 0%, transparent 100%);
}
.hero__trees {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: auto;
}
.hero__content {
    position: relative; z-index: 2;
    text-align: center;
    width: 100%; max-width: 840px;
    margin: 0 auto;
    padding: 3rem 1.5rem 7rem;
}
.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--gold-light);
    border: 1px solid rgba(184,132,58,0.45);
    padding: 0.3rem 1rem; border-radius: 100px;
    margin-bottom: 1.1rem;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 6.5vw, 4.5rem);
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero__sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.5rem;
    max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Info Strip ─────────────────────────────────────────────── */
.info-strip {
    background: var(--blue);
    border-bottom: 3px solid var(--gold);
}
.info-strip__inner {
    display: grid; grid-template-columns: repeat(3,1fr);
    max-width: var(--max-width); margin: 0 auto;
}
.info-strip__item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.35rem 1.75rem;
    border-right: 1px solid rgba(255,255,255,0.09);
}
.info-strip__item:last-child { border-right: none; }
.info-strip__icon { font-size: 1.7rem; flex-shrink: 0; }
.info-strip__label {
    font-family: var(--font-head);
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.13em;
    color: rgba(255,255,255,0.55); margin-bottom: 0.15rem;
}
.info-strip__value {
    font-family: var(--font-head); font-weight: 700;
    font-size: 0.95rem; color: var(--white);
}
.info-strip__value small { font-weight: 400; font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
    background: linear-gradient(140deg, var(--green) 0%, var(--blue) 100%);
    padding: 4rem 1.5rem 3.5rem;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(149,105,42,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(24,55,72,0.3) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero h1 { color: var(--white); position: relative; margin-bottom: 0.6rem; }
.page-hero p {
    color: rgba(255,255,255,0.75); position: relative;
    max-width: 540px; margin: 0 auto; font-size: 1.05rem;
}

/* ── Ride Cards ─────────────────────────────────────────────── */
.rides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
}
.ride-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.ride-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.ride-card.hidden { display: none !important; }

.ride-card__image {
    aspect-ratio: 16/9;
    position: relative; overflow: hidden;
    background: var(--green);
}
.ride-card__image img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Badges */
.ride-card__badge {
    position: absolute; top: 0.7rem; left: 0.7rem;
    font-family: var(--font-head);
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.22rem 0.6rem; border-radius: 100px;
    white-space: nowrap;
}
.ride-card__badge--thrill  { background: #b52c1e; color: #fff; }
.ride-card__badge--family  { background: var(--green); color: #fff; }
.ride-card__badge--kiddie  { background: #1f5fa6; color: #fff; }
.ride-card__badge--general { background: var(--blue); color: #fff; }

.ride-card__body { padding: 1.15rem 1.35rem 1.35rem; }
.ride-card__name {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
    color: var(--green); margin-bottom: 0.35rem;
}
.ride-card__tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.ride-card__stats   { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.ride-card__stat {
    font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 0.25rem;
}
.ride-card__stat span { color: var(--gold); }

/* ── Ride Filter ────────────────────────────────────────────── */
.ride-filter {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.ride-filter__btn {
    font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    padding: 0.55rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 100px;
    background: var(--white); color: var(--text-muted);
    cursor: pointer; transition: all var(--transition);
}
.ride-filter__btn:hover      { border-color: var(--green); color: var(--green); }
.ride-filter__btn.active     { background: var(--green); border-color: var(--green); color: var(--white); }
.ride-filter__btn[data-filter="thrill"].active { background: #b52c1e; border-color: #b52c1e; }
.ride-filter__btn[data-filter="family"].active { background: var(--green); border-color: var(--green); }
.ride-filter__btn[data-filter="kiddie"].active { background: #1f5fa6; border-color: #1f5fa6; }

/* ── Event Cards ────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.event-card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card__image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--blue) 0%, #1a3020 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
}
.event-card__image img {
    width: 100%; height: 100%; object-fit: cover;
}
.event-card__body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.event-card__date {
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.13em;
    color: var(--gold); margin-bottom: 0.45rem;
}
.event-card__name {
    font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
    color: var(--green); margin-bottom: 0.55rem;
}
.event-card__desc { font-size: 0.88rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.event-card__link {
    font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold);
    align-self: flex-start;
}
.event-card__link:hover { color: var(--gold-light); }

/* ── About Split ────────────────────────────────────────────── */
.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4.5rem; align-items: center;
}
.about-split__image {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(148deg, #0f2215 0%, var(--blue) 55%, #0c1d2e 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
}
.about-split__image-inner { text-align: center; }
.about-split__content .eyebrow { margin-bottom: 0.75rem; }
.about-split__content h2 { margin-bottom: 1rem; }
.about-split__content p { font-size: 1rem; margin-bottom: 1.1rem; }

.about-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; margin: 1.75rem 0;
    background: var(--green-light);
    border-radius: var(--radius-md);
    border: 1px solid #c8d8c9;
    overflow: hidden;
}
.about-stat {
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid #c8d8c9;
}
.about-stat:last-child { border-right: none; }
.about-stat__number {
    font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
    color: var(--green); display: block; line-height: 1; margin-bottom: 0.3rem;
}
.about-stat__label {
    font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.09em; color: var(--text-muted); font-weight: 600;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
    background: var(--green); position: relative; overflow: hidden;
    text-align: center; padding: 5.5rem 1.5rem;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(149,105,42,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 0.8rem; }
.cta-banner p  {
    color: rgba(255,255,255,0.75); position: relative;
    max-width: 480px; margin: 0 auto 2.25rem; font-size: 1.05rem;
}
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Hours Page ─────────────────────────────────────────────── */
.hours-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3.5rem; align-items: start; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th {
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted);
    text-align: left; padding: 0.65rem 1rem; border-bottom: 2px solid var(--border);
    background: #f9f7f4;
}
.hours-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text); }
.hours-table tr:last-child td { border-bottom: none; }

/* Pricing */
.pricing-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 1.75rem; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.pricing-card--featured { background: var(--green); border-color: var(--green); }
.pricing-card h3 { margin-bottom: 0.2rem; }
.pricing-card--featured h3 { color: var(--white); }
.pricing-card--featured p { color: rgba(255,255,255,0.72); }
.price {
    font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
    color: var(--green); line-height: 1; margin: 0.85rem 0 0.2rem;
}
.price sup { font-size: 1.1rem; font-weight: 700; vertical-align: top; margin-top: 0.55rem; }
.pricing-card--featured .price { color: var(--gold-light); }
.price-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.pricing-card--featured .price-label { color: rgba(255,255,255,0.6); }
.pricing-features { list-style: none; margin: 0 0 1.25rem; }
.pricing-features li {
    padding: 0.45rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.87rem; color: var(--text-muted);
    display: flex; gap: 0.5rem; align-items: flex-start;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.pricing-card--featured .pricing-features li { border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.78); }
.pricing-card--featured .pricing-features li::before { color: var(--gold-light); }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.contact-info-item__icon {
    width: 42px; height: 42px; background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
}
.contact-info-item__label {
    font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.2rem;
}
.contact-info-item__value { color: var(--text); font-size: 0.92rem; }

.contact-form {
    background: var(--white); padding: 2.25rem;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 1.35rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block; font-family: var(--font-head);
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text); margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.93rem; color: var(--text);
    background: var(--white); transition: border-color var(--transition);
    -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── About Page ─────────────────────────────────────────────── */
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    gap: 2rem; margin-top: 3rem;
}
.team-card { text-align: center; }
.team-card__photo {
    width: 110px; height: 110px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    margin: 0 auto 0.9rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; border: 3px solid var(--border);
}
.team-card__name { font-family: var(--font-head); font-weight: 700; color: var(--green); margin-bottom: 0.2rem; }
.team-card__role { font-size: 0.83rem; color: var(--text-muted); }

/* Timeline */
.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before {
    content: ''; position: absolute; left: 0; top: 0.55rem; bottom: 0;
    width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 2rem; padding-left: 1.25rem; }
.timeline-item::before {
    content: ''; position: absolute; left: -2.2rem; top: 0.35rem;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--gold); border: 2px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item__year {
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.2rem;
}
.timeline-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.timeline-item p  { font-size: 0.88rem; }

/* ── Placeholder Image ──────────────────────────────────────── */
.placeholder-img {
    aspect-ratio: 16/9;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-head); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.1em; gap: 0.4rem;
}
.placeholder-img__icon { font-size: 2.5rem; opacity: 0.35; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--blue); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { height: 56px; width: auto; margin-bottom: 0.9rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand__name {
    font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
    color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem;
}
.footer-brand__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.48); margin-bottom: 1rem; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer-social__link {
    width: 34px; height: 34px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}
.footer-social__link:hover { background: var(--gold); color: var(--white); }
.footer-social__link svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--gold-light); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 0.35rem; }
.footer-col p a { color: rgba(255,255,255,0.6); }
.footer-col p a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between;
    align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Utility / Post Content ─────────────────────────────────── */
.post-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.page-content h2,
.page-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content ul,
.page-content ol { padding-left: 1.5rem; color: var(--text-muted); margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.4rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .about-split   { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-split__image { aspect-ratio: 16/8; }
    .hours-grid    { grid-template-columns: 1fr; }
    .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    /* Mobile nav */
    .site-nav {
        display: none;
        position: absolute; top: 70px; left: 0; right: 0;
        background: var(--green);
        flex-direction: column; align-items: stretch;
        padding: 0.75rem 1.5rem 1.25rem;
        gap: 0.1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .site-nav.open { display: flex; }
    .site-nav a    { padding: 0.7rem 0.9rem; }
    .site-nav .btn--primary { margin: 0.5rem 0 0; text-align: center; justify-content: center; }
    .nav-toggle { display: flex; }

    /* Info strip stacks */
    .info-strip__inner { grid-template-columns: 1fr; }
    .info-strip__item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .info-strip__item:last-child { border-bottom: none; }

    .rides-grid  { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .about-stat  { border-right: none; border-bottom: 1px solid #c8d8c9; }
    .about-stat:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero        { min-height: 72vh; }
    .section     { padding: 3.5rem 0; }
    .hero__content { padding-bottom: 4rem; }
    .contact-form  { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1        { font-size: 2rem; }
    .hero__ctas     { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { text-align: center; justify-content: center; }
    .ride-filter    { flex-direction: column; align-items: flex-start; }
    .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
