/*
Theme Name: Morden Legion
Theme URI: https://legion.heinrichsonline.ca
Author: Shelly Heinrichs
Description: Custom theme for Royal Canadian Legion Branch #11, Morden, Manitoba. Ported from hand-coded static HTML/CSS.
Version: 1.0
Text Domain: morden-legion
*/

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --red:        #E51937;
  --red-dark:   #C0152E;
  --red-pale:   #FEF0F2;
  --navy:       #131931;
  --navy-mid:   #1C2540;
  --cream:      #FAF8F5;
  --cream-dark: #F0EBE3;
  --white:      #FFFFFF;
  --text:       #1E1E2C;
  --text-mid:   #3D3D50;
  --text-muted: #6A6A80;
  --border:     #E0DAD2;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.eyebrow-dash { display: none; }
.eyebrow-text {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow-text--light { color: rgba(255,255,255,0.7); }
.eyebrow-dash--light { background: rgba(255,255,255,0.5); }

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
}
.section-heading em { font-style: italic; color: var(--red); }
.section-heading--light { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  cursor: pointer; border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }

.btn-red {
  background: var(--red); color: #fff; border-color: var(--red);
  box-shadow: 0 4px 16px rgba(229,25,55,0.25);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 6px 24px rgba(229,25,55,0.35); }

