/* ==========================================================================
   VAMPIRATES — Halloween's Boldest Dinner Show
   "Blood Moon Spectacle" theme

   Near-black theatre backgrounds, blood red #c8102e (logo-matched),
   candle-gold #d4a24e for feast/trust content.
   Fonts: Pirata One (display), Cinzel (labels), Lora (body).

   Plain CSS — no build step, no framework. Drop into public/css/.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #0a0608;
  --blood: #c8102e;
  --blood-bright: #e01935;
  --blood-deep: #a30c24;
  --gold: #d4a24e;
  --paper: #f4ece4;

  --text: rgba(255, 255, 255, 0.85);
  --text-soft: rgba(255, 255, 255, 0.7);
  --text-faint: rgba(255, 255, 255, 0.55);

  --font-display: "Pirata One", "Georgia", serif;
  --font-label: "Cinzel", "Georgia", serif;
  --font-body: "Lora", "Georgia", serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --shell: 1280px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  line-height: 1.15;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .shell {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .shell {
    padding: 0 2rem;
  }
}

.section {
  position: relative;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split--wide-left {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .split--wide-right {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: #fff;
}

.display--xl {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.display--lg {
  font-size: clamp(1.875rem, 5vw, 3.25rem);
}

.display--md {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.display--sm {
  font-size: 1.5rem;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .eyebrow {
    font-size: 0.875rem;
  }
}

.label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8125rem;
}

.lede {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 640px) {
  .lede {
    font-size: 1.125rem;
  }
}

.text-blood {
  color: var(--blood);
}

.text-gold {
  color: var(--gold);
}

.text-soft {
  color: var(--text-soft);
}

.measure {
  max-width: 36rem;
}

.center {
  text-align: center;
}

.stack > * + * {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  padding: 0.875rem 1.75rem;
  transition:
    transform 0.16s var(--ease-out),
    box-shadow 0.16s var(--ease-out),
    filter 0.16s var(--ease-out),
    background-color 0.16s var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  width: 1.125em;
  height: 1.125em;
  flex: none;
}

.btn--blood {
  color: #fff;
  background: linear-gradient(180deg, var(--blood-bright) 0%, var(--blood-deep) 100%);
  border-color: rgba(255, 120, 120, 0.35);
  box-shadow:
    0 0 24px rgba(200, 16, 46, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--blood:hover {
  filter: brightness(1.12);
  box-shadow:
    0 0 40px rgba(200, 16, 46, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--gold {
  color: var(--gold);
  background: transparent;
  border-color: rgba(212, 162, 78, 0.5);
  font-weight: 600;
}

.btn--gold:hover {
  background-color: rgba(212, 162, 78, 0.1);
  box-shadow: 0 0 24px rgba(212, 162, 78, 0.25);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--block {
  width: 100%;
}

@media (min-width: 640px) {
  .btn--block {
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   6. Signature motifs — frames, rules, fog
   -------------------------------------------------------------------------- */

/* Ornate playbill rule with centred label */
.ornate-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ornate-rule::before,
.ornate-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 162, 78, 0.6), transparent);
}

/* Atmospheric fog band between sections */
.fog-divider {
  position: relative;
  height: 140px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 90% at 50% 50%, rgba(200, 16, 46, 0.14), transparent 70%),
    radial-gradient(ellipse 90% 70% at 25% 30%, rgba(255, 255, 255, 0.03), transparent 60%),
    radial-gradient(ellipse 80% 60% at 75% 70%, rgba(212, 162, 78, 0.04), transparent 60%);
}

.fog-divider::before {
  content: "\2726";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(212, 162, 78, 0.55);
  font-size: 0.85rem;
  z-index: 1;
}

.fog-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 70vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 16, 46, 0.5) 30%,
    rgba(212, 162, 78, 0.5) 50%,
    rgba(200, 16, 46, 0.5) 70%,
    transparent
  );
}

/* "Cursed portrait" frame with gold corner flourishes */
.cursed-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(212, 162, 78, 0.45);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(212, 162, 78, 0.28),
      rgba(120, 20, 30, 0.25) 40%,
      rgba(212, 162, 78, 0.22)
    ),
    #100a0c;
  box-shadow:
    0 0 80px rgba(200, 16, 46, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.65),
    inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.cursed-frame > img,
.cursed-frame > video {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
}

.cursed-frame::before,
.cursed-frame::after,
.cursed-frame .frame-corners::before,
.cursed-frame .frame-corners::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: rgba(212, 162, 78, 0.9);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.cursed-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 10px;
}

