/* Baybasi – Warm Cultural Nonprofit Design System
   Colors: Cream #FFF7ED | Red #B91C1C | Maroon #7F1D1D | Gold #F59E0B
           Peach #FFE4D6 | Charcoal #1F2937 | Gray #6B7280 | Border #E5E7EB
   Fonts:  Aptos ExtraBold (800) for headings · Aptos (400) for body
           Fallback stack: Calibri → Trebuchet MS → Arial → sans-serif */

/* ── Inter metric-matched fallback ──────────────────────────────────────────
   'Aptos' is the brand font but is only available on machines that have it
   installed (it is not a web-distributable font). Everyone else falls back to
   Inter — which renders ~15% wider/taller than Aptos, changing sizes and line
   wrapping. 'InterAdj' is Inter loaded with size-adjust:86.6% so its metrics
   match Aptos almost exactly (measured: advance 2022 vs Aptos 2021.92 @100px).
   It sits in the stack right after Aptos; plain 'Inter' (from the Google Fonts
   <link>) remains after it as a graceful fallback if these files ever move.
   One variable woff2 per subset covers weights 300–800. */
@font-face {
  font-family: 'InterAdj';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  size-adjust: 86.6%;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'InterAdj';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  size-adjust: 86.6%;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip; /* clip (not hidden) so it doesn't break position:sticky on the scroll-over video */
}
body {
  margin: 0;
  background: #FFF7ED;
  color: #1F2937;
  font-family: 'Aptos', 'InterAdj', 'Inter', 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent iOS overscroll bounce while keeping native scroll */
  overscroll-behavior-y: none;
  width: 100%;
  overflow-x: clip; /* clip (not hidden) so it doesn't break position:sticky on the scroll-over video */
}

p:empty {
  display: none;
}

:root {
  --site-header-height: 72px;
  --home-content-gap: 3rem;
  --home-card-gap: 1.5rem;
}

.home-scroll-section {
  position: relative;
  width: 100%;
  scroll-margin-top: var(--site-header-height);
  padding: calc(var(--site-header-height) + 2rem) clamp(1rem, 4vw, 5rem) 6rem;
}

.home-section-inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.home-section-heading {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-transform: capitalize;
}

.home-section-support {
  max-width: 42rem;
  margin: 1rem auto 0;
  text-align: center;
}

.home-section-content {
  margin-top: var(--home-content-gap);
}

.home-card-grid {
  gap: var(--home-card-gap);
}

@media (max-width: 640px) {
  :root {
    --home-content-gap: 2.25rem;
    --home-card-gap: 1rem;
  }

  .home-scroll-section {
    padding-top: calc(var(--site-header-height) + 1.5rem);
    padding-bottom: 4.5rem;
  }

  .home-section-heading {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 1;
  }
}

/* ── Mobile touch improvements ── */
button, a, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* Minimum 44×44px touch targets on mobile */
@media (max-width: 768px) {
  button, a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Navbar links override — use padding not height */
  nav a { min-height: unset; }
}

/* ── Aptos font-weight bindings ── */
.font-heading {
  font-family: 'Aptos', 'InterAdj', 'Inter', 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
}
.font-body {
  font-family: 'Aptos', 'InterAdj', 'Inter', 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-weight: 400;
}

/* ── Liquid Glass ── */
.liquid-glass {
  /* Semi-transparent so the cream background bleeds through — that's the "glass" */
  background:
    linear-gradient(150deg,
      rgba(255,255,255,0.32) 0%,
      rgba(255,248,242,0.14) 45%,
      rgba(255,255,255,0.06) 100%),
    rgba(255,255,255,0.48);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.03);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.03);
  border: none;
  box-shadow:
    /* Crisp bright top edge — the definitive glass highlight */
    inset 0 2px 0 rgba(255,255,255,0.95),
    /* Subtle bottom inner shadow for depth */
    inset 0 -1px 0 rgba(0,0,0,0.06),
    /* Contact shadow — tight and dark */
    0 1px 3px rgba(0,0,0,0.08),
    /* Main elevation shadow */
    0 6px 20px rgba(0,0,0,0.13),
    /* Wide ambient shadow */
    0 22px 56px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
