/* ─────────────────────────────────────────────
   ARTHOUSE — Luxury Cultural Destination
   Design system: Deep charcoal · Crimson · Gold
   Type: Cormorant Garamond + Raleway
───────────────────────────────────────────── */

/* TOKENS */
:root {
  --ink:      #0F0E0C;
  --ink-mid:  #1A1714;
  --ink-soft: #3D3830;
  --grey-1:   #666057;
  --grey-2:   #8A8075;
  --grey-3:   #B8AFA6;
  --grey-4:   #D8D0C8;
  --grey-5:   #EDE8E2;
  --grey-6:   #F5F1EB;
  --cream:    #FAF7F2;
  --white:    #FEFDFB;
  --crimson:  #7B1616;
  --crimson-d:#621010;
  --crimson-l:#A82020;
  --gold:     #A8832A;
  --gold-l:   #C9A84C;
  --gold-xl:  #E4CA82;

  --font-disp: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  --radius: 0px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  --nav-h: 64px;
  --ann-h: 36px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ann-dot {
  width: 5px; height: 5px;
  background: var(--gold-l);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}
.ann-link {
  color: var(--gold-l);
  letter-spacing: 1px;
  transition: color var(--transition);
}
.ann-link:hover { color: var(--gold-xl); }

/* ─── NAVIGATION ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--grey-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-logo span { color: var(--crimson); }
.nav-links {
  display: flex;
  gap: 0;
}
.nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-1);
  padding: 0 16px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-link:hover { color: var(--crimson); }
.nav-link.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--crimson);
  color: #fff;
  padding: 10px 20px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--crimson-d);
  transform: translateY(-1px);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--ann-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 0.5px solid var(--grey-4);
  padding: 24px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-1);
  padding: 12px 0;
  border-bottom: 0.5px solid var(--grey-5);
}
.mob-cta {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--crimson);
  color: #fff;
  padding: 14px 24px;
  text-align: center;
}

/* ─── TYPOGRAPHY SYSTEM ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,0.5); }
.eyebrow-white { color: var(--gold-xl); }

.display-xl {
  font-family: var(--font-disp);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.display-l {
  font-family: var(--font-disp);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
}
.display-m {
  font-family: var(--font-disp);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}
.display-s {
  font-family: var(--font-disp);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.display-xs {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}
.body-l { font-size: 15px; color: var(--grey-1); line-height: 1.75; }
.body-m { font-size: 13px; color: var(--grey-2); line-height: 1.7; }
.body-s { font-size: 11px; color: var(--grey-2); line-height: 1.65; }

.text-white { color: #fff; }
.text-white-soft { color: rgba(255,255,255,0.75); }
.text-white-muted { color: rgba(255,255,255,0.45); }
.text-crimson { color: var(--crimson); }
.text-gold { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 24px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-crimson {
  background: var(--crimson);
  color: #fff;
}
.btn-crimson:hover {
  background: var(--crimson-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(123,22,22,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #8A6B22; }

/* ─── LAYOUT HELPERS ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 48px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.divider { height: 0.5px; background: var(--grey-4); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 11px;
  color: var(--grey-2);
  padding: 14px 48px;
  border-bottom: 0.5px solid var(--grey-4);
  background: var(--grey-6);
}
.breadcrumb a { color: var(--crimson); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── HERO BANNER ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.5s;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-inner.centered {
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.hero-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-xl);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 0.5px;
  background: var(--gold-xl);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* Page banners */
.page-banner {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  padding: 80px 80px 72px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ─── CARDS & GRIDS ─── */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-4);
}
.space-card {
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}
.space-card:hover .space-card-img img {
  transform: scale(1.05);
}
.space-card-img {
  overflow: hidden;
  height: 220px;
}
.space-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.space-card-body { padding: 24px 22px 28px; }
.space-card-num {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.space-card-title {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.space-card-sub {
  font-size: 11px;
  color: var(--grey-2);
  line-height: 1.5;
  margin-bottom: 14px;
}
.space-card-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.space-card:hover .space-card-cta { gap: 12px; }

/* Event Cards */
.event-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-4); }
.event-row {
  background: var(--white);
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: stretch;
  overflow: hidden;
  transition: background var(--transition);
}
.event-row:hover { background: var(--grey-6); }
.event-thumb {
  overflow: hidden;
}
.event-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.event-row:hover .event-thumb img { transform: scale(1.05); }
.event-body { padding: 24px 28px; }
.event-meta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-meta-dot { width: 3px; height: 3px; background: var(--grey-3); border-radius: 50%; }
.event-title {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.event-desc { font-size: 12px; color: var(--grey-2); line-height: 1.65; }
.event-cta-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 24px 28px;
  gap: 12px;
  border-left: 0.5px solid var(--grey-5);
  min-width: 180px;
}
.event-badge {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.event-badge.gold { background: rgba(168,131,42,0.1); color: var(--gold); }
.event-badge.maroon { background: rgba(123,22,22,0.08); color: var(--crimson); }
.event-badge.neutral { background: var(--grey-5); color: var(--grey-1); }

/* Featured Event */
.event-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  overflow: hidden;
  margin-bottom: 1px;
}
.event-featured-img { overflow: hidden; height: 420px; }
.event-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s;
}
.event-featured:hover .event-featured-img img { transform: scale(1.03); }
.event-featured-body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Home Event Cards (3 col) */
.event-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-4); }
.event-card {
  background: var(--white);
  border-top: 2px solid var(--grey-4);
  padding: 20px 18px 22px;
  cursor: pointer;
  transition: background var(--transition);
}
.event-card.featured-ev { border-top-color: var(--crimson); }
.event-card:hover { background: var(--grey-6); }
.event-card-date {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
}
.event-card-date.neutral { color: var(--grey-2); }
.event-card-title {
  font-family: var(--font-disp);
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.event-card-badge {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.event-card-badge.neutral { color: var(--grey-2); }

/* ─── MEMBERSHIP TIERS ─── */
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-4); }
.tier-card {
  background: var(--white);
  padding: 32px 28px 36px;
  position: relative;
}
.tier-card.featured-tier {
  background: var(--crimson);
  color: #fff;
}
.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}
.tier-name {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tier-card.featured-tier .tier-name { color: var(--gold-xl); }
.tier-tagline {
  font-family: var(--font-disp);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}
.tier-card.featured-tier .tier-tagline { color: #fff; }
.tier-divider { height: 0.5px; background: var(--grey-4); margin-bottom: 16px; }
.tier-card.featured-tier .tier-divider { background: rgba(255,255,255,0.2); }
.tier-benefits { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.tier-benefits li {
  font-size: 12px;
  color: var(--grey-1);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.tier-benefits li::before { content: '—'; position: absolute; left: 0; color: var(--grey-3); }
.tier-card.featured-tier .tier-benefits li { color: rgba(255,255,255,0.8); }
.tier-card.featured-tier .tier-benefits li::before { color: rgba(255,255,255,0.4); }

/* ─── FORMS ─── */
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 0.5px solid var(--grey-3);
  background: var(--white);
  font-size: 12px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--crimson);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-3); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-1);
  margin-bottom: 4px;
}

