:root {
  --ink: #171311;
  --muted: #6d625c;
  --paper: #fffaf2;
  --cream: #f4eadc;
  --tomato: #c63727;
  --tomato-dark: #8f2119;
  --basil: #2f6f4e;
  --gold: #e5a931;
  --charcoal: #241b18;
  --line: rgba(36, 27, 24, 0.14);
  --shadow: 0 24px 80px rgba(36, 27, 24, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(23, 19, 17, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  font-weight: 650;
  opacity: 0.74;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 760;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-order {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #20130d;
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 24px;
  padding: 138px clamp(18px, 5vw, 72px) 34px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: var(--charcoal);
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 12, 9, 0.8) 0%, rgba(19, 12, 9, 0.5) 46%, rgba(19, 12, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(19, 12, 9, 0.64) 0%, rgba(19, 12, 9, 0.06) 44%);
}

.hero-media img,
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transform: scale(1.04);
}

.hero-scene {
  z-index: 2;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-bottom: clamp(26px, 8vh, 84px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--tomato);
  color: #fff;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button.ghost {
  border-color: var(--line);
  color: var(--tomato-dark);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(32, 22, 18, 0.42);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel span,
.quick-order span,
.menu-card span,
.site-footer span {
  display: block;
  color: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-panel strong,
.quick-order strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.quick-order {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(18px, 5vw, 72px);
  transform: translateY(-34px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-order a {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.quick-order a:last-child {
  border-right: 0;
}

.quick-order strong {
  color: var(--ink);
}

.section {
  padding: clamp(62px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding-top: 28px;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section-copy p:not(.eyebrow),
.split-copy p,
.visit-card p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(36, 27, 24, 0.08);
}

.feature-grid img {
  height: 270px;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  padding: 0 20px;
}

.feature-grid h3 {
  margin-top: 22px;
}

.feature-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.menu-section {
  background: var(--charcoal);
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.menu-section .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.menu-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.menu-controls button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 800;
}

.menu-controls button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #241811;
}

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

.menu-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.menu-card.hidden {
  display: none;
}

.menu-card.featured {
  background: linear-gradient(135deg, rgba(198, 55, 39, 0.9), rgba(143, 33, 25, 0.9));
}

.menu-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.menu-card strong {
  color: var(--gold);
  font-size: 25px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.catering-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.catering-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 20px;
  background:
    linear-gradient(rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.9)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=78") center/cover;
}

.visit-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(36, 27, 24, 0.08);
}

.visit-card {
  padding: clamp(26px, 5vw, 50px);
}

.visit-card h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.visit-card dl {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.visit-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.visit-card dt {
  color: var(--muted);
  font-weight: 760;
}

.visit-card dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.visit .button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
}

.contact-form h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
}

.contact-form input:focus {
  outline: 3px solid rgba(229, 169, 49, 0.35);
  border-color: var(--gold);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--basil);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #120e0c;
  color: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  text-transform: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero,
  .intro,
  .split,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 880px;
  }

  .hero-panel {
    max-width: none;
    margin-left: 0;
  }

  .section-copy {
    position: static;
  }

  .feature-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    background: #fffaf2;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.nav-active .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .nav-order {
    justify-content: center;
  }

  .hero {
    min-height: 860px;
    padding: 104px 18px 26px;
  }

  .hero-content {
    padding-bottom: 12px;
  }

  .hero-panel {
    align-self: end;
  }

  .hero-scene {
    opacity: 0.72;
  }

  .quick-order {
    grid-template-columns: 1fr;
    margin: 0 18px;
  }

  .quick-order a {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .visit-card dl div {
    display: grid;
    gap: 4px;
  }

  .visit-card dd {
    text-align: left;
  }
}
