:root {
  --cream: #f7f0e2;
  --paper: #fffaf0;
  --ink: #242018;
  --muted: #6b6255;
  --terracotta: #a84322;
  --terracotta-dark: #7b2f19;
  --mustard: #e1a72d;
  --green: #2f6b3f;
  --line: rgba(36, 32, 24, 0.14);
  --shadow: 0 18px 50px rgba(53, 35, 20, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(247, 240, 226, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  align-items: center;
  background: var(--terracotta);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-weight: 800;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.12rem;
}

.nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.95rem;
}

.nav a,
.header-call {
  text-decoration: none;
}

.header-call {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  font-weight: 700;
  padding: 0.72rem 1rem;
}

.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero picture,
.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero picture {
  display: block;
}

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

.hero-shade {
  background: linear-gradient(90deg, rgba(24, 20, 14, 0.82), rgba(24, 20, 14, 0.52) 42%, rgba(24, 20, 14, 0.06) 76%);
}

.hero-content {
  color: white;
  max-width: 44rem;
  padding: clamp(6rem, 14vw, 9rem) clamp(1rem, 7vw, 6rem) clamp(5rem, 10vw, 7rem);
  position: relative;
}

.eyebrow {
  color: var(--mustard);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.96;
  margin-bottom: 1.2rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
  max-width: 38rem;
}

.hero-actions,
.action-panel {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
}

.button.primary {
  background: var(--mustard);
  color: #20170b;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--terracotta-dark);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.quick-info div {
  padding: clamp(1rem, 3vw, 1.6rem) clamp(1rem, 4vw, 4rem);
}

.quick-info div + div {
  border-left: 1px solid var(--line);
}

.quick-info span,
.quick-info strong {
  display: block;
}

.quick-info span {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.section,
.story-band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 74rem;
}

.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 74rem;
}

.menu-card,
.visit-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-card {
  min-height: 15rem;
  padding: 1.35rem;
}

.menu-card p,
.story-copy p,
.feature-list span,
.visit-panel p,
.footer {
  color: var(--muted);
  line-height: 1.6;
}

.item-tag {
  background: rgba(47, 107, 63, 0.12);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1rem;
  padding: 0.35rem 0.65rem;
}

.story-band {
  align-items: start;
  background: #2b2118;
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
}

.story-copy {
  max-width: 42rem;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3rem;
}

.visit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.15fr 0.85fr;
  margin: 0 auto;
  max-width: 74rem;
}

.visit-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.visit-panel a:not(.button) {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.action-panel {
  align-content: start;
}

.action-panel h3,
.action-panel p {
  width: 100%;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
}

.footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(24, 20, 14, 0.84), rgba(24, 20, 14, 0.58) 58%, rgba(24, 20, 14, 0.18));
  }

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

  .quick-info div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .menu-card {
    min-height: auto;
  }

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

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .header-call {
    padding-inline: 0.9rem;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .button {
    width: 100%;
  }
}
