:root {
  --bg: #f7f1e8;
  --bg-soft: #fef9f2;
  --ink: #261a13;
  --muted: #5e4b3f;
  --line: rgba(133, 94, 69, 0.22);
  --primary: #c6561e;
  --primary-strong: #9f3f12;
  --accent: #efb366;
  --card: rgba(255, 249, 240, 0.82);
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 18px 45px rgba(38, 26, 19, 0.12);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -4%, rgba(246, 192, 123, 0.32), transparent 60%),
    radial-gradient(700px 450px at -8% 28%, rgba(255, 210, 157, 0.24), transparent 62%),
    linear-gradient(180deg, #fff8ef 0%, var(--bg) 44%, #fff7ee 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding-bottom: 4.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 440px;
  height: 440px;
  right: -110px;
  top: -110px;
  background: radial-gradient(circle at 30% 30%, rgba(198, 86, 30, 0.36), rgba(198, 86, 30, 0));
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 5%;
  background: radial-gradient(circle at 65% 35%, rgba(239, 179, 102, 0.46), rgba(239, 179, 102, 0));
}

.nav {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(198, 86, 30, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(38, 26, 19, 0.1);
  position: sticky;
  top: 0.7rem;
  z-index: 20;
  backdrop-filter: blur(6px);
}

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

.logo-image {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(38, 26, 19, 0.24);
  background: #111;
}

.logo-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2e1f16;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: #6b4e3e;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(198, 86, 30, 0.12);
  color: var(--primary-strong);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.4rem;
  align-items: end;
  padding-top: 3.3rem;
}

.hero-copy {
  background: rgba(255, 249, 240, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(198, 86, 30, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.2vw, 2.2rem);
  box-shadow: var(--shadow);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: var(--primary-strong);
  font-size: 0.74rem;
  margin: 0 0 0.35rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
}

h3 {
  font-size: 1.12rem;
}

.lead {
  margin-top: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #d66a2f, #b74d1b);
  color: #fff;
  padding: 0.76rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-block;
  transition: transform 180ms ease, filter 180ms ease;
  box-shadow: 0 12px 22px rgba(159, 63, 18, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn:focus-visible,
.legend-btn:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid #7a2f0d;
  outline-offset: 2px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.48);
  color: var(--primary-strong);
  border: 1px solid rgba(159, 63, 18, 0.4);
  box-shadow: none;
}

.btn-small {
  padding: 0.5rem 0.95rem;
  font-size: 0.92rem;
}

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

.hero-stats article {
  background: rgba(255, 237, 216, 0.62);
  border: 1px solid rgba(198, 86, 30, 0.18);
  border-radius: 12px;
  padding: 0.66rem 0.7rem;
}

.hero-stats strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-strong);
}

.hero-stats span {
  font-size: 0.8rem;
  color: #6f5444;
  font-weight: 600;
}

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(198, 86, 30, 0.18);
  background: linear-gradient(160deg, rgba(255, 248, 238, 0.9), rgba(255, 232, 204, 0.92));
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2vw, 1.6rem);
}

.hero-panel-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(159, 63, 18, 0.16);
}

.panel-kicker {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8d4216;
  font-weight: 800;
}

.hero-panel h2 {
  margin-top: 0.38rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.hero-panel p {
  margin: 0.7rem 0;
  color: #6a5142;
}

.panel-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  color: #8b3d13;
}

