:root {
  color-scheme: light;
  --paper: #fff8ea;
  --ink: #251920;
  --muted: #6e5b61;
  --line: #e3cfba;
  --custard: #f3c777;
  --rose: #b84865;
  --mahogany: #542d25;
  --panel: rgba(255, 252, 244, 0.92);
  --shadow: 0 24px 70px rgba(60, 36, 25, 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(--paper);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(37, 25, 32, 0.42), rgba(37, 25, 32, 0));
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 78px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.14);
  color: #fffaf0;
  padding: 0 16px;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  padding: 4px;
  box-shadow: 0 14px 34px rgba(37, 25, 32, 0.16);
  backdrop-filter: blur(12px);
}

nav a,
.primary-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

nav a {
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 0.15s, background 0.15s;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(184, 72, 101, 0.08);
  color: var(--rose);
}

.hero {
  display: grid;
  min-height: 100vh;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(37, 25, 32, 0.88) 0%, rgba(37, 25, 32, 0.72) 38%, rgba(37, 25, 32, 0.28) 72%, rgba(37, 25, 32, 0.1) 100%),
    url("./assets/processed/menu-board.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 12vh, 120px) 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  color: #fffaf0;
  font-size: clamp(3.8rem, 9vw, 7.8rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.94;
}

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

p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-content p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 6px;
  background: var(--rose);
  color: #fffaf0;
  padding: 0 22px;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(184, 72, 101, 0.38);
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #a03959;
  box-shadow: 0 16px 36px rgba(184, 72, 101, 0.48);
  transform: translateY(-1px);
}

.section,
.menu-section,
.story-section,
.visit-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 24px;
}

.flavor-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.flavor-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 216px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 14px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.flavor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 80px rgba(60, 36, 25, 0.22);
}

.flavor-card.large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.flavor-card img {
  width: 100%;
  height: 100%;
  min-height: 186px;
  border-radius: 6px;
  object-fit: cover;
}

.flavor-card.large img {
  height: 410px;
}

.menu-section,
.story-section {
  display: grid;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.menu-section {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.menu-section img,
.story-section img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-copy p {
  max-width: 520px;
  font-size: 1.08rem;
}

.story-section {
  grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
}

.story-section p {
  max-width: 620px;
  font-size: 1.1rem;
}

.visit-section {
  border-top: 1px solid var(--line);
}

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

.visit-grid > div {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.visit-grid p {
  margin-bottom: 4px;
}

.visit-grid a {
  color: var(--rose);
  font-weight: 800;
}

@media (max-width: 780px) {
  .header-inner {
    height: 74px;
    padding: 0 12px;
  }

  .brand {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.98rem;
  }

  nav a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 100vh;
    background:
      linear-gradient(180deg, rgba(37, 25, 32, 0.88) 0%, rgba(37, 25, 32, 0.5) 44%, rgba(37, 25, 32, 0.86) 100%),
      url("./assets/processed/menu-board.jpg") center / cover no-repeat;
  }

  .flavor-grid,
  .menu-section,
  .story-section,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .flavor-card,
  .flavor-card.large {
    grid-template-columns: 1fr;
  }

  .flavor-card.large img,
  .flavor-card img {
    height: 260px;
    min-height: 260px;
  }
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background: var(--mahogany);
  color: rgba(255, 250, 240, 0.72);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h4 {
  margin: 0 0 8px;
  color: #fffaf0;
  font-size: 1.35rem;
}

.footer-brand p {
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.5;
}

.footer-col h5 {
  margin: 0 0 12px;
  color: var(--custard);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 250, 240, 0.72);
  text-decoration: none;
  line-height: 1.7;
  display: block;
}

.footer-col a:hover {
  color: var(--custard);
}

.footer-base {
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.footer-base-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 250, 240, 0.38);
}

@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 28px;
  }
}