/* Form Alert */
.form-alert {
  padding: 14px 18px;
  font-size: 12px;
  margin-bottom: 16px;
}
.form-alert.success { background: rgba(168,131,42,0.08); color: var(--gold); border-left: 3px solid var(--gold); }
.form-alert.error { background: rgba(123,22,22,0.06); color: var(--crimson); border-left: 3px solid var(--crimson); }

/* ─── DARK / MAROON BANDS ─── */
.band-dark { background: var(--ink); }
.band-maroon { background: var(--crimson); }
.band-cream { background: var(--grey-6); }

/* ─── STAT STRIP ─── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--ink);
}
.stat-item {
  padding: 36px 32px;
  border-right: 0.5px solid rgba(255,255,255,0.06);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-disp);
  font-size: 44px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── IMAGE QUOTE / FEATURE BLOCK ─── */
.feature-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.feature-img { overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-body.dark { background: var(--ink); }
.feature-body.cream { background: var(--grey-6); }
.feature-body.maroon { background: var(--crimson); }

/* ─── CONTACT INFO TABLE ─── */
.contact-table { width: 100%; }
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--grey-5);
  font-size: 12px;
}
.contact-row:last-child { border-bottom: none; }
.contact-label { color: var(--grey-2); }
.contact-val { color: var(--crimson); font-weight: 500; }

/* ─── MAP PLACEHOLDER ─── */
.map-ph {
  background: var(--ink-mid);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.map-ph img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* ─── ABOUT PAGE ─── */
.about-quote {
  font-family: var(--font-disp);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}

/* ─── NEWSLETTER FORM ─── */
.newsletter-form { margin-top: 16px; }
.nl-form { display: flex; border: 0.5px solid rgba(255,255,255,0.15); overflow: hidden; }
.nl-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 9px 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn {
  background: var(--crimson);
  color: #fff;
  border: none;
  padding: 9px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.nl-btn:hover { background: var(--crimson-d); }

/* ─── FOOTER ─── */
.site-footer { background: var(--ink); padding: 64px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.f-logo {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 12px;
}
.f-logo span { color: var(--gold-l); }
.f-tagline { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 0; }
.f-col-title {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.f-link {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.f-link:hover { color: rgba(255,255,255,0.9); }
.f-text { font-size: 11px; color: rgba(255,255,255,0.3); display: block; }
.f-social { display: flex; gap: 16px; margin-top: 20px; }
.f-soc {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.f-soc:hover { color: var(--gold-l); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-copy { font-size: 10px; color: rgba(255,255,255,0.2); }
.f-bottom-links { display: flex; gap: 20px; }
.f-bottom-links a {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}
.f-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container, .container-narrow, .footer-inner { padding: 0 32px; }
  .breadcrumb { padding: 14px 32px; }
  .hero-inner, .page-banner-inner { padding: 56px 32px; }
  .feature-body { padding: 48px 40px; }
  .spaces-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .site-nav { padding: 0 24px; }
  .container, .container-narrow { padding: 0 24px; }
  .breadcrumb { padding: 12px 24px; }
  .hero-inner, .page-banner-inner { padding: 40px 24px 48px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .feature-two-col { grid-template-columns: 1fr; }
  .feature-img { height: 300px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 100px 1fr; }
  .event-cta-col { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { padding: 0 24px; }
  .event-featured { grid-template-columns: 1fr; }
  .event-featured-img { height: 240px; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .event-cards { grid-template-columns: 1fr; }
}
