:root {
  --bg: #f7f1e8;
  --bg-soft: #fffaf2;
  --surface: rgba(255, 250, 242, 0.88);
  --surface-strong: #fff6e8;
  --surface-dark: #1f1a17;
  --text: #221b17;
  --text-soft: #66584e;
  --text-inverse: #fdf5eb;
  --line: rgba(34, 27, 23, 0.1);
  --brand: #9d2f1f;
  --brand-dark: #6f1f15;
  --accent: #f4ab3d;
  --accent-deep: #da8b18;
  --shadow: 0 24px 60px rgba(48, 29, 18, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 171, 61, 0.24), transparent 26%),
    radial-gradient(circle at top right, rgba(157, 47, 31, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f1e8 0%, #fdf8f1 42%, #f3ebdf 100%);
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--surface-dark);
  color: var(--text-inverse);
  font-size: 0.92rem;
}

.topbar p {
  margin: 0;
  padding: 0.8rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 232, 0.82);
  border-bottom: 1px solid rgba(34, 27, 23, 0.08);
  transition: transform 220ms ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 98px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.brand img {
  width: 100%;
  max-width: 245px;
  height: auto;
  max-height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(48, 29, 18, 0.18));
}

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

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff7ef;
  box-shadow: 0 12px 30px rgba(157, 47, 31, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid rgba(34, 27, 23, 0.14);
  background: rgba(255, 255, 255, 0.64);
}

.button-accent {
  background: var(--accent);
  color: #2e1709;
}

.button-menu-lead {
  padding-inline: 1.65rem;
  box-shadow: 0 16px 34px rgba(244, 171, 61, 0.28);
}

.button-menu-lead:hover,
.button-menu-lead:focus-visible {
  background: var(--accent-deep);
  color: #2e1709;
}

.button-order-soft {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(34, 27, 23, 0.12);
}

.button-order-soft:hover,
.button-order-soft:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.button-light {
  background: #fff4df;
  color: #24180f;
}

.button-ghost {
  border: 1px solid rgba(253, 245, 235, 0.24);
  color: var(--text-inverse);
}

.button-small {
  padding: 0.7rem 1rem;
}

.hero-section,
.menu-hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid,
.menu-hero-grid,
.story-grid,
.callout-grid,
.visit-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.visit-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.menu-hero-grid,
.story-grid,
.callout-grid {
  grid-template-columns: 1fr 1fr;
}

.eyebrow,
.section-tag {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
}

.eyebrow-light {
  color: #ffd28a;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.4rem;
}

p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-card,
.menu-side-card,
.callout-card,
.testimonial-card,
.info-panel {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.highlight-card strong,
.info-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.highlight-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.hero-photo-primary {
  inset: 0 16% 24% 0;
  padding: 18px;
  background: linear-gradient(180deg, #f6ede1, #efe1d1);
}

.hero-photo-primary img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 46%;
}

.hero-photo-secondary {
  inset: 46% 0 0 36%;
}

.hero-badge {
  position: absolute;
  right: 6%;
  top: 7%;
  max-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(31, 26, 23, 0.9);
  color: var(--text-inverse);
  box-shadow: var(--shadow);
}

.badge-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #ffd28a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: 2.5rem 0 4.5rem;
}

.section-warm {
  background: linear-gradient(180deg, rgba(255, 244, 223, 0.74), rgba(255, 250, 242, 0.35));
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(18, 15, 12, 0.97), rgba(53, 31, 20, 0.93)),
    linear-gradient(180deg, transparent, transparent);
  color: var(--text-inverse);
  padding: 4.5rem 0;
}

.section-dark p,
.section-dark h2,
.section-dark strong,
.section-dark span {
  color: inherit;
}

.story-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy {
  padding: 1.2rem;
}

.feature-copy p {
  margin: 0.7rem 0 0;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.55;
}

.visit-copy {
  display: grid;
  gap: 1rem;
}

.info-list {
  display: grid;
  gap: 0.85rem;
}

.info-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(253, 245, 235, 0.12);
}

.map-card {
  display: block;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.menu-side-card h2 {
  max-width: none;
  font-size: 1.7rem;
}

.menu-side-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.menu-side-list li + li {
  margin-top: 0.7rem;
}

.menu-side-cta {
  width: 100%;
  margin-top: 1.2rem;
}

.specials-intro {
  max-width: 62ch;
  margin-top: 1rem;
}

.specials-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.special-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 27, 23, 0.1);
  color: var(--text);
  font-weight: 800;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.special-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.special-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.special-card-copy {
  padding: 1.2rem;
}

.special-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.65rem;
}

.special-card-head h3 {
  max-width: 14ch;
}

