:root {
  --red: #b82025;
  --red-dark: #87171b;
  --ink: #171717;
  --charcoal: #24211f;
  --paper: #fffaf4;
  --white: #ffffff;
  --muted: #6c625d;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 18px 50px rgba(24, 18, 15, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--red);
}

.header-logo {
  display: block;
  width: clamp(58px, 7vw, 86px);
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: var(--red);
  color: var(--white);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 48px);
  scroll-margin-top: 86px;
}

.hero {
  min-height: calc(100svh - 150px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(23, 23, 23, 0.88), rgba(135, 23, 27, 0.84)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.09) 0 3px, transparent 3px 18px);
  color: var(--white);
}

.hero + .section {
  padding-top: clamp(28px, 4vw, 48px);
}

.hero-content,
.section-heading,
.menu-grid,
.feature-block,
.special-callout,
.table-wrap,
.contact-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-content {
  max-width: 860px;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.hero-logo {
  display: block;
  width: min(310px, 58vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-red .eyebrow,
.section-dark .eyebrow {
  color: #ffd6d6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 10vw, 7.75rem);
  line-height: 0.93;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-details {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 28px 0;
}

.hero-details p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-details strong {
  color: var(--white);
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d32b31;
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.section-heading {
  margin-bottom: 24px;
}

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

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px;
}

.menu-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-card strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1rem;
  line-height: 1.25;
  text-align: right;
}

.section-red {
  background: var(--red-dark);
  color: var(--white);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-card strong,
.section-red .menu-card strong,
.section-dark .menu-card strong {
  color: #ffffff;
}

.feature-block,
.special-callout {
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section:not(.section-red):not(.section-dark) .feature-block,
.section:not(.section-red):not(.section-dark) .special-callout {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.feature-block p,
.special-callout p {
  margin: 10px 0 0;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.1);
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
}

th {
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-grid article {
  min-height: 150px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

.contact-grid p {
  margin: 10px 0 0;
}

.contact-grid a {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
}

footer {
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 72px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .menu-grid,
  .compact-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-logo {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .header-logo {
    width: 52px;
    height: 42px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-details p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-card {
    min-height: auto;
    flex-direction: column;
  }

  .menu-card strong {
    text-align: left;
  }

  .button {
    width: 100%;
  }
}