/* Diagonal specular rim: bright top-left → dark midpoint → bright bottom-right */
.liquid-glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(255,255,255,1.00)  0%,
    rgba(255,255,255,0.75) 15%,
    rgba(255,255,255,0.20) 38%,
    rgba(0,0,0,0.10)       52%,
    rgba(255,255,255,0.18) 66%,
    rgba(255,255,255,0.72) 85%,
    rgba(255,255,255,1.00) 100%);
  /* Webkit/Safari/Chrome/Edge */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  /* Firefox ≥ 103 (standard) */
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background:
    linear-gradient(150deg,
      rgba(255,255,255,0.40) 0%,
      rgba(255,248,242,0.18) 45%,
      rgba(255,255,255,0.08) 100%),
    rgba(255,255,255,0.62);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.04);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.04);
  border: none;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.98),
    inset 0 -1px 0 rgba(0,0,0,0.07),
    0 2px 5px rgba(0,0,0,0.09),
    0 10px 28px rgba(0,0,0,0.14),
    0 32px 72px rgba(0,0,0,0.09);
  position: relative;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(255,255,255,1.00)  0%,
    rgba(255,255,255,0.85) 15%,
    rgba(255,255,255,0.22) 38%,
    rgba(0,0,0,0.10)       52%,
    rgba(255,255,255,0.18) 72%,
    rgba(255,255,255,0.72) 88%,
    rgba(255,255,255,1.00) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Base ── */
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #FFF7ED; }
::-webkit-scrollbar-thumb { background: rgba(31,41,55,0.25); border-radius: 9999px; }
:focus-visible { outline: 2px solid #F59E0B; outline-offset: 2px; }

/* ── Hero gradient overlay for inner pages ── */
.inner-hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(185,28,28,0.10) 0%, transparent 65%),
    linear-gradient(to bottom, #FFE4D6 0%, #FFF7ED 60%);
}

/* ── Red CTA button ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #B91C1C;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-red:hover { background: #991B1B; }

/* ── Gold dot accent ── */
.gold-dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: #F59E0B;
  flex-shrink: 0;
}

/* ── Hero stats strip — mobile wrap fix ── */
@media (max-width: 640px) {
  /* 3 cols × 2 rows on mobile: keep text from overflowing */
  .hero-stats-cell { padding: 0.75rem 0.5rem; }
  .hero-stats-value { font-size: 1.25rem !important; }
  .hero-stats-label { font-size: 9px !important; }
}

/* ── Responsive media — never overflow its container ── */
img,
video {
  max-width: 100%;
  height: auto;
}

.scroll-video-bg video {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
}

/* Upcoming Events horizontal scroller */
.events-scroll {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,247,237,0.55) transparent;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
}
.event-carousel-card {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@media (min-width: 768px) {
  .event-carousel-card {
    flex-basis: calc((100% - var(--home-card-gap)) / 2);
    min-width: calc((100% - var(--home-card-gap)) / 2);
  }
}
@media (min-width: 1180px) {
  .event-carousel-card {
    flex-basis: calc((100% - (2 * var(--home-card-gap))) / 3);
    min-width: calc((100% - (2 * var(--home-card-gap))) / 3);
  }
}
.events-scroll::-webkit-scrollbar { height: 8px; }
.events-scroll::-webkit-scrollbar-track { background: transparent; }
.events-scroll::-webkit-scrollbar-thumb { background: rgba(255,247,237,0.45); border-radius: 999px; }
.events-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,247,237,0.7); }

