:root {
  --ink: #241f1a;
  --sand: #f3e9d8;
  --sand-strong: #e6d6ba;
  --olive: #4f5f35;
  --olive-soft: #798b57;
  --copper: #b36f3f;
  --cream: #fff8ee;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(36, 31, 26, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fffdf6 0%, var(--sand) 48%, #ebdbc1 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 1.1;
}

a {
  color: inherit;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(3px);
  opacity: 0.28;
  border-radius: 50%;
  animation: drift 14s ease-in-out infinite;
}

.bg-shape-a {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--olive-soft), transparent);
  top: -50px;
  left: -80px;
}

.bg-shape-b {
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, var(--copper), transparent);
  right: -120px;
  bottom: -80px;
  animation-delay: 2s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--nav-height);
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 248, 238, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(79, 95, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(79, 95, 53, 0.35);
}

.brand strong {
  color: var(--olive);
}

.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

.nav-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

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

.order-strip {
  padding-top: 20px;
}

.order-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(79, 95, 53, 0.12), rgba(179, 111, 63, 0.14));
  border: 1px solid rgba(79, 95, 53, 0.2);
}

.order-block {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  border: 1px solid rgba(79, 95, 53, 0.12);
  padding: 12px 14px;
}

.order-label {
  margin: 0 0 8px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  font-weight: 700;
}

