* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111827;
  font-family: Inter, Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}

.make-nav {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 300ms ease, box-shadow 300ms ease;
  z-index: 50;
}

.make-nav.scrolled,
.make-nav.open {
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.nav-inner {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}

.nav-brand {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.make-nav.scrolled .nav-brand,
.make-nav.open .nav-brand,
.make-nav.scrolled .nav-links a,
.make-nav.open .nav-links a,
.make-nav.scrolled .nav-toggle,
.make-nav.open .nav-toggle {
  color: #111827;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: white;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #b91c1c;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  display: none;
  padding: 8px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.mobile-menu {
  background: white;
  border-top: 1px solid #e5e7eb;
  display: none;
  padding: 16px 24px;
}

.mobile-menu a {
  color: #111827;
  display: block;
  padding: 8px 0;
}

.make-nav.open .mobile-menu {
  display: block;
}

.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 800ms ease;
}

.slide::after {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  inset: 0;
  position: absolute;
}

.slide.active {
  opacity: 1;
}

.hero-copy {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 0 16px;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(60px, 8vw, 96px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-buttons.left {
  justify-content: flex-start;
}

.btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
  padding: 16px 32px;
  transition: background-color 180ms ease, color 180ms ease;
}

.btn-red {
  background: #b91c1c;
  color: white;
}

.btn-red:hover {
  background: #991b1b;
}

.btn-white {
  background: white;
  color: #111827;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-outline {
  background: white;
  border: 2px solid #b91c1c;
  color: #b91c1c;
}

.btn-outline:hover {
  background: #b91c1c;
  color: white;
}

.red-text {
  color: #7f1d1d;
}

.slide-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  color: #111827;
  cursor: pointer;
  display: flex;
  font-size: 38px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease;
  width: 48px;
  z-index: 3;
}

.slide-arrow:hover {
  background: white;
}

.slide-arrow.prev {
  left: 16px;
}

.slide-arrow.next {
  right: 16px;
}

.dots {
  bottom: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.dots button {
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  width: 10px;
}

.dots button.active {
  background: white;
}

.section {
  padding: 80px 0;
}

.white {
  background: white;
}

.gray {
  background: #f9fafb;
}

.red-gradient {
  background: linear-gradient(135deg, #7f1d1d, #991b1b);
  color: white;
}

.solid-red {
  background: #b91c1c;
  color: white;
}

.two-col {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col.start {
  align-items: start;
}

.section h2 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.copy-stack {
  color: #374151;
  display: grid;
  font-size: 18px;
  gap: 16px;
}

.lead {
  color: #374151;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.muted {
  color: #4b5563;
}

.about-images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-images img {
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
  height: 256px;
  object-fit: cover;
  width: 100%;
}

.about-images img:nth-child(2),
.about-images img:nth-child(4) {
  margin-top: 32px;
}

.center-heading {
  margin-bottom: 64px;
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 16px;
}

.center-heading p {
  color: #fee2e2;
  font-size: 20px;
}

.center-heading.dark p {
  color: #4b5563;
}

.venue-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: background 180ms ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.glass-card img {
  height: 256px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  align-items: center;
  display: flex;
  font-size: 24px;
  gap: 12px;
  margin-bottom: 12px;
}

.card-body h3 span {
  font-size: 32px;
}

.card-body p,
.card-body li {
  color: #fee2e2;
}

.card-body ul {
  font-size: 14px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.section-cta {
  margin-top: 48px;
  text-align: center;
}

.tabs {
  background: #e5e7eb;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 48px;
  max-width: 672px;
  padding: 4px;
}

.tab {
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 12px;
}

.tab.active {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.menu-cards {
  display: grid;
  gap: 32px;
}

.menu-cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-cards.four,
.merch-grid,
.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-card,
.merch-card,
.visit-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.menu-card img {
  height: 256px;
  object-fit: cover;
  width: 100%;
}

.menu-cards.four .menu-card img,
.menu-cards.three .menu-card img {
  height: 192px;
}

.menu-body {
  padding: 24px;
}

.menu-body div {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.menu-body h3 {
  font-size: 24px;
  margin: 0;
}

.menu-body.small h3 {
  font-size: 20px;
}

.menu-body strong,
.merch-card strong {
  color: #b91c1c;
  font-size: 18px;
  white-space: nowrap;
}

.menu-body p,
.merch-card p {
  color: #4b5563;
}

.menu-addon {
  font-size: 14px;
  font-style: italic;
}

.menu-note {
  color: #4b5563;
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
}

.large-photo {
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.icon-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.icon-list li {
  align-items: flex-start;
  display: flex;
  font-size: 18px;
  gap: 12px;
}

.icon-list span,
.info-stack span {
  color: #b91c1c;
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  margin-top: 4px;
}

.solid-red .lead,
.solid-red .icon-list span {
  color: white;
}

.info-stack {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.info-stack > div {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.info-stack h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.info-stack h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.info-stack p {
  color: #4b5563;
}

.info-stack a {
  color: #b91c1c;
}

.hours-details {
  flex: 1;
  min-width: 0;
}

.hours-table {
  border-collapse: collapse;
  color: #4b5563;
  line-height: 1.5;
  width: 100%;
}

.hours-table th,
.hours-table td {
  border-bottom: 1px solid #d1d5db;
  padding: 8px 0;
  vertical-align: top;
}

.hours-table th {
  font-weight: 600;
  padding-right: 24px;
  text-align: left;
  white-space: nowrap;
}

.hours-table td {
  text-align: right;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.visit-card {
  padding: 32px;
}

.visit-card > h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.map-embed {
  border: 0;
  border-radius: 8px;
  display: block;
  height: 256px;
  width: 100%;
}

.merch-grid,
.footer-grid,
.menu-cards.four {
  display: grid;
  gap: 32px;
}

.merch-card {
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.merch-card > img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.merch-card a {
  color: #b91c1c;
  font-weight: 600;
}

.cart-icon {
  align-items: center;
  aspect-ratio: 1;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  font-size: 56px;
  justify-content: center;
}

.merch-card > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.merch-card > div:last-child > a {
  align-self: flex-start;
  margin-top: auto;
}

.merch-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.merch-card div div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.merch-card button {
  background: #b91c1c;
  border: 0;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  padding: 8px 16px;
}

.make-footer {
  background: #111827;
  color: white;
  padding: 48px 0 0;
}

.make-footer h3 {
  font-size: 24px;
}

.make-footer h4 {
  font-size: 18px;
}

.make-footer p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  height: 28px;
  justify-content: center;
  transition: color 180ms ease;
  width: 28px;
}

.socials a:hover {
  color: #b91c1c;
}

.copyright {
  border-top: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
  margin: 32px auto 0;
  max-width: 1280px;
  padding: 32px 24px;
  text-align: center;
}

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

  .nav-toggle {
    display: block;
  }

  .two-col,
  .venue-grid,
  .menu-cards.two,
  .menu-cards.three,
  .menu-cards.four,
  .merch-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solid-red .two-col img {
    order: 2;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .slide-arrow {
    display: none;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    width: min(320px, 100%);
  }

  .btn {
    width: 100%;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img:nth-child(2),
  .about-images img:nth-child(4) {
    margin-top: 0;
  }

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

  .large-photo {
    height: 340px;
  }
}