.page-photo-hero {
  background-color: #FFF7ED;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.professional-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(245,158,11,0.24), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.62), transparent 26%),
    linear-gradient(120deg, #FFF7ED 0%, #FFE4D6 42%, #F6D095 100%);
}

.warm-card {
  background: linear-gradient(145deg, #FFF7E8 0%, #FFE4BE 52%, #F5D39F 100%);
  border: 1px solid rgba(127,29,29,0.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -1px 0 rgba(127,29,29,0.05),
    0 24px 58px rgba(127,29,29,0.12);
}

.warm-card-strong {
  background: linear-gradient(145deg, #FFE8B8 0%, #FCD894 48%, #EDBE72 100%);
  border: 1px solid rgba(127,29,29,0.17);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -1px 0 rgba(127,29,29,0.07),
    0 26px 62px rgba(127,29,29,0.14);
}

.warm-pill {
  background: linear-gradient(180deg, rgba(255,247,232,0.98) 0%, rgba(248,221,178,0.96) 100%);
  border: 1px solid rgba(127,29,29,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

/* ── Mobile hero/card rendering fixes ── */
@media (max-width: 640px) {
  .page-photo-hero {
    min-height: auto !important;
    padding: 8rem 1rem 3rem !important;
    background-size: 100% auto !important;
    background-position: center top !important;
  }

  .professional-hero {
    min-height: auto !important;
    padding: 8rem 1rem 3rem !important;
  }

  .join-hero-animated-image {
    background-size: 100% auto !important;
    background-position: center top !important;
    transform: none !important;
    animation: none !important;
  }

  .page-photo-hero > div[class*="max-w-"],
  .inner-hero-bg > div[class*="max-w-"] {
    min-width: 0;
  }

  .page-photo-hero [class*="max-w-3xl"],
  .inner-hero-bg [class*="max-w-3xl"] {
    max-width: 100% !important;
  }

  .page-photo-hero h1,
  .page-photo-hero h2,
  .page-photo-hero p,
  .inner-hero-bg h1,
  .inner-hero-bg h2,
  .inner-hero-bg p,
  .liquid-glass,
  .liquid-glass-strong {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .page-photo-hero [class*="rounded-"],
  .inner-hero-bg [class*="rounded-"],
  .liquid-glass,
  .liquid-glass-strong {
    max-width: 100%;
  }

  .page-photo-hero [class*="grid"],
  .inner-hero-bg [class*="grid"] {
    min-width: 0;
  }

  [class*="tracking-[-"] {
    letter-spacing: 0 !important;
  }

  [class*="rounded-"] > *,
  .liquid-glass > *,
  .liquid-glass-strong > * {
    min-width: 0;
  }

  [class*="rounded-"] img {
    display: block;
    max-width: 100%;
  }
}

/* ── Mobile sponsor logo overflow ── */
@media (max-width: 640px) {
  .sponsor-logo-wrap { width: 100% !important; height: auto !important; aspect-ratio: 5/2; }
}

/* ── Mobile menu slide-down ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu-enter { animation: slideDown 0.18s ease-out; }

/* ── Timeline ── */
.timeline-track {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent 0%, rgba(31,41,55,0.20) 15%, rgba(31,41,55,0.20) 85%, transparent 100%);
}

/* ── Input / Textarea shared style ── */
.form-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.625rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #1F2937;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  border-color: #B91C1C;
  box-shadow: 0 0 0 3px rgba(185,28,28,0.12);
}
.form-input::placeholder { color: #9CA3AF; }

/* ── Homepage website-git reference theme + featured hero slider ── */
.home-git-theme {
  --home-cream: #FFF7ED;
  --home-peach: #FFE4D6;
  --home-red: #B91C1C;
  --home-maroon: #7F1D1D;
  --home-charcoal: #1F2937;
  --home-gold: #F59E0B;
  color: var(--home-charcoal);
  background: var(--home-cream);
}

.home-git-theme .home-section-heading {
  color: var(--home-cream) !important;
  font-family: 'Aptos', 'InterAdj', 'Inter', 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.52);
}

.home-git-theme .home-section-support {
  color: rgba(255, 247, 237, 0.82) !important;
}

.home-feature-hero {
  position: relative;
  isolation: isolate;
  min-height: min(88svh, 54rem);
  margin-top: var(--site-header-height);
  overflow: hidden;
  background: var(--home-cream);
  color: var(--home-charcoal);
}

.home-feature-slide,
.home-feature-scrim {
  position: absolute;
  inset: 0;
}

.home-feature-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.9s ease, transform 7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-feature-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.home-feature-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82) saturate(0.94);
}

.home-feature-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,7,9,0.82) 0%, rgba(18,7,9,0.62) 30%, rgba(18,7,9,0.22) 53%, rgba(18,7,9,0.04) 76%),
    linear-gradient(0deg, rgba(18,7,9,0.52) 0%, transparent 48%);
}