.panel-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  color: var(--primary-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.section {
  padding: 5rem 0;
}

.alt {
  background:
    linear-gradient(180deg, rgba(248, 233, 215, 0.7), rgba(248, 233, 215, 0.35)),
    repeating-linear-gradient(45deg, rgba(198, 86, 30, 0.03) 0, rgba(198, 86, 30, 0.03) 6px, transparent 6px, transparent 18px);
  border-top: 1px solid rgba(198, 86, 30, 0.12);
  border-bottom: 1px solid rgba(198, 86, 30, 0.12);
}

.section-intro {
  margin-bottom: 1.45rem;
}

.menu-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.legend-btn {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 63, 18, 0.55);
  background: linear-gradient(180deg, #fff9f2, #ffd8b1);
  color: var(--primary-strong);
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(50, 27, 15, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.legend-btn:hover,
.legend-btn[aria-expanded="true"] {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(50, 27, 15, 0.2);
  background: linear-gradient(180deg, #fff1de, #ffc992);
}

.menu-legend-panel {
  margin-top: 0.8rem;
  border: 1px solid rgba(198, 86, 30, 0.24);
  background: rgba(255, 242, 224, 0.9);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}

.menu-legend-panel p {
  margin: 0.2rem 0;
  color: #664d3e;
  font-size: 0.92rem;
}

.js .menu-legend-panel.is-collapsed {
  display: none;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.card,
.ph {
  background: var(--card);
  border: 1px solid rgba(198, 86, 30, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.15rem;
}

.card p {
  color: var(--muted);
}

.menu-grid {
  align-items: start;
  margin-top: 1.1rem;
  gap: 1.1rem;
}

.menu-card {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 243, 229, 0.9));
  padding: 1.25rem;
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.72rem;
}

.menu-head h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.menu-list li {
  padding: 0 0 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.6rem;
  align-items: start;
  border-bottom: 1px dashed rgba(110, 80, 61, 0.33);
}

.menu-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-name {
  font-weight: 800;
  color: #2f1f15;
  grid-column: 1;
}

.menu-price {
  font-weight: 800;
  color: var(--primary-strong);
  grid-column: 2;
  justify-self: end;
  white-space: nowrap;
}

.menu-list p {
  margin: 0.18rem 0 0;
  color: #6f584a;
  grid-column: 1 / -1;
  font-size: 0.94rem;
}

.menu-card.wide {
  grid-column: span 2;
}

.delivery-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 211, 161, 0.46), transparent 50%),
    linear-gradient(140deg, rgba(255, 248, 236, 0.94), rgba(255, 232, 204, 0.92));
  border: 1px solid rgba(198, 86, 30, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.delivery-copy h2 {
  margin-top: 0.15rem;
}

.delivery-copy .lead {
  margin-top: 0.55rem;
}

.delivery-badges {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.delivery-badges span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(159, 63, 18, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #754b34;
}

.delivery-actions {
  margin-top: 1rem;
}

.delivery-card {
  background: rgba(255, 251, 246, 0.78);
  border: 1px solid rgba(198, 86, 30, 0.24);
  border-radius: 14px;
  padding: 0.95rem;
}

.delivery-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.delivery-card p {
  margin-top: 0.6rem;
  color: #664d3e;
}

.delivery-note {
  font-weight: 800;
  color: var(--primary-strong);
}

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

.ph {
  min-height: 220px;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: block;
}

.ph img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.ph figcaption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.6rem;
  z-index: 2;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.ph:hover img {
  transform: scale(1.04);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.1rem;
}

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

.review-card {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 243, 229, 0.9));
  border: 1px solid rgba(198, 86, 30, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.review-stars {
  margin: 0 0 0.45rem;
  color: #bf7b1f;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}

.review-card p {
  margin: 0;
  color: #5f4a3f;
}

.review-card h3 {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  color: #2f1f15;
}

.reviews-cta {
  margin-top: 1rem;
}

.reviews-live {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 243, 229, 0.9));
}

.reviews-live h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.reviews-live p {
  margin: 0.45rem 0 0.7rem;
}

.live-reviews-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.live-review-item {
  border: 1px solid rgba(198, 86, 30, 0.18);
  border-radius: 10px;
  background: rgba(255, 248, 236, 0.88);
  padding: 0.55rem 0.65rem;
}

.live-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.live-review-head strong {
  color: #bf7b1f;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

.live-review-head span {
  font-size: 0.74rem;
  font-weight: 800;
  color: #8e644b;
  border: 1px solid rgba(142, 100, 75, 0.26);
  border-radius: 999px;
  padding: 0.08rem 0.42rem;
}

.live-review-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #5f4a3f;
}

.live-review-item small {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: #8a6a56;
}

.reviews-live iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}

.reviews-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cta {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 225, 182, 0.62), transparent 50%),
    linear-gradient(120deg, #ffdcb4, #ffc58b);
  text-align: center;
}

.cta .container {
  background: rgba(255, 245, 231, 0.74);
  border: 1px solid rgba(159, 63, 18, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.footer {
  text-align: center;
  padding: 1.6rem 0;
  font-size: 0.9rem;
  color: #755b4c;
  display: grid;
  place-items: center;
  gap: 0.45rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(38, 26, 19, 0.2);
  background: #111;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .nav {
    grid-template-columns: 1fr auto;
    border-radius: 16px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 0.55rem;
    margin-top: -0.35rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .delivery-banner {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-text {
    font-size: 1.06rem;
  }
}

@media (max-width: 780px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.wide {
    grid-column: auto;
  }

  .section {
    padding: 3.6rem 0;
  }
}

@media (max-width: 520px) {
  .container,
  .nav {
    width: 93vw;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 0.97rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .ph {
    min-height: 180px;
  }

  .ph img {
    min-height: 180px;
  }

  .menu-title-row {
    align-items: baseline;
  }

  .menu-list li {
    grid-template-columns: 1fr;
  }

  .menu-price {
    grid-column: 1;
    justify-self: start;
    margin-top: 0.12rem;
  }
}
