:root {
  --ink: #1f1a16;
  --muted: #776c60;
  --paper: #f8f1e7;
  --cream: #fffaf1;
  --charcoal: #171412;
  --tomato: #c43a2f;
  --olive: #45653a;
  --basil: #223c2a;
  --honey: #d7a64a;
  --line: rgba(31, 26, 22, 0.14);
  --shadow: 0 22px 60px rgba(25, 17, 11, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(196, 58, 47, 0.10), transparent 28rem),
    linear-gradient(180deg, #fbf5eb 0%, var(--paper) 44%, #f4eadc 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: inherit; }
iframe { border: 0; }

.hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(215, 166, 74, 0.22), transparent 18rem),
    radial-gradient(circle at 12% 18%, rgba(196, 58, 47, 0.22), transparent 16rem),
    linear-gradient(135deg, #16120f 0%, #26351f 52%, #16120f 100%);
  isolation: isolate;
  padding-bottom: clamp(34px, 5vw, 56px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.2), rgba(23, 20, 18, 0.48)),
    repeating-linear-gradient(135deg, rgba(255, 250, 241, 0.04) 0 1px, transparent 1px 18px);
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 12px 0 0;
}
.brand img {
  display: block;
  width: clamp(72px, 8vw, 92px);
  height: auto;
  border-radius: 4px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}
.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(22px, 3.5vw, 42px);
  width: min(1040px, calc(100% - 36px));
  margin: clamp(12px, 3vw, 28px) auto 0;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: auto;
  margin: 0;
  color: var(--cream);
  text-align: left;
}
.eyebrow, .label, .section-kicker {
  margin: 0 0 8px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2 { margin: 0; line-height: 1; }
h1 {
  max-width: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.1rem, 7vw, 5.7rem);
  font-weight: 700;
}
.hero-content p:not(.eyebrow) {
  max-width: 500px;
  margin: 20px 0 28px;
  color: rgba(255, 250, 241, 0.92);
  font-size: clamp(1rem, 3.8vw, 1.25rem);
}
.order-link, .sticky-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(196, 58, 47, 0.32);
}
.order-link.small { min-height: 40px; padding: 0 18px; }
.order-link.primary { width: min(100%, 310px); padding: 0 24px; }

.offers {
  position: relative;
  z-index: 6;
  width: min(360px, 100%);
  margin: 0;
}
.offers-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  box-shadow: var(--shadow);
}
.hero-offers {
  justify-self: end;
}
.hero-offers .offers-slider {
  border: 1px solid rgba(255, 250, 241, 0.16);
}
.offer-track {
  display: flex;
  transition: transform 520ms ease;
}
.offer-slide {
  min-width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  background: transparent;
}
.offer-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.5);
  border-radius: 50%;
  background: rgba(23, 20, 18, 0.72);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}
.offer-nav.prev { left: 12px; }
.offer-nav.next { right: 12px; }

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: clamp(36px, 6vw, 72px) auto 0;
  padding: 0 16px;
}
.intro > div {
  min-height: 108px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 12px 30px rgba(25, 17, 11, 0.08);
}
.intro strong, .intro a { display: block; font-size: 1rem; font-weight: 900; }
.intro a { color: var(--olive); }

.menu-shell { max-width: 1180px; margin: 58px auto 76px; padding: 0 16px; }
.menu-heading { margin-bottom: 18px; }
.menu-heading h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.15rem, 8vw, 4.4rem);
}
.image-disclaimer {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.category-tabs {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  background: rgba(248, 241, 231, 0.96);
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}
.category {
  margin: 14px 0;
  scroll-margin-top: 76px;
}
.category-toggle {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--basil);
  text-align: left;
  cursor: pointer;
}
.category-toggle strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
}
.category-toggle small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}
.category-chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.category-toggle[aria-expanded="true"] .category-chevron {
  transform: rotate(225deg);
}
.items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}
.items[hidden] {
  display: none;
}
.item {
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.86);
}
.item.has-thumb {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.item-thumb {
  display: block;
  width: 84px;
  height: 84px;
  max-width: 84px;
  max-height: 84px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(31, 26, 22, 0.08);
}
.item-content {
  min-width: 0;
}
.item-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: start;
}
.item h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.item p { margin: 7px 0 0; color: var(--muted); font-size: 0.92rem; }
.item .price { white-space: nowrap; color: var(--tomato); font-weight: 900; }
.detail { color: var(--olive); font-weight: 800; }
.sticky-order {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  min-width: 172px;
  padding: 0 22px;
}
.site-footer {
  padding: 44px 16px 96px;
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 166, 74, 0.16), transparent 18rem),
    linear-gradient(135deg, #171412, #22301f);
  color: #fff;
}
.footer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.footer-brand,
.footer-card,
.map-card {
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.06);
  padding: 22px;
}
.footer-brand img {
  width: 104px;
  border-radius: 4px;
  background: #fff;
}
.footer-brand h2,
.footer-card h3 {
  margin: 14px 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
}
.footer-brand p,
.footer-card p,
.map-card span {
  color: rgba(255, 250, 241, 0.78);
}
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.hours-list {
  margin: 0;
}
.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
}
.hours-list dt,
.hours-list dd {
  margin: 0;
}
.hours-list dt {
  color: rgba(255, 250, 241, 0.78);
}
.hours-list dd {
  font-weight: 900;
  white-space: nowrap;
}
.contact-line {
  margin: 0 0 12px;
}
.contact-line span {
  display: block;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-line a {
  color: #fff;
  font-weight: 900;
}
.map-card {
  grid-column: 1 / -1;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  filter: saturate(0.88) contrast(1.04);
}
.map-panel {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border-radius: 14px;
  background: rgba(23, 20, 18, 0.88);
  backdrop-filter: blur(8px);
}
.map-panel strong {
  display: block;
  margin: 4px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
}
.map-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--honey);
  color: #171412;
  font-weight: 900;
  text-decoration: none;
}
.map-label {
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 210px; }
}
@media (max-width: 780px) {
  .hero { padding-bottom: 44px; }
  .topbar {
    width: min(100% - 32px, 560px);
    padding-top: 12px;
  }
  .brand img { width: 70px; }
  .order-link.small {
    min-height: 38px;
    padding: 0 15px;
  }
  .hero-layout {
    display: flex;
    flex-direction: column-reverse;
    width: min(100% - 32px, 560px);
    margin-top: 24px;
    gap: 24px;
  }
  .hero-content {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .hero-content p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .offers { width: min(360px, 100%); margin: 0; }
  .offer-slide { aspect-ratio: 3 / 4; }
  .offer-nav { width: 38px; height: 38px; }
  .intro {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .items { grid-template-columns: 1fr; }
  .item.has-thumb { grid-template-columns: 72px minmax(0, 1fr); gap: 12px; }
  .item-thumb { width: 72px; height: 72px; max-width: 72px; max-height: 72px; }
  .intro > div { min-height: 86px; }
  .menu-shell { margin-top: 40px; }
  .item { min-height: 0; }
  .sticky-order { left: 16px; right: 16px; width: auto; }
}