.btn-outline-dark {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  padding: 0 1.25rem;
  max-width: 1160px; margin: 0 auto;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img {
  height: 48px; width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.nav-brand-words { display: flex; flex-direction: column; }
.nav-brand-words .sub {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}
.nav-brand-words .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  display: flex; align-items: center;
  height: 44px; padding: 0 0.9rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: #fff; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center;
  height: 44px; padding: 0 0.9rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); background: none; border: none; cursor: pointer;
  border-radius: 4px; gap: 0.3rem; font-family: 'DM Sans', sans-serif;
  transition: color 0.18s, background 0.18s;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger[aria-expanded="true"], .nav-dropdown-trigger.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--navy-mid); border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  list-style: none; min-width: 180px; z-index: 300;
  border: 1px solid rgba(255,255,255,0.08); padding: 0.35rem 0;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu li a {
  display: block; height: auto; padding: 0.65rem 1rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none; border-radius: 0;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-drawer-group-title { padding: 0.9rem 1.5rem 0.25rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.nav-join {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 4px;
}
.nav-join:hover { background: var(--red-dark) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: none; border: none;
  color: #fff; cursor: pointer; border-radius: 4px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1rem 1rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: flex; align-items: center;
  min-height: 52px; padding: 0 1rem;
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none; border-radius: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-drawer-join {
  background: var(--red) !important;
  color: #fff !important;
  justify-content: center;
  margin-top: 0.5rem;
  border-radius: 4px !important;
  border-bottom: none !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════════════════════════
   HERO — light, welcoming
══════════════════════════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding: 3rem 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(229,25,55,0.04) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.hero-eyebrow-dash { display: none; }
.hero-eyebrow-text {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}
.hero-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.hero-heading .accent { display: block; font-style: italic; color: var(--red); }
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-body {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-building-mobile { display: none; }
.hero-emblem { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hero-emblem-wrap {
  width: 560px; height: 400px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: radial-gradient(ellipse 96% 94% at 56% 50%, black 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 94% at 56% 50%, black 62%, transparent 100%);
}
.hero-emblem-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ══════════════════════════════════════════════════════════
   INFO STRIP
══════════════════════════════════════════════════════════ */
.info-strip { background: var(--red); }
.info-strip-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-block {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.1rem 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.info-block:last-child { border-right: none; }
.info-block-icon { width: 20px; height: 20px; color: rgba(255,255,255,0.75); flex-shrink: 0; }
.info-block-text { min-width: 0; }
.info-block-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
}
.info-block-value {
  font-size: 0.9rem; font-weight: 600;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about { padding: 3.5rem 1.25rem; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: center; }
.about-body p { font-size: 1.05rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 1.25rem; }
.about-body p:last-of-type { margin-bottom: 0; }
.about-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem; font-weight: 700;
  color: var(--red); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.2rem; display: block;
}
.about-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.about-card img { width: 160px; height: auto; display: block; margin: 0 auto; }
.about-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-top: 1.5rem;
}
.about-card-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ══════════════════════════════════════════════════════════
   CALENDAR
══════════════════════════════════════════════════════════ */
.cal-section { padding: 3.5rem 1.25rem; background: var(--cream-dark); }
.cal-recurring {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem 0.6rem;
  margin-bottom: 2.5rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.cal-recurring-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-right: 0.1rem; white-space: nowrap;
}
.cal-recurring-item {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; font-weight: 500; color: var(--text-mid);
  background: var(--cream-dark); padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.cal-recurring-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.cal-upcoming-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.75rem;
}
.cal-upcoming-scroll {
  display: flex; gap: 0.75rem;
  overflow-x: auto; padding-bottom: 0.5rem; margin-bottom: 2.5rem;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cal-upcoming-scroll::-webkit-scrollbar { display: none; }
.cal-upcoming-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 1.1rem 1.25rem;
  min-width: 175px; max-width: 210px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cal-upcoming-card:hover { box-shadow: 0 6px 24px rgba(19,25,49,0.1); transform: translateY(-2px); }
.cal-upcoming-card:active { transform: translateY(0); }
.cal-upcoming-date {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.35rem;
}
.cal-upcoming-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); line-height: 1.2; margin-bottom: 0.25rem;
}
.cal-upcoming-time { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.cal-wrap {
  background: var(--white);
  border-radius: 8px; border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 4px 20px rgba(19,25,49,0.06);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cal-month-label { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.cal-nav-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; color: #fff; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  -webkit-user-select: none; user-select: none;
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.35); }
.cal-nav-btn:active { transform: scale(0.94); }
.cal-day-headers { display: grid; grid-template-columns: repeat(7, 1fr); background: var(--cream); border-bottom: 1px solid var(--border); }
.cal-day-header { text-align: center; padding: 0.55rem 0; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-cell {
  min-height: 80px; padding: 0.45rem 0.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; transition: background 0.15s;
  overflow: hidden; min-width: 0;
}
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell--other { background: var(--cream); }
.cal-cell--other .cal-cell-num { color: var(--text-muted); opacity: 0.35; }
.cal-cell--has-events { cursor: pointer; }
.cal-cell--has-events:hover { background: #f5eff0; }
.cal-cell--today.cal-cell--has-events:hover { background: #fce0e5; }
.cal-cell-num {
  font-size: 0.82rem; font-weight: 500; color: var(--text);
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; line-height: 1;
}
.cal-cell--today .cal-cell-num { background: var(--red); color: #fff; font-weight: 700; }
.cal-cell-event-label {
  display: block;
  font-size: 0.58rem; font-weight: 700; color: var(--red);
  line-height: 1.2; margin-top: 0.2rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
.cal-cell-event-label--special { color: var(--navy); }
.cal-cell-event-time {
  display: block;
  font-size: 0.54rem; color: var(--text-muted); font-weight: 500; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .cal-cell { min-height: 100px; padding: 0.55rem 0.65rem; }
  .cal-cell-event-label { font-size: 0.67rem; }
  .cal-cell-event-time { font-size: 0.6rem; }
}
.cal-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(19,25,49,0.7);
  z-index: 900;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.cal-modal-overlay.open { opacity: 1; pointer-events: all; }
@media (min-width: 600px) { .cal-modal-overlay { align-items: center; } }
.cal-modal {
  background: var(--white);
  border-radius: 16px 16px 0 0;
  width: 100%; max-width: 100%; max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.cal-modal-overlay.open .cal-modal { transform: translateY(0); }
@media (min-width: 600px) {
  .cal-modal { border-radius: 12px; max-width: 440px; width: 92%; transform: translateY(24px) scale(0.95); transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1); }
  .cal-modal-overlay.open .cal-modal { transform: translateY(0) scale(1); }
}
.cal-modal-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 0.75rem auto 0; display: block; }
@media (min-width: 600px) { .cal-modal-handle { display: none; } }
.cal-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem 0.9rem; border-bottom: 1px solid var(--border); }
.cal-modal-date { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); }
.cal-modal-close {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border: none; background: var(--cream-dark);
  border-radius: 50%; cursor: pointer; color: var(--text);
  font-size: 1.2rem; line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.cal-modal-close:hover { background: var(--border); }
.cal-modal-close:active { transform: scale(0.9); }
.cal-modal-body { padding: 1.1rem 1.4rem 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.cal-modal-event { padding: 0.9rem 1.1rem; background: var(--cream); border-radius: 8px; border-left: 4px solid var(--red); }
.cal-modal-event--special { border-left-color: var(--navy); }
.cal-modal-event-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.cal-modal-event-time { font-size: 0.88rem; font-weight: 600; color: var(--red); margin-bottom: 0.35rem; }
.cal-modal-event--special .cal-modal-event-time { color: var(--navy); }
.cal-modal-event-desc { font-size: 0.88rem; line-height: 1.6; color: var(--text-mid); }
.cal-modal-event-poster { display: inline-block; margin-top: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--red); text-decoration: none; border-bottom: 1px solid currentColor; }
.cal-modal-event-poster:hover { opacity: 0.75; }

/* ══════════════════════════════════════════════════════════
   JACKPOTS
══════════════════════════════════════════════════════════ */
.jackpots { background: var(--red); padding: 2.75rem 1.25rem; }
.jackpots-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.jackpots-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.jackpots-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #fff; }
.jackpots-note { font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.75); margin-top: 0.75rem; }
.jackpots-cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.jackpot-card { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; padding: 1.5rem 2rem; min-width: 190px; text-align: center; }
.jackpot-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.35rem; }
.jackpot-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; font-weight: 700; color: #fff; line-height: 1; }
.jackpot-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }

/* ══════════════════════════════════════════════════════════
   MENU
══════════════════════════════════════════════════════════ */
.menu-section { padding: 3.5rem 1.25rem; background: var(--white); }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; margin-top: 2.5rem;
}
.menu-item { background: var(--white); padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: background 0.2s; }
.menu-item:hover { background: var(--cream); }
.menu-item-name { font-size: 1rem; font-weight: 500; color: var(--text); }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--red); white-space: nowrap; }
.menu-special { background: var(--navy); grid-column: 1 / -1; padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.menu-special-left { display: flex; align-items: center; gap: 0.75rem; }
.menu-special-name { font-size: 1rem; font-weight: 600; color: #fff; }
.menu-special-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 0.2rem 0.55rem; border-radius: 3px; white-space: nowrap;
}
.menu-special-price { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: #fff; }

/* ══════════════════════════════════════════════════════════
   HALL RENTAL
══════════════════════════════════════════════════════════ */
.hall { padding: 3.5rem 1.25rem; background: var(--cream-dark); }
.hall-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.hall-image { border-radius: 8px; overflow: hidden; background: var(--navy); height: 340px; box-shadow: 0 12px 40px rgba(19,25,49,0.15); position: relative; }
.hall-image img { width: 100%; height: 100%; object-fit: cover; }
.hall-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,25,49,0.65) 0%, transparent 55%); }
.hall-image-caption { position: absolute; bottom: 1.25rem; left: 1.25rem; }
.hall-image-caption-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.hall-text p { font-size: 1.05rem; line-height: 1.78; color: var(--text-mid); margin-top: 1.25rem; }
.hall-contact { margin-top: 2rem; background: var(--white); border-radius: 8px; padding: 1.4rem 1.5rem; border-left: 4px solid var(--red); box-shadow: 0 2px 12px rgba(19,25,49,0.06); }
.hall-contact-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.hall-contact-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.hall-contact-phone { font-size: 0.95rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ══════════════════════════════════════════════════════════
   VETERAN BIOS CALLOUT (homepage)
══════════════════════════════════════════════════════════ */
.veterans { padding: 3rem 1.25rem; background: var(--navy); }
.veterans-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.veterans-text .section-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.veterans-text p { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.65); margin-top: 0.85rem; max-width: 540px; }

/* ══════════════════════════════════════════════════════════
   QUICK LINKS
══════════════════════════════════════════════════════════ */
.quicklinks { padding: 3rem 1.25rem; background: var(--cream); }
.quicklinks-intro { font-size: 1.05rem; color: var(--text-mid); margin-top: 0.75rem; max-width: 520px; line-height: 1.75; }
.quicklinks-grid { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.5rem; align-items: center; }
.quicklink-card {
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; padding: 0.25rem;
  text-decoration: none; transition: transform 0.2s, opacity 0.2s; border-radius: 6px;
}
.quicklink-card:hover { transform: scale(1.12); opacity: 0.85; }
.quicklink-card:active { transform: scale(1.05); }
.quicklink-card:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.quicklink-icon-wrap { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.quicklink-icon { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.quicklink-icon--lg { transform: scale(1.4); }

/* ══════════════════════════════════════════════════════════
   PAGE HEADERS (interior pages)
══════════════════════════════════════════════════════════ */
.page-header { background: var(--navy); padding: 4rem 1.25rem 3.5rem; }
.page-header h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; }
.page-header h1 em { font-style: italic; color: var(--red); }
.page-header p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; max-width: 520px; }

/* ══════════════════════════════════════════════════════════
   MEMBERSHIP PAGE
══════════════════════════════════════════════════════════ */
.mem-header { background: var(--cream); padding: 4rem 1.25rem 3.5rem; border-bottom: 1px solid var(--border); }
.mem-header-inner { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 900px) {
  .mem-header-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .mem-centennial { justify-self: center; }
}
.mem-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.mem-header h1 em { font-style: italic; color: var(--red); }
.mem-header p { font-size: 1.1rem; line-height: 1.75; color: var(--text-mid); max-width: 520px; }
.mem-centennial { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.mem-centennial-img { width: 100%; max-width: 420px; }
.mem-centennial-img img { width: 100%; height: auto; display: block; mix-blend-mode: multiply; }
.mem-centennial-offer {
  background: var(--red); color: #fff;
  border-radius: 100px; padding: 0.45rem 1.4rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(229,25,55,0.3);
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.mem-centennial-offer:hover { background: var(--red-dark); box-shadow: 0 6px 24px rgba(229,25,55,0.4); }
@media (max-width: 900px) {
  .mem-centennial { align-self: center; width: 100%; }
  .mem-centennial-img { max-width: 100%; }
}
.mem-benefits { padding: 5rem 1.25rem; background: var(--white); }
.mem-benefits-intro { margin-bottom: 2.5rem; }
.mem-benefits-intro p { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-top: 0.75rem; max-width: 640px; }
.mem-benefits-note { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--cream-dark); border-radius: 6px; padding: 0.6rem 1rem; margin-top: 1.25rem; font-size: 0.9rem; color: var(--text-mid); }
.mem-benefits-note strong { color: var(--text); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--cream); border-radius: 8px; padding: 1rem 1.1rem; border: 1px solid var(--border); }
.benefit-check { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.benefit-check svg { width: 11px; height: 11px; color: #fff; }
.benefit-text { font-size: 0.95rem; line-height: 1.5; color: var(--text-mid); }
.mem-types { padding: 5rem 1.25rem; background: var(--cream-dark); }
.mem-types-intro p { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-top: 0.75rem; max-width: 600px; }
.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.type-card { background: var(--white); border-radius: 8px; padding: 1.75rem; border: 1px solid var(--border); border-left: 4px solid var(--red); transition: box-shadow 0.25s; }
.type-card:hover { box-shadow: 0 6px 24px rgba(19,25,49,0.08); }
.type-card-name { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.type-card-desc { font-size: 0.95rem; line-height: 1.65; color: var(--text-mid); }
.mem-eligibility { padding: 5rem 1.25rem; background: var(--cream); }
.mem-eligibility-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.eligibility-box { background: var(--red-pale); border: 1px solid rgba(229,25,55,0.2); border-radius: 8px; padding: 1.75rem 2rem; }
.eligibility-box-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.eligibility-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.eligibility-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--text-mid); }
.eligibility-list li::before { content: '✓'; color: var(--red); font-weight: 700; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.eligibility-fine-print { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(229,25,55,0.15); }
.mem-ctas-block h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.mem-ctas-block p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.mem-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .mem-eligibility-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mem-header { padding: 3rem 1.25rem 2.5rem; }
}
@media (max-width: 540px) { .mem-ctas .btn { width: 100%; justify-content: center; } }

/* ══════════════════════════════════════════════════════════
   VOLUNTEERS PAGE
══════════════════════════════════════════════════════════ */
.vol-header { background: var(--navy); padding: 4rem 1.25rem 3.5rem; }
.vol-header-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.vol-header h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.vol-header h1 em { font-style: italic; color: var(--red); }
.vol-header p { color: rgba(255,255,255,0.7); max-width: 540px; font-size: 1.05rem; line-height: 1.7; }
.vol-print-btn {
  flex-shrink: 0; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; min-height: 48px;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.25); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.vol-print-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.vol-print-btn:active { transform: scale(0.98); }
.schedule-section { padding: 4rem 1.25rem; border-bottom: 1px solid var(--border); }
.schedule-section:last-of-type { border-bottom: none; }
.schedule-section:nth-child(even) { background: var(--cream); }
.schedule-inner { max-width: 1160px; margin: 0 auto; }
.schedule-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.schedule-heading-row h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
.schedule-heading-row h2 em { font-style: italic; color: var(--red); }
.schedule-sub { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }
.schedule-table-wrap { overflow-x: auto; }
.schedule-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.schedule-table th {
  background: var(--navy); color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1rem; text-align: left;
}
.schedule-table td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--cream-dark); }
.schedule-table .month-group td {
  background: var(--red-pale); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); padding: 0.4rem 1rem;
}
.schedule-table .no-bingo td { color: var(--red); font-weight: 700; }
.schedule-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
@media (max-width: 700px) { .schedule-two-col { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .vol-header-inner { flex-direction: column; } }
@media print {
  .nav, .vol-print-btn, .footer { display: none !important; }
  .vol-header { background: #fff !important; padding: 1rem 0 1.5rem; }
  .vol-header h1, .vol-header p { color: #000 !important; }
  .schedule-section { padding: 1.5rem 0; page-break-inside: avoid; }
  .schedule-table th { background: #1a1a1a !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .schedule-table .month-group td { background: #f5f5f5 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { font-size: 13px; }
  .schedule-section:nth-child(even) { background: #fff !important; }
}

/* ══════════════════════════════════════════════════════════
   EXECUTIVE PAGE
══════════════════════════════════════════════════════════ */
.exec-header { background: var(--navy); padding: 4rem 1.25rem 3.5rem; }
.exec-header h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; }
.exec-header h1 em { font-style: italic; color: var(--red); }
.exec-header p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; max-width: 520px; }
.exec-section { padding: 4rem 1.25rem 5rem; }
.exec-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; }
.exec-card { text-align: center; }
.exec-photo-wrap { width: 200px; height: 240px; margin: 0 auto 1.1rem; overflow: hidden; border-radius: 6px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.exec-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.exec-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.exec-role { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-top: 0.2rem; }
@media (max-width: 760px) {
  .exec-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .exec-photo-wrap { width: 160px; height: 192px; }
}
@media (max-width: 480px) { .exec-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   COMMITTEES PAGE
══════════════════════════════════════════════════════════ */
.committee-section { padding: 4rem 1.25rem 5rem; }
.committee-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem 1.5rem; }
.committee-card { text-align: center; }
.committee-photo-wrap { width: 160px; height: 200px; margin: 0 auto 1.1rem; overflow: hidden; border-radius: 6px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.committee-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.committee-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.committee-role { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-top: 0.2rem; }
@media (max-width: 800px) { .committee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .committee-grid { grid-template-columns: 1fr; } .committee-photo-wrap { width: 180px; height: 225px; } }

/* ══════════════════════════════════════════════════════════
   VETERAN'S INFO / GENERIC CONTENT PAGE
══════════════════════════════════════════════════════════ */
.content-section { padding: 4rem 1.25rem 5rem; }
.content-inner { max-width: 720px; margin: 0 auto; }
.content-inner p { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: var(--navy); }
.footer-top {
  max-width: 1160px; margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 52px; margin-bottom: 1rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.footer-brand-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-quote { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.35); margin-top: 1.25rem; line-height: 1.65; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { margin-bottom: 0.9rem; }
.footer-contact-list .lbl { display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.15rem; }
.footer-contact-list .val { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.footer-contact-list a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--red); }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 0.6rem; }
.footer-links-list a { font-size: 0.95rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links-list a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-lest { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: rgba(229,25,55,0.6); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3rem 1.25rem 2.5rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-emblem { display: none; }
  .hero-building-mobile {
    display: block;
    width: 100%; margin: 1.25rem 0;
    overflow: hidden; border-radius: 10px;
    -webkit-mask-image: radial-gradient(ellipse 96% 94% at 50% 50%, black 58%, transparent 100%);
    mask-image: radial-gradient(ellipse 96% 94% at 50% 50%, black 58%, transparent 100%);
  }
  .hero-building-mobile img { width: 100%; height: 220px; object-fit: cover; object-position: center; display: block; }
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .info-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .info-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .info-block:nth-last-child(-n+2) { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card { display: none; }
  .jackpots-inner { flex-direction: column; align-items: flex-start; }
  .jackpots-cards { width: 100%; }
  .jackpot-card { flex: 1; min-width: 140px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-special { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .menu-special-left { flex-wrap: wrap; }
  .membership-types { grid-template-columns: 1fr; }
  .hall-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hall-image { height: 260px; }
  .veterans-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .about        { padding: 3rem 1.25rem; }
  .quicklinks   { padding: 2.75rem 1.25rem; }
  .cal-section  { padding: 3rem 1.25rem; }
  .jackpots     { padding: 2.5rem 1.25rem; }
  .menu-section { padding: 3rem 1.25rem; }
  .hall         { padding: 3rem 1.25rem; }
  .veterans     { padding: 3rem 1.25rem; }
}

@media (max-width: 540px) {
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-block { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .info-block:last-child { border-bottom: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-special { gap: 0.75rem; }
  .jackpots-cards { flex-direction: column; }
  .jackpot-card { min-width: unset; }
  .hero-heading { font-size: 2.25rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}
