@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #171717;
  --paper: #f3eadc;
  --paper-light: #fbf7ef;
  --red: #c82325;
  --red-dark: #9f151a;
  --green: #176b43;
  --green-dark: #0f5132;
  --corn: #eda11a;
  --line: rgba(23, 23, 23, 0.18);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.75), transparent 26rem),
    var(--paper);
  font-family: var(--body);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.28;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-cta {
  color: white;
  padding: 10px 16px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
}

.hero-logo {
  width: min(86%, 560px);
  height: auto;
  aspect-ratio: 1919 / 820;
  object-fit: contain;
  margin: -6px 0 34px;
  border: 2px solid var(--ink);
  box-shadow: 7px 8px 0 var(--ink);
}

.hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 4px 5px 0 var(--ink);
}

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

.button-secondary {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 34px 0 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✦";
}

.hero-menu {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  transform: rotate(1.5deg);
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 13px 15px 0 var(--green);
}

.hero-menu::before,
.hero-menu::after {
  position: absolute;
  width: 44px;
  height: 44px;
  content: "";
}

.hero-menu::before {
  top: -12px;
  left: -12px;
  border-top: 10px solid var(--red);
  border-left: 10px solid var(--red);
}

.hero-menu::after {
  right: -12px;
  bottom: -12px;
  border-right: 10px solid var(--green);
  border-bottom: 10px solid var(--green);
}

.hero-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 5px solid var(--ink);
}

.hero-menu-header span {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
}

.hero-menu-header img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.hero-menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 2px dashed var(--line);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.hero-menu-row strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.4rem;
}

.hero-menu > p {
  margin: 24px 0 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.marquee-group {
  min-width: 100vw;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  padding: 18px 34px 18px 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-transform: uppercase;
}

.marquee-group span,
.marquee-group b {
  white-space: nowrap;
}

.marquee b {
  color: var(--corn);
}

@keyframes scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.menu-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.menu-group-title {
  margin: 0;
  padding: 17px 22px;
  color: white;
  border: 2px solid var(--ink);
  background: var(--green);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.menu-card {
  min-height: 270px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 30px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(251, 247, 239, 0.62);
}

.menu-card-featured {
  color: white;
  background: var(--red);
}

.menu-number {
  color: var(--corn);
  font-family: var(--display);
  font-size: 0.85rem;
}

.menu-kicker {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.menu-card p:last-child {
  max-width: 410px;
  margin-bottom: 0;
}

.menu-card strong {
  grid-column: 2;
  align-self: end;
  font-family: var(--display);
  font-size: 1.8rem;
}

.combo-title {
  margin-top: 36px;
  background: var(--red);
}

.combo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 2px solid var(--ink);
}

.combo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px 22px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(251, 247, 239, 0.62);
  font-weight: 800;
}

.combo-row strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.35rem;
  white-space: nowrap;
}

.combo-row-featured {
  color: white;
  background: var(--green);
}

.combo-row-featured strong {
  color: var(--corn);
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
  background: var(--paper-light);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.story-mark,
.story-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(42px, 7vw, 110px);
}

.story-mark {
  position: relative;
  align-items: center;
  overflow: hidden;
  background: var(--corn);
  border-right: 2px solid var(--ink);
}

.story-mark::after {
  position: absolute;
  width: 440px;
  aspect-ratio: 1;
  border: 2px solid rgba(23, 23, 23, 0.3);
  border-radius: 50%;
  content: "";
}

.story-mark img {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  border: 2px solid var(--ink);
  box-shadow: 10px 12px 0 var(--ink);
}

.story-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.story-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.visit-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  padding: clamp(70px, 10vw, 140px) max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--green-dark);
}

.eyebrow-light {
  color: var(--corn);
}

.visit-section h2 {
  max-width: 760px;
}

.visit-details p {
  max-width: 440px;
  margin-bottom: 28px;
  font-size: 1.15rem;
}

.button-light {
  color: var(--ink);
  border-color: var(--paper-light);
  background: var(--paper-light);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--ink);
}

footer img {
  border-radius: 8px;
}

footer p {
  margin: 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

@media (max-width: 860px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .hero-menu {
    margin: 30px 8px 10px 0;
  }

  .section-heading,
  .story-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

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

  .combo-list {
    grid-template-columns: 1fr;
  }

  .story-mark {
    min-height: 520px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .visit-section {
    gap: 38px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .menu-section {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 14px;
  }

  .brand span {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-logo {
    width: 100%;
    margin-bottom: 24px;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .menu-section {
    padding: 80px 0;
  }

  .section-heading {
    gap: 24px;
  }

  .menu-card {
    min-height: 250px;
    padding: 24px 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    display: flex;
  }

  .copyright {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee div {
    animation: none;
  }

  .button {
    transition: none;
  }
}
