:root {
  --bg: #fff8ef;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-strong: #fff4e2;
  --surface-accent: #ffe8c5;
  --text: #2b160d;
  --muted: #77594a;
  --line: rgba(95, 53, 28, 0.14);
  --brand: #b44a1d;
  --brand-dark: #7d2c0f;
  --accent: #f0ae3d;
  --accent-soft: #ffd98f;
  --shadow: 0 24px 80px rgba(108, 47, 17, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(240, 174, 61, 0.28), transparent 24%),
    radial-gradient(circle at left center, rgba(180, 74, 29, 0.1), transparent 26%),
    linear-gradient(180deg, #fffaf4 0%, #fff2e1 52%, #fff8ef 100%);
}

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

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

p,
li {
  line-height: 1.7;
}

.shell {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 239, 0.78);
  border-bottom: 1px solid rgba(95, 53, 28, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(120, 54, 21, 0.15);
}

.brand strong,
.hero h1,
.section-heading h2,
.food-card h3,
.feature-copy h2,
.location-copy h2,
.cta-panel h2,
.site-footer h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a,
.menu-toggle {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}

.site-nav a {
  color: rgba(43, 22, 13, 0.88);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(180, 74, 29, 0.08);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 9rem 0 3.25rem;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 14, 8, 0.72) 0%, rgba(32, 14, 8, 0.42) 32%, rgba(32, 14, 8, 0.14) 62%, rgba(32, 14, 8, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 248, 239, 0) 0%, rgba(255, 248, 239, 0.18) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 10px;
}

.hero-slice {
  position: relative;
  overflow: hidden;
}

.hero-slice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 8, 4, 0.12), rgba(16, 8, 4, 0.36));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy,
.panel,
.food-card,
.cta-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 620px;
  padding: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  color: white;
}

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

.hero h1,
.section-heading h2,
.feature-copy h2,
.location-copy h2,
.cta-panel h2 {
  margin: 0;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-actions,
.hero-points {
  display: flex;
  gap: 0.85rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.button,
.text-link {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(125, 44, 15, 0.24);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.hero-points span,
.section-heading p,
.food-card p,
.location-copy p,
.location-list,
.cta-panel p,
.site-footer p {
  color: var(--muted);
}

.section {
  padding: 4.8rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 14ch;
}

.section-heading p {
  max-width: 31rem;
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.food-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.88);
}

.food-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.food-card div {
  padding: 1.2rem 1.25rem 1.35rem;
}

.food-card h3 {
  margin: 0 0 0.45rem;
  font-size: 2rem;
}

.food-card p {
  margin: 0;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 217, 143, 0.34), transparent 18%),
    linear-gradient(135deg, #fff2dc 0%, #ffe9c6 48%, #fff4e5 100%);
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 74, 29, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 74, 29, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.8rem;
  align-items: center;
}

.feature-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: 10ch;
}

.feature-copy p {
  max-width: 40rem;
  color: var(--muted);
}

.feature-image-wrap {
  padding: 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 24px 80px rgba(160, 90, 18, 0.12);
}

.feature-image {
  width: min(100%, 520px);
  margin: 0 auto;
}

.compact-card img {
  aspect-ratio: 4 / 3;
}

.location-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
  align-items: stretch;
}

.panel,
.cta-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.82);
}

.location-copy,
.cta-panel {
  padding: 1.8rem;
}

.location-list {
  margin: 1.1rem 0 1.3rem;
  padding-left: 1.1rem;
}

.location-map {
  overflow: hidden;
  display: block;
}

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

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
}

.cta-panel {
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(240, 174, 61, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(255, 244, 226, 0.95));
}

.cta-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 12ch;
  margin-inline: auto;
}

.cta-panel p {
  max-width: 44rem;
  margin: 1rem auto 1.5rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(43, 22, 13, 0.96);
  box-shadow: var(--shadow);
}

.site-footer h3 {
  margin: 0 0 0.45rem;
  color: #fff2df;
  font-size: 1.8rem;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 237, 211, 0.75);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .location-section,
  .card-grid-three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 480px;
    padding-top: 8rem;
  }

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

  .section-heading h2,
  .feature-copy h2,
  .cta-panel h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 252, 246, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero-copy,
  .location-copy,
  .cta-panel,
  .food-card div {
    padding: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero-media {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    padding: 0 8px;
  }

  .feature-image-wrap {
    padding: 1rem;
    border-radius: 30px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 1.2rem, 1140px);
  }

  .brand span {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 3.8rem 0;
  }
}
