:root {
  --red: #9f1f16;
  --red-dark: #70150f;
  --yellow: #f7ba20;
  --cream: #fff7e8;
  --paper: #fffdf6;
  --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;
  overflow-x: hidden;
}

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(--yellow);
  font-size: 24px;
  line-height: 0.8;
}

.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: 800;
  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;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  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 {
  filter: blur(1.4px);
}

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

.hero-gallery img.hero-photo-storefront {
  object-position: center center;
}

.hero-scrim {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

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

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

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

.hero h1 strong {
  color: var(--yellow);
  font-size: 0.52em;
}

.hero p {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-line {
  display: inline;
}

.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-yellow {
  background: var(--yellow);
}

.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.75);
  text-decoration: underline;
  cursor: pointer;
}

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

.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: var(--ink);
  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);
}

.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,
.modal 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;
}

.menu-band {
  padding: 92px clamp(22px, 5vw, 70px);
  background: var(--red);
  color: white;
}

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

.menu-band-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;
}

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

.menu-card-grid article {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 247, 232, 0.08);
}

.menu-card-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.menu-card-grid h3 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 0.96;
  text-transform: uppercase;
}

.menu-card-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

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

.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(--yellow);
}

.stars {
  color: var(--red);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.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) 360px;
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.location-photo {
  min-height: 360px;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.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(21, 18, 15, 0.28);
}

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

.hours-card .button {
  margin-top: 22px;
  border-color: var(--ink);
}

.location-buttons {
  justify-content: flex-start;
}

.mobile-footer {
  display: none;
}

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

.social-links,
.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.modal {
  width: min(520px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--cream);
  border: 3px solid var(--ink);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.modal label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal input,
.modal select {
  min-height: 48px;
  border: 2px solid var(--ink);
  padding: 10px 12px;
  background: white;
}

@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,
  .menu-card-grid,
  .review-grid,
  .location-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 {
    padding: 70px 20px;
  }

  .menu-band {
    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 button,
  .mobile-footer a {
    display: grid;
    place-items: center;
    min-height: 58px;
    border: 0;
    border-right: 2px solid var(--ink);
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-footer button:last-child,
  .mobile-footer a:last-child {
    border-right: 0;
  }

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

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

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 96px;
  }

  .hero-gallery img.hero-photo-storefront {
    object-position: center center;
  }

  .hero h1 {
    font-size: 72px;
    max-width: 100%;
  }

  .hero p {
    font-size: 18px;
    max-width: 330px;
  }

  .hero-line {
    display: block;
  }

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

  .button {
    width: 100%;
  }

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