:root {
  --red: #d5121f;
  --red-dark: #9c0d17;
  --green: #006b3a;
  --green-dark: #004d2a;
  --green-soft: #e8f4eb;
  --cream: #fff8eb;
  --paper: #fffdf7;
  --ink: #15120f;
  --muted: #665b50;
  --line: rgba(21, 18, 15, 0.18);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Josefin Sans", Karla, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  display: grid;
  place-items: center;
  min-width: 156px;
  color: inherit;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.logo strong {
  color: var(--red);
  font-size: 28px;
  line-height: 0.82;
}

.logo small {
  margin-top: 5px;
  color: currentColor;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.main-nav a,
.main-nav button,
.site-footer a,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}

.nav-button {
  padding: 12px 16px;
  border: 2px solid currentColor !important;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-gallery,
.hero-gallery img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gallery img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4000ms ease;
}

.hero-gallery img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 107, 58, 0.58), rgba(0, 0, 0, 0.18), rgba(213, 18, 31, 0.52)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  width: min(920px, calc(100% - 40px));
  padding-top: 80px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  display: grid;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 13vw, 166px);
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.hero h1 strong {
  color: var(--red);
  -webkit-text-stroke: 2px white;
}

.hero h1 em {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: clamp(14px, 2vw, 22px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button-green:hover {
  background: var(--green-dark);
}

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

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: white;
  color: white;
}

.motion-toggle {
  margin-top: 24px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  cursor: pointer;
}

.embed-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
  border-bottom: 2px solid var(--ink);
  color: white;
}

.embed-strip a,
.embed-strip button {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 0;
  border-right: 2px solid var(--ink);
  background: transparent;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.embed-strip > :last-child {
  border-right: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}

.menu-band {
  padding: 92px clamp(22px, 5vw, 70px);
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.menu-grid article {
  min-height: 260px;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.menu-grid article:nth-child(even) {
  background: var(--green-soft, #e8f4eb);
}

.menu-grid span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.menu-grid h3 {
  margin: 22px 0 14px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.98;
  text-transform: uppercase;
}

.menu-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.split-alt .split-copy {
  order: 2;
}

.split-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(42px, 8vw, 110px);
}

.split-copy h2,
.location-section h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  text-transform: uppercase;
}

.split-copy p,
.location-section p {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.split-image {
  min-height: 480px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-section {
  padding: 92px clamp(22px, 5vw, 70px);
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.specials-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px) auto;
  gap: 28px;
  align-items: center;
  padding: 56px clamp(22px, 5vw, 70px);
  background: var(--green);
  color: white;
}

.specials-section h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.specials-section .eyebrow,
.specials-section p {
  color: white;
}

.specials-section p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.specials-section .button {
  border-color: white;
  white-space: nowrap;
}

.reviews-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.review-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 300px;
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.review-card:nth-child(2) {
  background: var(--green);
  color: white;
}

.review-card:nth-child(2) p {
  color: white;
}

.stars {
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.stars span {
  font-size: 18px;
}

.review-card:nth-child(2) .stars {
  color: white;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.review-card strong {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hours-card {
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: white;
}

.hours-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  text-transform: uppercase;
}

.hours-card dl,
.hours-card dd {
  margin: 0;
}

.hours-card div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.hours-card dt {
  font-weight: 900;
}

.hours-card .button {
  margin-top: 22px;
  border-color: white;
}

.mobile-footer {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 54px);
  background: var(--green);
  color: white;
}

.faq-section {
  padding: 92px clamp(22px, 5vw, 70px);
  background: var(--paper);
  border-top: 2px solid var(--ink);
}

.faq-section details {
  width: min(900px, 100%);
  margin: 0 auto;
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}

.faq-section summary {
  cursor: pointer;
  padding: 24px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
}

.faq-section p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.site-footer > div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 24px;
  text-transform: uppercase;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    background: var(--cream);
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    min-height: 44px;
    text-align: left;
  }

  .embed-strip,
  .split,
  .review-grid,
  .location-section,
  .menu-grid,
  .specials-section {
    grid-template-columns: 1fr;
  }

  .embed-strip a,
  .embed-strip button {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .split-alt .split-copy {
    order: 0;
  }

  .location-section {
    padding: 70px 0 110px;
  }

  .reviews-section,
  .menu-band,
  .faq-section {
    padding: 70px 20px;
  }

  .review-card {
    min-height: 0;
  }

  .mobile-footer {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--ink);
  }

  .mobile-footer a {
    display: grid;
    place-items: center;
    min-height: 58px;
    border-right: 2px solid var(--ink);
    background: var(--green);
    color: white;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-footer a:last-child {
    border-right: 0;
    background: var(--red);
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }
}

@media (max-width: 560px) {
  .logo {
    min-width: 122px;
    font-size: 17px;
  }

  .hero h1 {
    font-size: clamp(54px, 19vw, 92px);
  }

  .hero-actions,
  .button-row {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .split-copy {
    padding: 50px 22px;
  }
}
