/* ==========================================================================
   HHS MCJROTC Booster — shared styles (v2: moody navy + scarlet)
   Palette: school navy #002554 + silver #A5ACB3 + USMC scarlet #BA0C2F
   Fonts: Oswald (condensed display) + Inter (body)
   ========================================================================== */

:root {
  --navy:      #002554;   /* school navy — primary, moody */
  --navy-900:  #001a3d;   /* deepest navy for gradient depth */
  --navy-700:  #013a7a;   /* lifted navy */
  --silver:    #a7a9ac;   /* school silver/gray — secondary */
  --silver-lt: #d7d9dd;
  --scarlet:   #ba0c2f;   /* USMC scarlet — accent, used sparingly */
  --scarlet-2: #d61f40;
  --ink:       #14202e;   /* body text */
  --muted:     #5c6470;   /* secondary text */
  --line:      #e2e5ea;   /* hairlines */
  --tint:      #eff2f6;   /* cool wash */
  --tint-2:    #f7f8fa;
  --white:     #ffffff;
  --black:     #0a0f18;
  --shadow:    0 14px 38px rgba(0, 37, 84, 0.16);
  --shadow-sm: 0 6px 18px rgba(0, 37, 84, 0.10);
  --radius:    14px;
  --maxw:      1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
p { margin: 0 0 1rem; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* --- Line balancing: even out centered blocks, prevent orphans --------------
   balance = evenly distributes lines in short/centered text (headings, mission);
   pretty  = keeps a fuller last line in long body copy (bios, prose).          */
.hero h1, .hero .lede,
.section-head h2, .section-head p,
.mission p, .mission .tagline,
.welcome .prose p,
.driver h3, .join h2, .join p,
.cta-card h3 { text-wrap: balance; }
.prose p, .person p, .cta-card p, .chair-card p { text-wrap: pretty; }

/* --- Chevron motif (echoes the logo's H) ---------------------------------- */
.chevrons { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.chevrons::before, .chevrons::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 150%; height: 46%;
  transform: translate(-50%, -50%) skewX(-24deg);
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.05) 0 64px, rgba(255,255,255,0) 64px 190px);
}
.chevrons::after { transform: translate(-50%, -50%) skewX(24deg); opacity: .55; }

