:root {
  --ink: #211816;
  --muted: #6d5f59;
  --paper: #fffaf1;
  --cream: #f6ead2;
  --red: #a43027;
  --red-dark: #7e211b;
  --green: #2f5b45;
  --blue: #254d65;
  --line: rgba(33, 24, 22, 0.16);
  --shadow: 0 24px 60px rgba(64, 38, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.header-order,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: calc(88vh - 76px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--green);
}

.hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(33, 24, 22, 0) 45%, rgba(33, 24, 22, 0.26));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(164, 48, 39, 0.08), transparent 42%),
    var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(50px, 6.2vw, 86px);
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-lede {
  max-width: 650px;
  color: #443631;
  font-size: clamp(18px, 1.8vw, 23px);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.quick-info div {
  min-height: 82px;
  padding: 16px;
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.6);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.intro-band,
.section,
.order-section,
.visit-section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  background: var(--green);
  color: white;
}

.intro-band .section-kicker {
  color: #ffd68b;
}

.intro-band p:last-child {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.photo-strip img {
  aspect-ratio: 1.34;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.menu-card img {
  aspect-ratio: 1.18;
  object-fit: cover;
}

.menu-card div {
  padding: 20px;
}

.menu-card p,
.order-copy p,
.visit-card p,
.hours-card p {
  color: var(--muted);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: stretch;
  background: var(--cream);
}

.order-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-link-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.order-link-card img {
  aspect-ratio: 1.9;
  object-fit: cover;
}

.order-link-card div {
  padding: clamp(22px, 4vw, 38px);
}

.order-link-card p {
  color: var(--muted);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  background:
    linear-gradient(90deg, rgba(37, 77, 101, 0.08), transparent 44%),
    var(--paper);
}

.visit-card,
.hours-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.large-stat {
  margin-bottom: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 800;
  line-height: 0.9;
}

.muted {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro-band,
  .order-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 300px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand small,
  .header-order {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-media {
    min-height: 190px;
  }

  .hero-copy,
  .intro-band,
  .section,
  .order-section,
  .visit-section {
    padding: 38px 16px;
  }

  h1 {
    font-size: 43px;
  }

  .quick-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-info div {
    min-height: 76px;
    padding: 10px;
  }

  .quick-info dt {
    font-size: 10px;
  }

  .quick-info dd {
    font-size: 13px;
    line-height: 1.25;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer p + p {
    margin-top: 8px;
  }
}
