:root {
  --espresso: #24130d;
  --cocoa: #4a2517;
  --caramel: #b9652f;
  --honey: #f3a53b;
  --cream: #fff7e8;
  --butter: #ffe1a6;
  --paper: #fffaf1;
  --white: #ffffff;
  --muted: #7a6254;
  --line: #eddcc8;
  --green: #137a4b;
  --shadow: 0 24px 64px rgba(74, 37, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--espresso);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.top-ribbon {
  position: fixed;
  z-index: 31;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 8px 16px;
  color: var(--cream);
  background: var(--espresso);
  font-size: 0.83rem;
  font-weight: 800;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 34px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(18px, calc((100% - 1120px) / 2));
  color: var(--espresso);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid rgba(74, 37, 23, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(74, 37, 23, 0.08);
}

.site-header.scrolled {
  color: var(--espresso);
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 14px 38px rgba(74, 37, 23, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--caramel);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--espresso);
  border-radius: 50%;
  color: var(--espresso);
  background: linear-gradient(135deg, var(--butter), var(--honey));
  font-size: 0.82rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 8px 6px;
  font-weight: 800;
  font-size: 0.94rem;
}

.site-nav a::after {
  position: absolute;
  right: 6px;
  bottom: 2px;
  left: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--honey);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: 160ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-order {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--espresso);
  background: linear-gradient(135deg, var(--butter), var(--honey));
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(243, 165, 59, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(74, 37, 23, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--espresso);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(36, 19, 13, 0.94), rgba(36, 19, 13, 0.72) 44%, rgba(36, 19, 13, 0.12)),
    linear-gradient(180deg, rgba(36, 19, 13, 0.08), rgba(36, 19, 13, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 168px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 247, 232, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions,
.hero-badges,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--espresso);
  background: linear-gradient(135deg, var(--butter), var(--honey));
  box-shadow: 0 16px 34px rgba(243, 165, 59, 0.24);
}

.button.secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 247, 232, 0.34);
  background: rgba(255, 247, 232, 0.08);
}

.button.wide {
  width: 100%;
}

.hero-badges {
  margin-top: 38px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.08);
  color: rgba(255, 247, 232, 0.84);
  font-weight: 800;
}

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

.intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: end;
}

.intro p:last-child,
.order-copy p,
.location-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.category-tabs {
  margin-bottom: 24px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--cocoa);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  color: var(--espresso);
  border-color: transparent;
  background: var(--butter);
}

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

.menu-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(74, 37, 23, 0.06);
}

.menu-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  white-space: nowrap;
  color: var(--caramel);
  font-weight: 900;
}

.tag {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green);
  background: #eaf7ef;
  font-size: 0.75rem;
  font-weight: 900;
}

.add-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--cream);
  background: var(--espresso);
  font-weight: 900;
  cursor: pointer;
}

.order-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.notice,
.cart-panel,
.special-card,
.hours-card,
.location-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(74, 37, 23, 0.06);
}

.notice {
  padding: 16px;
  color: var(--cocoa);
  background: #fff0d2;
}

.cart-panel {
  padding: 22px;
}

.cart-head,
.cart-row,
.cart-total,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.cart-head button,
.qty button {
  border: 0;
  border-radius: 8px;
  background: #f5e3cd;
  color: var(--cocoa);
  font-weight: 900;
  cursor: pointer;
}

.cart-head button {
  padding: 9px 12px;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.cart-row {
  align-items: flex-start;
  padding: 12px;
  border-radius: 8px;
  background: var(--paper);
}

.cart-row strong {
  display: block;
}

.cart-row small {
  color: var(--muted);
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 28px;
  height: 28px;
}

.cart-total {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.order-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--cocoa);
  font-weight: 900;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--espresso);
  background: var(--white);
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--honey);
  outline: 3px solid rgba(243, 165, 59, 0.18);
}

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

.special-card {
  padding: 24px;
}

.special-card span {
  color: var(--caramel);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

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

.special-card strong {
  color: var(--espresso);
  font-size: 1.15rem;
}

.special-card.accent {
  color: var(--cream);
  background: var(--espresso);
  border-color: transparent;
}

.special-card.accent span,
.special-card.accent strong {
  color: var(--butter);
}

.special-card.accent p {
  color: rgba(255, 247, 232, 0.76);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.hours-card,
.location-card {
  padding: 28px;
}

.hours-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-list span {
  color: var(--muted);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-weight: 900;
}

.contact-lines a {
  color: var(--caramel);
}

.site-footer {
  padding: 28px max(16px, calc((100% - 1120px) / 2));
  color: rgba(255, 247, 232, 0.76);
  background: var(--espresso);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--butter);
  font-weight: 900;
}

@media (max-width: 940px) {
  .top-ribbon {
    justify-content: space-between;
    gap: 12px;
    font-size: 0.74rem;
  }

  .site-header {
    top: 32px;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-order {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--cream);
    background: rgba(36, 19, 13, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .intro,
  .order-section,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .top-ribbon span:last-child {
    display: none;
  }

  .hero-content {
    padding-top: 156px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(36, 19, 13, 0.94), rgba(36, 19, 13, 0.55));
  }

  .section {
    padding: 68px 0;
  }

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

  .cart-row,
  .hours-list li,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