/* --- Scroll-reveal animation ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 20px; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand .brand-text b {
  font-family: "Oswald", sans-serif; font-weight: 600; color: var(--navy);
  font-size: 16px; letter-spacing: .04em; text-transform: uppercase;
}
.brand .brand-text span { font-size: 11px; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links .cart { margin-left: 6px; }
.nav-links .btn-donate { margin-left: 4px; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 8px 13px; border-radius: 8px;
}
.nav-links a:hover { background: var(--tint); text-decoration: none; }
.nav-links a.active { color: var(--navy); background: var(--tint); }

/* Nav dropdown (Fundraising → Vet Pfest) */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item.has-sub > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-item.has-sub > a::after {
  content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px); opacity: .55; transition: transform .15s ease, opacity .15s ease;
}
.nav-item.has-sub::after { /* invisible hover bridge so the menu doesn't close in the gap */
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.nav-item .sub {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 214px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); padding: 7px; z-index: 60;
}
.nav-item.has-sub:hover > a::after, .nav-item.has-sub:focus-within > a::after { transform: rotate(45deg) translateY(1px); opacity: 1; }
.nav-item.has-sub:hover .sub, .nav-item.has-sub:focus-within .sub { display: block; }
.nav-links .sub a { display: block; width: 100%; padding: 9px 12px; border-radius: 7px; font-size: 14.5px; white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Oswald", sans-serif; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; font-size: 14px;
  padding: 12px 22px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-scarlet { background: var(--scarlet); color: #fff; box-shadow: 0 6px 16px rgba(186,12,47,.28); }
.btn-scarlet:hover { background: var(--scarlet-2); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--tint); }
.btn-light { background: #fff; color: var(--scarlet); box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.btn-light:hover { background: #eef0f3; color: var(--scarlet-2); }

.nav .fb, .nav .cart {
  width: 40px; height: 40px; padding: 0; border-radius: 50%; display: grid; place-items: center;
  background: var(--tint); color: var(--navy); font-weight: 800; font-family: Georgia, serif;
}
.nav .fb:hover, .nav .cart:hover { background: var(--navy); color: #fff; text-decoration: none; }
.nav .cart svg { display: block; }
/* Donate button (override .nav-links a inherited colors + hover background) */
.nav-links a.btn-donate { color: #e9ecf0; }
.nav-links a.btn-donate:hover { background: var(--navy); color: #ffffff; }

/* Footer social icons (bottom nav) */
.social { display: flex; gap: 10px; margin-top: 6px; }
.social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; }
.social a:hover { background: var(--scarlet); text-decoration: none; }
.social svg { width: 18px; height: 18px; display: block; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* ==========================================================================
   Hero — full-bleed Color Guard photo, moody navy overlay
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    linear-gradient(105deg, var(--navy-900) 18%, rgba(0,26,61,0.72) 55%, rgba(0,37,84,0.35) 100%),
    var(--hero-photo, linear-gradient(120deg, var(--navy-900), var(--navy-700)));
  background-size: cover; background-position: center 30%;
}
.hero::after { /* darken bottom for footer-badge legibility */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,20,45,.55), transparent 40%); z-index: 0;
}
.hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }
.hero .rally {
  display: inline-block; font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: .22em; font-weight: 600; font-size: 15px; color: #fff;
  background: var(--scarlet); padding: 7px 16px; border-radius: 4px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(38px, 6vw, 74px); text-transform: uppercase; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero .lede { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,.9); max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .next-event {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 34px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  padding: 10px 18px; border-radius: 999px; font-size: 14px; letter-spacing: .02em;
}
.hero .next-event .pill {
  width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--navy);
  display: grid; place-items: center; flex: none; font-size: 15px;
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section { padding: 76px 0; position: relative; }
.section.tint { background: var(--tint-2); }
.section.navy { background: var(--navy); color: #fff; overflow: hidden; }
.section.navy .section-head h2 { color: #fff; }
.section.navy .section-head p { color: var(--silver); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head .kicker {
  color: var(--scarlet); font-family: "Oswald", sans-serif; letter-spacing: .2em;
  text-transform: uppercase; font-size: 13px; font-weight: 600; margin-bottom: 10px;
}
.section.navy .section-head .kicker { color: var(--scarlet-2); }
.section.navy .teaser p, .section.navy .prose p { color: var(--silver); }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); text-transform: uppercase; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 17px; }
.rule-scarlet { width: 66px; height: 4px; background: var(--scarlet); border-radius: 2px; margin: 14px auto 0; }

/* Welcome band */
.welcome { text-align: center; }
.welcome .prose { max-width: 720px; margin: 0 auto; }
.welcome .prose p { font-size: 18px; color: #333a46; }

/* Mission strip (moody navy) */
.mission { background: var(--navy); color: #fff; position: relative; overflow: hidden; text-align: center; padding: 64px 0; }
.mission .container { position: relative; z-index: 1; max-width: 900px; }
.mission .rule-scarlet { margin: 0 auto 22px; }
.mission p { font-size: clamp(19px, 2.5vw, 26px); font-family: "Oswald", sans-serif; font-weight: 300; line-height: 1.4; margin: 0; }
.mission .tagline { font-family: "Inter", sans-serif; font-size: 15px; color: var(--silver); letter-spacing: .04em; margin-top: 20px; }

/* Drivers strip */
.drivers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.driver {
  text-align: center; padding: 30px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); border-top: 4px solid var(--scarlet);
}
.driver .num { font-family: "Oswald", sans-serif; color: var(--silver); font-size: 30px; line-height: 1; }
.driver h3 { color: var(--navy); font-size: 21px; text-transform: uppercase; margin: 10px 0 0; }

/* ==========================================================================
   Events
   ========================================================================== */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card {
  display: flex; gap: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.date-badge { flex: none; width: 70px; text-align: center; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.date-badge .m { background: var(--scarlet); color: #fff; font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; padding: 5px 0; }
.date-badge .d { font-family: "Oswald", sans-serif; font-size: 32px; color: var(--navy); padding: 6px 0 2px; line-height: 1; }
.date-badge .y { font-size: 11px; color: var(--muted); padding-bottom: 6px; }
.event-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.event-card .meta { font-size: 14px; color: var(--muted); margin: 0; }
.event-card .meta.time { color: var(--scarlet); font-weight: 700; }

/* ==========================================================================
   Get Involved (Volunteer / Fundraise)
   ========================================================================== */
.cta-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: 18px; padding: 42px;
  color: #fff; box-shadow: var(--shadow); min-height: 250px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cta-card.navy { background: linear-gradient(140deg, var(--navy-900), var(--navy-700)); }
.cta-card.scarlet { background: linear-gradient(140deg, #8f0a24, var(--scarlet)); }
.cta-card .eyebrow { font-family: "Oswald", sans-serif; letter-spacing: .18em; text-transform: uppercase; font-size: 13px; opacity: .85; position: relative; z-index: 1; }
.cta-card h3 { font-size: 28px; text-transform: uppercase; position: relative; z-index: 1; margin: 6px 0 8px; }
.cta-card p { position: relative; z-index: 1; opacity: .94; max-width: 42ch; }
.cta-card .btn { position: relative; z-index: 1; align-self: flex-start; margin-top: 8px; }

/* ==========================================================================
   Board / people
   ========================================================================== */
.people { display: grid; gap: 26px; max-width: 900px; margin: 0 auto; }
.person {
  display: grid; grid-template-columns: 160px 1fr; gap: 28px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease;
}
.person:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.person .portrait {
  width: 160px; height: 190px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(140deg, var(--navy-700), var(--navy)); flex: none;
  display: grid; place-items: center; color: #fff;
}
.person .portrait img { width: 100%; height: 100%; object-fit: cover; }
.person .portrait .ph { text-align: center; font-size: 12px; color: rgba(255,255,255,.8); padding: 10px; }
.person .role { color: var(--scarlet); font-family: "Oswald", sans-serif; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.person h3 { font-size: 24px; color: var(--navy); margin: 2px 0 10px; }
.person p { color: var(--muted); margin: 0; }

/* Centered section CTA */
.center-cta { text-align: center; margin-top: 40px; }

/* Legal pages (privacy / terms) */
.legal { max-width: 820px; margin: 0 auto; }
.legal h3 { color: var(--navy); font-size: 21px; text-transform: uppercase; margin: 34px 0 10px; }
.legal p, .legal li { color: #2a3240; font-size: 16px; }
.legal ul { padding-left: 22px; margin: 0 0 1rem; }
.legal li { margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.legal a { color: var(--scarlet); font-weight: 600; }

/* Board preview strip (home) */
.board-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.bp-card { text-align: center; }
.bp-card .pp {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; margin-bottom: 14px;
  background: linear-gradient(140deg, var(--navy-700), var(--navy)); box-shadow: var(--shadow-sm);
  border: 3px solid #fff; outline: 1px solid var(--line);
}
.bp-card .pp img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bp-card .role { color: var(--scarlet); font-family: "Oswald", sans-serif; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; font-weight: 600; }
.bp-card h3 { color: var(--navy); font-size: 19px; margin: 2px 0 0; }

/* Cadet photo gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .shot { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--tint); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery .shot .ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: 12.5px; padding: 12px; letter-spacing: .03em; }
.gallery .shot .ph b { display: block; color: var(--navy); font-family: "Oswald", sans-serif; letter-spacing: .06em; margin-bottom: 4px; }

/* Fundraising teaser (home, short) */
.teaser { max-width: 720px; margin: 0 auto; text-align: center; }
.teaser p { font-size: 17px; color: #2a3240; }

/* ==========================================================================
   Calendar widget (structure mirrors BoosterHub month view)
   ========================================================================== */
.cal { max-width: 980px; margin: 0 auto; }
.cal-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 8px; flex-wrap: wrap; }
.cal-tab {
  background: none; border: 0; cursor: pointer; font-family: "Oswald", sans-serif;
  text-transform: uppercase; letter-spacing: .08em; font-size: 14px; color: var(--muted);
  padding: 12px 12px; border-bottom: 3px solid transparent; transition: color .12s ease;
}
.cal-tab:hover { color: var(--navy); }
.cal-tab.active { color: var(--navy); border-bottom-color: var(--scarlet); }
.cal-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 22px 0; }
.cal-nav h3 { font-size: clamp(22px, 3vw, 32px); color: var(--navy); margin: 0; text-transform: uppercase; }
.cal-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  cursor: pointer; display: grid; place-items: center; color: var(--navy); font-size: 20px; line-height: 1;
}
.cal-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cal-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; min-width: 700px;
}
.cal-dow {
  background: var(--tint-2); color: var(--muted); font-family: "Oswald", sans-serif;
  text-transform: uppercase; letter-spacing: .06em; font-size: 12px; text-align: center; padding: 12px 0;
}
.cal-cell { min-height: 108px; padding: 8px; background: #fff; }
.cal-cell.dim { background: #fafbfc; }
.cal-daynum { font-family: "Oswald", sans-serif; color: var(--navy); font-size: 15px; }
.cal-cell.dim .cal-daynum { color: #c2c7d0; }
.cal-cell.today .cal-daynum {
  background: var(--navy); color: #fff; width: 27px; height: 27px; border-radius: 50%;
  display: inline-grid; place-items: center;
}
.cal-ev {
  display: block; margin-top: 6px; font-size: 11.5px; line-height: 1.25; padding: 5px 7px;
  border-radius: 6px; background: var(--navy); color: #fff;
}
.cal-ev.timed { background: var(--scarlet); }
.cal-ev b { display: block; font-weight: 600; }
.cal-listview { display: grid; gap: 14px; }
.cal-empty { text-align: center; color: var(--muted); padding: 34px; }

/* ==========================================================================
   Long-form (fundraising committee)
   ========================================================================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 17px; color: #2a3240; }
.prose strong { color: var(--navy); }
.chair-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--scarlet); border-radius: 10px; padding: 24px 28px; margin-top: 28px; box-shadow: var(--shadow-sm); }
.chair-card h3 { color: var(--navy); font-size: 20px; margin-bottom: 8px; }

/* Page hero (interior pages) */
.page-hero { position: relative; overflow: hidden; color: #fff; text-align: center; background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); padding: 70px 0 60px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); text-transform: uppercase; margin: 0; }

/* ==========================================================================
   Subscribe + BAND
   ========================================================================== */
.subscribe { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.subscribe form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; max-width: 940px; margin: 0 auto; }
.subscribe input { padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: inherit; background: #fff; }
.subscribe input:focus { outline: 2px solid var(--navy); border-color: var(--navy); }
.form-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }

/* Contact form */
.contact-form { max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .field { display: flex; flex-direction: column; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; color: var(--navy); display: flex; flex-direction: column; gap: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit; font-size: 15px; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--navy); border-color: var(--navy); }
.contact-form textarea { resize: vertical; }
.contact-form .submit-row { grid-column: 1 / -1; text-align: center; }
@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }

/* Navy "Join" band */
.join { background: var(--navy); color: #fff; position: relative; overflow: hidden; text-align: center; padding: 66px 0; }
.join .container { position: relative; z-index: 1; }
.join .ghost-logo { height: 92px; width: auto; margin: 0 auto 22px; display: block; opacity: .95; }
.join h2 { color: #fff; text-transform: uppercase; font-size: clamp(28px, 3.6vw, 40px); }
.join p { color: var(--silver); max-width: 52ch; margin: 0 auto 26px; }
.join .join-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); color: rgba(255,255,255,.72); padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer .foot-logo { height: 86px; width: auto; margin-bottom: 18px; }
.site-footer h4 { color: #fff; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 15px; margin: 0 0 14px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.footer-brand p { font-size: 14px; max-width: 42ch; }
.footer-note { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 12px; letter-spacing: .02em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: 13px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero .container { padding-top: 64px; padding-bottom: 64px; }
  .events, .drivers { grid-template-columns: 1fr; }
  .cta-duo { grid-template-columns: 1fr; }
  .subscribe form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .person { grid-template-columns: 1fr; }
  .person .portrait { width: 100%; height: 340px; }
  .board-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .band { flex-direction: column; text-align: center; } .band .btn { margin: 0; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 24px 18px; gap: 4px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav .fb, .nav .cart, .nav .btn-donate { display: none; }
  .nav-item { display: block; }
  .nav-item.has-sub > a::after { display: none; }
  .nav-item.has-sub::after { display: none; }
  .nav-item .sub { display: block; position: static; min-width: 0; border: 0; box-shadow: none; padding: 2px 0 6px 14px; }
  .nav-links .sub a { padding: 8px 13px; font-size: 15px; }
}