.home-feature-content {
  position: relative;
  z-index: 2;
  width: min(80rem, 100%);
  min-height: min(88svh, 54rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(4.5rem, 7vw, 6rem) 5rem;
  display: flex;
  align-items: flex-end;
}

.home-feature-copy {
  width: min(34rem, 46%);
  min-width: 28rem;
  padding: 0;
}

.home-feature-eyebrow {
  margin: 0 0 0.7rem;
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-feature-title {
  margin: 0;
  max-width: 13ch;
  color: #fffaf4;
  font-family: 'Aptos', 'InterAdj', 'Inter', 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.6);
}

.home-feature-primary-meta {
  width: 100%;
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.5fr;
  gap: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.home-feature-primary-meta dt {
  color: #fbbf24;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-primary-meta dd {
  margin: 0.25rem 0 0;
  color: #fffaf4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: pre-line;
}

.home-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.home-feature-details-tab,
.home-feature-link {
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-feature-details-tab {
  border: 1px solid var(--home-red);
  background: var(--home-red);
  color: #fff;
  cursor: pointer;
}

.home-feature-details-tab:hover,
.home-feature-details-tab:focus-visible {
  border-color: #fbbf24;
  background: #991b1b;
  color: #fff;
  box-shadow: 0 8px 22px rgba(185, 28, 28, 0.38);
  transform: translateY(-2px);
}

.home-feature-link {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(18, 7, 9, 0.24);
  color: #fffaf4;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-feature-link:hover,
.home-feature-link:focus-visible {
  border-color: #fffaf4;
  background: #fffaf4;
  color: #7f1d1d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.home-feature-directions {
  border-color: rgba(251, 191, 36, 0.72);
  color: #fef3c7;
}

.home-feature-directions:hover,
.home-feature-directions:focus-visible {
  border-color: #fbbf24;
  background: #fbbf24;
  color: #451a03;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.32);
}

.home-feature-details {
  width: min(35rem, 100%);
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.75rem;
  background: rgba(18, 7, 9, 0.7);
  color: #fffaf4;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.home-feature-details > p {
  margin: 0 0 0.9rem;
  line-height: 1.55;
}

.home-feature-flyer-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  padding: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 4, 5, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-feature-flyer-shell {
  position: relative;
  max-width: min(92vw, 44rem);
  max-height: calc(100svh - 2rem);
}

.home-feature-flyer-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100svh - 2rem);
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.home-feature-flyer-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(18, 7, 9, 0.82);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.home-feature-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.home-feature-meta dt {
  color: var(--home-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-meta dd {
  margin: 0.2rem 0 0;
  color: var(--home-charcoal);
  font-size: 0.9rem;
}

.home-feature-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(127, 29, 29, 0.18);
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.88);
  color: var(--home-maroon);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.home-feature-arrow-prev { left: 1rem; }
.home-feature-arrow-next { right: 1rem; }

.home-feature-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.home-feature-dot {
  width: 0.65rem;
  height: 0.65rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(127, 29, 29, 0.34);
  cursor: pointer;
  transition: width 0.25s, border-radius 0.25s, background 0.25s;
}

.home-feature-dot.is-active {
  width: 1.8rem;
  border-radius: 999px;
  background: var(--home-red);
}

@media (min-width: 769px) and (max-width: 1100px) {
  .home-feature-hero {
    --home-tablet-visual-height: clamp(23rem, 45vw, 30rem);
    min-height: 0;
    background: #180f10;
  }

  .home-feature-slide {
    inset: 0 0 auto 0;
    height: var(--home-tablet-visual-height);
    transform: scale(1);
  }

  .home-feature-slide.is-active {
    transform: scale(1.025);
  }

  .home-feature-image {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.88) saturate(0.94);
  }

  .home-feature-scrim {
    background:
      linear-gradient(180deg, rgba(18,7,9,0.08) 0%, rgba(18,7,9,0.10) calc(var(--home-tablet-visual-height) - 5rem), rgba(18,7,9,0.86) var(--home-tablet-visual-height), rgba(18,7,9,0.98) 100%);
  }

  .home-feature-content {
    min-height: 0;
    padding: calc(var(--home-tablet-visual-height) + 2.25rem) 4.25rem 5.5rem;
    align-items: stretch;
  }

  .home-feature-copy {
    width: min(44rem, 100%);
    min-width: 0;
  }

  .home-feature-primary-meta {
    grid-template-columns: 1fr 1fr 1.3fr;
  }

  .home-feature-primary-meta > div:last-child {
    grid-column: auto;
  }

  .home-feature-title {
    max-width: 16ch;
    font-size: clamp(3rem, 6vw, 4.4rem);
  }

  .home-feature-actions {
    max-width: 46rem;
  }

  .home-feature-arrow {
    top: calc(var(--home-tablet-visual-height) / 2);
    background: rgba(255, 247, 237, 0.94);
    box-shadow: 0 10px 24px rgba(18, 7, 9, 0.22);
  }
}

@media (max-width: 768px) {
  .home-feature-hero {
    --home-mobile-visual-height: clamp(15.5rem, 58vw, 22rem);
    min-height: 0;
    background: #180f10;
  }

  .home-feature-slide {
    inset: 0 0 auto 0;
    height: var(--home-mobile-visual-height);
    transform: scale(1);
  }

  .home-feature-slide.is-active {
    transform: scale(1.025);
  }

  .home-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.88) saturate(0.94);
  }

  .home-feature-flyer-modal {
    padding: 0.75rem;
  }

  .home-feature-flyer-shell,
  .home-feature-flyer-image {
    max-height: calc(100svh - 1.5rem);
  }

  .home-feature-scrim {
    display: block;
    background:
      linear-gradient(180deg, rgba(18,7,9,0.08) 0%, rgba(18,7,9,0.10) calc(var(--home-mobile-visual-height) - 4rem), rgba(18,7,9,0.88) var(--home-mobile-visual-height), rgba(18,7,9,0.98) 100%);
  }

  .home-feature-content {
    min-height: 0;
    padding: calc(var(--home-mobile-visual-height) + 1.75rem) 1rem 5.25rem;
    display: flex;
    align-items: stretch;
    background: transparent;
  }

  .home-feature-copy {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .home-feature-title {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  .home-feature-meta {
    grid-template-columns: 1fr;
  }

  .home-feature-primary-meta {
    padding: 0.85rem 0 0;
    grid-template-columns: 1fr 1fr;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .home-feature-actions {
    gap: 0.7rem;
  }

  .home-feature-details-tab,
  .home-feature-link {
    flex: 1 1 100%;
    min-width: 0;
    padding: 0.85rem 1rem;
    border-radius: 0.7rem;
  }

  .home-feature-directions {
    flex-basis: 100%;
  }

  .home-feature-primary-meta > div:last-child {
    grid-column: 1 / -1;
  }

  .home-feature-arrow {
    top: calc(var(--home-mobile-visual-height) / 2);
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(255, 247, 237, 0.94);
    box-shadow: 0 10px 24px rgba(18, 7, 9, 0.22);
  }

  .home-feature-arrow-prev { left: 0.65rem; }
  .home-feature-arrow-next { right: 0.65rem; }
}

@media (max-width: 480px) {
  .home-feature-hero {
    --home-mobile-visual-height: clamp(14.5rem, 56vw, 18rem);
  }

  .home-feature-content {
    padding-inline: 1rem;
    padding-bottom: 4.75rem;
  }

  .home-feature-eyebrow {
    font-size: 0.72rem;
  }

  .home-feature-title {
    font-size: clamp(2.15rem, 10.4vw, 2.95rem);
  }

  .home-feature-primary-meta {
    grid-template-columns: 1fr;
  }

  .home-feature-primary-meta > div:last-child {
    grid-column: auto;
  }

  .home-feature-details-tab,
  .home-feature-link {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-feature-slide {
    transition: opacity 0.01ms;
    transform: none;
  }
}