.cursed-frame::after {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
  border-top-right-radius: 10px;
}

.cursed-frame .frame-corners::before {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
  border-bottom-left-radius: 10px;
}

.cursed-frame .frame-corners::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 10px;
}

/* Recurring "staged" card frame */
.stage-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid rgba(212, 162, 78, 0.18);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.stage-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 0.3rem;
  pointer-events: none;
}

.framed-photo {
  border: 1px solid rgba(212, 162, 78, 0.25);
  border-radius: 0.5rem;
  object-fit: cover;
  width: 100%;
}

/* --------------------------------------------------------------------------
   7. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --------------------------------------------------------------------------
   8. Site header
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-header__logo {
  height: 2.5rem;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(200, 16, 46, 0.4));
}

@media (min-width: 640px) {
  .site-header__logo {
    height: 3rem;
  }
}

.header-cta-full {
  display: none;
}

@media (min-width: 640px) {
  .header-cta-full {
    display: inline;
  }

  .header-cta-short {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   9. Sticky booking bar
   -------------------------------------------------------------------------- */
.booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 6, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 16, 46, 0.35);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.3s var(--ease-out);
}

.booking-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.booking-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.booking-bar__copy {
  min-width: 0;
}

.booking-bar__kicker {
  font-family: var(--font-label);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-bar__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .booking-bar__title {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   10. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 70% 10%, rgba(200, 16, 46, 0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 90%, rgba(212, 162, 78, 0.06), transparent 60%),
    var(--ink);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 8, 0.75) 0%,
    rgba(10, 6, 8, 0.55) 45%,
    var(--ink) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
}

@media (min-width: 640px) {
  .hero__inner {
    padding-top: 8rem;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    padding-bottom: 6rem;
  }
}

.hero__logo {
  width: 100%;
  max-width: 36rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(200, 16, 46, 0.45));
}

.hero__subhead {
  margin-bottom: 1.25rem;
}

.hero__thrills {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 0.875rem;
  margin: 0.75rem 0 2rem;
}

@media (min-width: 640px) {
  .hero__thrills {
    font-size: 1rem;
  }
}

.hero__dare {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero__dare {
    font-size: 1.5rem;
  }
}

.hero__dare svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blood);
  flex: none;
}

.hero__fineprint {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
  max-width: 36rem;
}

@media (min-width: 640px) {
  .hero__fineprint {
    font-size: 0.875rem;
  }
}

/* Hero media — cursed portrait */
.hero__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__media {
    align-items: flex-end;
  }
}

.hero__haze {
  position: absolute;
  inset: -2.5rem;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 55% at 50% 45%,
    rgba(200, 16, 46, 0.28),
    transparent 70%
  );
}

.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 640px) {
  .hero__portrait {
    max-width: 360px;
  }
}

.hero__caption {
  position: relative;
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(212, 162, 78, 0.8);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__caption {
    text-align: right;
  }
}