.pickup-phone {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.pickup-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pickup-number {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 0;
  background: #3f4d2b;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.pickup-number:hover,
.pickup-number:focus-visible {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.delivery-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.delivery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.18s ease, filter 0.18s ease;
  position: relative;
}

.delivery-link:hover,
.delivery-link:focus-visible {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.link-uber {
  background: #06c167;
}

.link-doordash {
  background: #eb1700;
}

.link-phone {
  background: #3f4d2b;
}

.link-toast {
  background: #f2663c;
  width: 74px;
}

.link-grubhub {
  background: #f63440;
  width: 98px;
}

.delivery-logo {
  width: 24px;
  height: 24px;
  display: block;
}

.pickup-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.toast-mark {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.grubhub-mark {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.is-recommended::after {
  content: "Recommended";
  position: absolute;
  top: -11px;
  right: -8px;
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff4cc;
  color: #6f4b00;
  border: 1px solid #f0cd6a;
  border-radius: 999px;
  padding: 3px 6px;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(38px, 7vw, 86px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.7vw, 4.2rem);
  margin-bottom: 14px;
}

.hero-text {
  max-width: 48ch;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  margin-bottom: 26px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 18px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(36, 31, 26, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn-catering {
  background: #c7392b;
  border-color: #c7392b;
  color: #fff;
}

.btn-catering:hover,
.btn-catering:focus-visible {
  background: #a92f24;
  border-color: #a92f24;
  color: #fff;
}

.hero-panel {
  animation: fade-up 0.6s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #d5c5aa;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.slide-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
}

.dot.is-active {
  background: var(--white);
  transform: scale(1.18);
}

.image-credit {
  margin: 12px 4px 0;
  font-size: 0.9rem;
  color: rgba(36, 31, 26, 0.84);
}

.image-credit a {
  color: var(--olive);
  font-weight: 700;
}

.map-reviews {
  padding: 8px 0 clamp(22px, 4vw, 34px);
  display: grid;
  gap: 14px;
}

.map-reviews-title {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin: 0;
}

.map-reviews-intro {
  margin: -4px 0 4px;
  max-width: 64ch;
}

.map-reviews-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(79, 95, 53, 0.2);
  box-shadow: var(--shadow);
  background: #dcccae;
}

.map-embed-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.google-rating-card {
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.93), rgba(243, 233, 216, 0.84));
  border: 1px solid rgba(79, 95, 53, 0.2);
  box-shadow: 0 8px 20px rgba(36, 31, 26, 0.07);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-rating-card h3 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 10px;
}

.rating-line {
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.rating-score {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.rating-stars {
  color: #d08816;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  line-height: 1;
}

.rating-source {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  font-weight: 700;
}

.rating-address {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.rating-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(79, 95, 53, 0.16);
  background: rgba(255, 255, 255, 0.76);
  padding: 10px;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  z-index: 1;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 248, 238, 1), rgba(255, 248, 238, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 248, 238, 1), rgba(255, 248, 238, 0));
}

.review-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: review-scroll 42s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-lane {
  display: flex;
  gap: 12px;
}

.review-card {
  width: clamp(230px, 26vw, 290px);
  border-radius: 12px;
  border: 1px solid rgba(79, 95, 53, 0.16);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  box-shadow: 0 6px 14px rgba(36, 31, 26, 0.05);
}

.review-card-stars {
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #d08816;
  font-weight: 800;
}

.review-card-text {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-card-author {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  font-weight: 700;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.menu {
  padding: clamp(38px, 7vw, 74px) 0;
}

.menu h2 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-bottom: 24px;
}

.menu-intro {
  margin: -8px 0 20px;
  max-width: 68ch;
}

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

.dish-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(79, 95, 53, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(36, 31, 26, 0.07);
}

.dish-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.dish-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.dish-content {
  padding: 14px;
}

.dish-source {
  margin: 0 0 6px;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.source-toast {
  background: rgba(242, 102, 60, 0.16);
  color: #a54a2b;
}

.dish-content h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.dish-price {
  margin: 0 0 6px;
  font-weight: 800;
  color: var(--olive);
}

.dish-subtitle {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(36, 31, 26, 0.65);
}

.snapshot-empty {
  margin: 0;
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(79, 95, 53, 0.35);
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  font-weight: 600;
  color: rgba(36, 31, 26, 0.75);
}

.menu-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-cta-large,
.menu-cta-secondary {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.menu-toggle-btn {
  border: 0;
  cursor: pointer;
}

.menu-toggle-btn:hover,
.menu-toggle-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.full-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
}

.full-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.menu-stats {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(36, 31, 26, 0.82);
}

.menu-cta {
  padding: 10px 16px;
  font-size: 0.88rem;
}

.toast-menu {
  display: grid;
  gap: 12px;
}

.menu-category {
  border: 1px solid rgba(79, 95, 53, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(36, 31, 26, 0.07);
  overflow: hidden;
}

.menu-category[open] {
  background: rgba(255, 255, 255, 0.88);
}

.menu-category summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(79, 95, 53, 0.12);
  background: linear-gradient(120deg, rgba(79, 95, 53, 0.08), rgba(179, 111, 63, 0.08));
}

.menu-category summary::-webkit-details-marker {
  display: none;
}

.menu-category-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.menu-category-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  font-weight: 700;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.menu-item-link {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(79, 95, 53, 0.14);
  border-radius: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.menu-item-link:hover,
.menu-item-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(79, 95, 53, 0.35);
}

.menu-item-image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: #e9decb;
}

.menu-item-image-fallback {
  display: grid;
  place-items: center;
  background: #d6c4a3;
  color: #5a472b;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-item-body {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.menu-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.menu-item-price {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--olive);
  white-space: nowrap;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(79, 95, 53, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(36, 31, 26, 0.07);
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.footer {
  margin-top: 24px;
  background: linear-gradient(120deg, #2e3820, #4f5f35);
  color: #f5f0e3;
  padding: 32px 16px;
}

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

.footer h3,
.footer h4 {
  margin-bottom: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.footer p {
  margin: 4px 0;
}

.social-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.social-list li {
  margin: 6px 0;
}

.footer a {
  color: #fff4d7;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .order-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    background: rgba(255, 255, 255, 0.75);
  }

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

  .map-embed-wrap iframe {
    min-height: 310px;
  }

  .review-card {
    width: min(280px, 78vw);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .menu-meta {
    align-items: flex-start;
  }

  .menu-category summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .menu-item-link {
    grid-template-columns: 48px 1fr;
  }

  .menu-item-image {
    width: 48px;
    height: 48px;
  }

  .menu-item-body {
    flex-direction: column;
    gap: 2px;
  }

  .menu-item-price {
    white-space: normal;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }
}