.special-price {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
  white-space: nowrap;
}

.special-card-copy p {
  margin: 0 0 1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.filter-btn {
  border: 1px solid rgba(34, 27, 23, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
  font: inherit;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff8ef;
}

.menu-sections {
  display: grid;
  gap: 1.25rem;
}

.menu-section {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.menu-section.is-hidden {
  display: none;
}

.menu-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-item-card {
  padding: 1.1rem;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(34, 27, 23, 0.08);
}

.menu-item-card p {
  margin: 0.55rem 0 0;
}

.menu-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(34, 27, 23, 0.08);
}

.menu-item-note {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff8ef;
  text-decoration: none;
  font-weight: 800;
}

.menu-item-link:hover,
.menu-item-link:focus-visible {
  background: var(--brand-dark);
}

.menu-item-photo {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}

.menu-item-photo img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  border-radius: 14px;
  object-fit: cover;
}

.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(34, 27, 23, 0.08);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .menu-hero-grid,
  .story-grid,
  .callout-grid,
  .visit-grid,
  .favorites-grid,
  .specials-grid,
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-photo-primary {
    inset: 0 22% 26% 0;
  }

  .hero-photo-secondary {
    inset: 42% 0 0 32%;
  }

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

@media (max-width: 760px) {
  .site-header.is-hidden-on-scroll {
    transform: translateY(calc(-100% - 4px));
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .topbar p {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0;
    min-height: auto;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .brand img {
    max-width: 180px;
    max-height: 84px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    min-height: 46px;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.35rem 0 0.65rem;
  }

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

  .site-nav a,
  .site-nav .button {
    width: 100%;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(34, 27, 23, 0.08);
  }

  .site-nav .button {
    margin-top: 0.15rem;
  }

  .hero-section,
  .menu-hero,
  .section,
  .section-dark {
    padding-top: 2.2rem;
    padding-bottom: 2.4rem;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    max-width: 11ch;
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
    max-width: none;
  }

  .hero-grid,
  .menu-hero-grid,
  .story-grid,
  .callout-grid,
  .visit-grid,
  .favorites-grid,
  .specials-grid,
  .menu-items-grid {
    gap: 1.25rem;
  }

  .hero-text,
  .specials-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions {
    gap: 0.75rem;
    margin-top: 1.4rem;
  }

  .hero-actions > *,
  .inline-actions > * {
    width: 100%;
  }

  .hero-highlights {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero-visual {
    min-height: 310px;
    margin-top: 0.5rem;
  }

  .hero-photo {
    border-radius: 22px;
  }

  .hero-photo-primary {
    inset: 0 14% 22% 0;
    padding: 12px;
  }

  .hero-photo-primary img {
    border-radius: 18px;
  }

  .hero-photo-secondary {
    inset: 46% 0 0 40%;
  }

  .hero-badge {
    right: 0;
    top: auto;
    bottom: 0.2rem;
    max-width: 190px;
    padding: 0.9rem 1rem;
  }

  .highlight-card,
  .menu-side-card,
  .callout-card,
  .testimonial-card,
  .info-panel {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .specials-meta {
    gap: 0.55rem;
    margin-bottom: 1.2rem;
  }

  .special-pill {
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
  }

  .feature-card,
  .special-card {
    border-radius: 20px;
  }

  .feature-card img,
  .special-card img {
    aspect-ratio: 4 / 3;
  }

  .feature-copy,
  .special-card-copy {
    padding: 1rem;
  }

  .special-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .special-card-head h3 {
    max-width: none;
  }

  .menu-side-card h2 {
    font-size: 1.5rem;
  }

  .menu-side-list {
    padding-left: 1rem;
  }

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

  .info-list p {
    flex-direction: column;
  }

  .menu-item-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-item-link {
    width: 100%;
  }

  .map-card,
  .map-card iframe {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand img {
    max-width: 156px;
    max-height: 74px;
  }

  h1 {
    font-size: clamp(2.1rem, 13vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.7rem, 10vw, 2.2rem);
  }

  .hero-visual {
    min-height: 270px;
  }

  .hero-photo-primary {
    inset: 0 10% 24% 0;
    padding: 10px;
  }

  .hero-photo-secondary {
    inset: 50% 0 0 42%;
  }

  .hero-badge {
    max-width: 164px;
    padding: 0.8rem 0.9rem;
  }

  .special-pill {
    width: 100%;
    justify-content: center;
  }

  .callout-card h2,
  .menu-side-card h2 {
    font-size: 1.65rem;
  }

  .map-card,
  .map-card iframe {
    height: 260px;
    min-height: 260px;
  }
}