.hero__cue {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.hero__cue svg {
  width: 1.5rem;
  height: 1.5rem;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cue svg {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   11. Reviews
   -------------------------------------------------------------------------- */
.stars {
  display: flex;
  gap: 0.125rem;
  color: var(--gold);
}

.stars--lg {
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.stars--lg svg {
  width: 1.5rem;
  height: 1.5rem;
}

.review-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.review__quote {
  flex: 1;
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.review__by {
  margin-top: 1.25rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.review__source {
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   12. Benefit list
   -------------------------------------------------------------------------- */
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .benefit-list li {
    font-size: 1rem;
  }
}

.benefit-list svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.35rem;
  color: var(--blood);
  flex: none;
}

/* Photo collage */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.collage__wide {
  grid-column: span 2;
}

.collage img {
  height: 11rem;
}

.collage__wide img,
.collage img.collage__tall {
  height: 14rem;
}

@media (min-width: 640px) {
  .collage img {
    height: 14rem;
  }

  .collage__wide img,
  .collage img.collage__tall {
    height: 18rem;
  }
}

/* --------------------------------------------------------------------------
   13. Captain feature
   -------------------------------------------------------------------------- */
.captain-section {
  background: radial-gradient(
    ellipse 80% 70% at 30% 50%,
    rgba(200, 16, 46, 0.1),
    transparent 65%
  );
  overflow: hidden;
}

.captain-portrait {
  width: 100%;
  max-width: 24rem;
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 0.5rem;
  box-shadow: 0 0 70px rgba(200, 16, 46, 0.3);
  object-fit: cover;
}

.captain-media {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .captain-media {
    justify-content: flex-start;
  }
}

.qa-label {
  display: block;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8125rem;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   14. Cast wall
   -------------------------------------------------------------------------- */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .cast-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .cast-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cast-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.cast-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 48px var(--glow, rgba(200, 16, 46, 0.35));
}

.cast-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.cast-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.cast-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 0.875rem 0.875rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 55%);
}

@media (min-width: 640px) {
  .cast-card figcaption {
    padding: 3rem 1rem 1rem;
  }
}

.cast-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 640px) {
  .cast-card__name {
    font-size: 1.25rem;
  }
}

.cast-card--feature .cast-card__name {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .cast-card--feature .cast-card__name {
    font-size: 1.875rem;
  }
}

.cast-card__role {
  font-family: var(--font-label);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

@media (min-width: 640px) {
  .cast-card__role {
    font-size: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   15. Genre tags
   -------------------------------------------------------------------------- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.5rem 0 2rem;
}

.tagg {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 16, 46, 0.4);
  background: rgba(200, 16, 46, 0.08);
  color: #f0d9d9;
}

@media (min-width: 640px) {
  .tag {
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------------------------------
   16. Feast
   -------------------------------------------------------------------------- */
.feast-section {
  background: radial-gradient(
    ellipse 80% 70% at 70% 40%,
    rgba(212, 162, 78, 0.08),
    transparent 65%
  );
  overflow: hidden;
}

.menu-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.menu-list__icon {
  font-size: 1.5rem;
  line-height: 1.2;
  flex: none;
}

.menu-list__course {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.menu-list__note {
  font-size: 0.875rem;
  color: var(--text-faint);
}

.menu-list__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.menu-list__note a:hover {
  color: #fff;
}

.veg-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--text-faint);
}

.veg-note svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex: none;
}

.bar-photo {
  height: 400px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .bar-photo {
    height: 520px;
  }
}

.photo-caption {
  margin-top: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* --------------------------------------------------------------------------
   17. Guarantee
   -------------------------------------------------------------------------- */
.guarantee {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.12), rgba(10, 6, 8, 0.4));
}

@media (min-width: 640px) {
  .guarantee {
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .guarantee {
    grid-template-columns: auto 1fr auto;
  }
}

.guarantee__icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--gold);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .guarantee__icon {
    width: 4rem;
    height: 4rem;
    margin: 0;
  }
}

.guarantee__phone {
  white-space: nowrap;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .guarantee__phone {
    margin: 0;
  }
}

/* --------------------------------------------------------------------------
   18. FAQ (details/summary — no JS needed)
   -------------------------------------------------------------------------- */
.faq {
  max-width: 48rem;
  margin: 0 auto;
}

.faq__item {
  padding: 0 1.25rem;
  margin-bottom: 0.75rem;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  font-family: var(--font-label);
  font-size: 0.9375rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  transition: color 0.16s var(--ease-out);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--gold);
}

.faq__item summary::after {
  content: "";
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s var(--ease-out);
}

.faq__item[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   19. Dates
   -------------------------------------------------------------------------- */
.dates-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
  .dates-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.venue {
  text-align: center;
}

.venue__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blood);
  margin: 0 auto 0.75rem;
}

.venue__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.venue__kicker {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.venue__times li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.375rem;
}

/* --------------------------------------------------------------------------
   20. Final call
   -------------------------------------------------------------------------- */
.final-call {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
}

@media (min-width: 640px) {
  .final-call {
    padding: 7rem 0;
  }
}

.final-call__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 8, 0.88) 0%,
    rgba(10, 6, 8, 0.75) 50%,
    var(--ink) 100%
  );
}

.final-call__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.final-call__cheer {
  font-family: var(--font-label);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0.75rem 0 2rem;
}

@media (min-width: 640px) {
  .final-call__cheer {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 2.5rem 0 7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .site-footer {
    padding-bottom: 6rem;
  }
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    text-align: right;
  }
}

.site-footer__logo {
  height: 2.5rem;
  width: auto;
  opacity: 0.8;
}

.site-footer__meta {
  font-size: 0.875rem;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  transition: color 0.16s var(--ease-out);
}

.site-footer__phone:hover {
  color: #fff;
}

.site-footer__phone svg {
  width: 0.875rem;
  height: 0.875rem;
}
