:root {
  --red: #c8102e;
  --red-deep: #8b0e20;
  --orange: #f15a22;
  --navy: #141b2d;
  --navy-2: #1c2740;
  --cream: #fff3e4;
  --cream-2: #f7e2c8;
  --ink: #1a1510;
  --muted: #6b6258;
  --white: #ffffff;
  --pad: clamp(1.2rem, 5vw, 5rem);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.promo {
  background: var(--red);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}

.promo strong { color: #ffe08a; }

#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem var(--pad);
  background: rgba(20, 27, 45, 0.94);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.brand {
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.08em;
}

.brand-sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3e6d4;
}

.nav-links a:hover { color: var(--white); }

.btn-order,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 1.25rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-order,
.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-order:hover,
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

.btn-full { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 2.2rem;
  height: 1.6rem;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  text-decoration: none;
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mob-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
}

#hero {
  position: relative;
  min-height: calc(100vh - 6.5rem);
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center 70%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 27, 45, 0.88) 0%, rgba(20, 27, 45, 0.55) 50%, rgba(20, 27, 45, 0.28) 100%),
    linear-gradient(180deg, rgba(20, 27, 45, 0.55) 0%, rgba(20, 27, 45, 0.2) 40%, rgba(20, 27, 45, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 8vw, 6rem) var(--pad) 5rem;
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 0.6rem;
}

#hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 14vw, 8.5rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
}

.hero-tag {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #ffe08a;
  margin: 0.4rem 0 1rem;
}

.hero-lead { color: #f3e6d4; margin-bottom: 1.6rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-dots {
  position: absolute;
  left: var(--pad);
  bottom: 1.4rem;
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.dot {
  width: 2rem;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active { background: #ffe08a; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

h2 {
  font-family: Oswald, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

h2 em {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  color: var(--red);
  letter-spacing: 0;
}

.section-lead {
  max-width: 38rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.about-grid,
.visit-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 3rem;
}

.about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }

.about-copy p { margin-bottom: 1rem; color: #3d342c; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.stats strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 1.3rem;
}

.stats span { font-size: 0.82rem; color: var(--muted); }

.about-art img {
  width: 100%;
  border: 10px solid var(--white);
  outline: 1px solid var(--cream-2);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hl-card {
  background: var(--white);
  padding: 1.4rem 1.3rem;
  border-top: 4px solid var(--red);
}

.hl-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.hl-card h3 {
  font-family: Oswald, sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0.3rem 0 0.5rem;
}

.hl-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.8rem; }

.hl-card strong { color: var(--red); }

.boards-title {
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.boards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.board {
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  padding: 0;
}

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

.board span {
  display: block;
  padding: 0.7rem 0.8rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-cta { margin-top: 2.2rem; }

#gallery { background: var(--navy); color: var(--white); }
#gallery .section-kicker { color: #ffe08a; }
#gallery h2 em { color: #ffe08a; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.g-item {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.g-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.g-item:hover img { transform: scale(1.04); }

.g-wide { grid-column: span 2; }

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  text-align: left;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cream-2);
  font-weight: 400;
}

.hours th { width: 40%; }

.hours-note { margin-top: 1rem; color: var(--muted); font-size: 0.92rem; }

.visit-cards {
  display: grid;
  gap: 1rem;
}

.visit-cards article {
  background: var(--white);
  padding: 1.3rem 1.4rem;
}

.visit-cards h3 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.visit-cards a { color: var(--red); }

.text-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

#contact { background: #f8ead6; }

.contact-facts {
  list-style: none;
  margin-top: 1.6rem;
}

.contact-facts li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e4d2b6;
}

.contact-facts span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.15rem;
}

.contact-facts a { color: var(--navy); }

form {
  background: var(--white);
  padding: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group { margin-bottom: 0.9rem; }

label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #e0d2be;
  background: #fffdf8;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.party-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.party-picks button {
  border: 1px solid #e0d2be;
  background: #fffdf8;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

.party-picks button.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.turnstile-wrap {
  margin: 0.4rem 0 1rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.dynamic-section {
  padding-top: 0.2rem;
  margin-bottom: 0.4rem;
}

.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.cta-band h2 em { color: #ffe08a; }

.cta-band .btn-primary {
  background: var(--navy);
  margin-top: 0.4rem;
}

.promo-inline {
  color: #ffe08a;
  margin: 0.6rem 0 1.2rem;
}

.back-top {
  text-align: center;
  margin-top: 2.4rem;
}

.back-top a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
}

.back-top a:hover { text-decoration: underline; }

#gallery .back-top a,
.cta-band .back-top a { color: #ffe08a; }

.page-contact #contact { min-height: calc(100vh - 12rem); }

.nav-links a[aria-current="page"] { color: var(--white); }

footer {
  background: var(--navy);
  color: #f3e6d4;
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 2rem;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
}

footer nav a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copy {
  text-align: center;
  font-size: 0.8rem;
  color: #9a8a74;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.92);
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 3.5rem 1rem 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox figure {
  max-height: 90vh;
  overflow: auto;
  text-align: center;
}

.lightbox img {
  max-height: 82vh;
  width: auto;
  margin-inline: auto;
}

.lightbox figcaption {
  color: var(--cream);
  margin-top: 0.6rem;
}

.lb-close,
.lb-prev,
.lb-next {
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
}

.lb-close {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
}

.toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  z-index: 120;
  max-width: min(32rem, 92vw);
}

.toast.error { background: var(--red-deep); }

.toast[hidden] { display: none; }

@media (max-width: 900px) {
  .nav-links,
  .btn-order { display: none; }

  #navbar .hamburger { display: block; margin-left: auto; }

  .about-grid,
  .visit-grid,
  .contact-grid,
  .footer-grid,
  .form-row,
  .highlights { grid-template-columns: 1fr; }

  .boards { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .g-wide { grid-column: span 2; }

  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .boards,
  .gallery-grid { grid-template-columns: 1fr; }

  .g-wide { grid-column: auto; }

  .lightbox { grid-template-columns: 1fr; }

  .lb-prev,
  .lb-next { justify-self: center; }
}
