:root {
  --bg: #faf8f5;
  --bg-warm: #f5f0e8;
  --panel: #ffffff;
  --panel-warm: #fdfbf7;
  --text: #1a1814;
  --text-muted: #6b6560;
  --accent: #b8452a;
  --accent-soft: rgba(184, 69, 42, 0.12);
  --accent-dark: #8c321f;
  --amber: #c4943a;
  --amber-soft: rgba(196, 148, 58, 0.15);
  --stroke: rgba(26, 24, 20, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(26, 24, 20, 0.06);
  --shadow-hover: 0 12px 40px rgba(26, 24, 20, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  background-color: #fcf8f5;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 19px,
      rgba(184, 69, 42, 0.04) 19px,
      rgba(184, 69, 42, 0.04) 20px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 19px,
      rgba(184, 69, 42, 0.03) 19px,
      rgba(184, 69, 42, 0.03) 20px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 28px,
      rgba(184, 69, 42, 0.025) 28px,
      rgba(184, 69, 42, 0.025) 29px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(184, 69, 42, 0.02) 28px,
      rgba(184, 69, 42, 0.02) 29px
    ),
    repeating-radial-gradient(
      circle at 0 0,
      transparent 0,
      transparent 2px,
      rgba(184, 69, 42, 0.06) 2px,
      rgba(184, 69, 42, 0.06) 3px
    ),
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(184, 69, 42, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 85% 90%, rgba(184, 69, 42, 0.05) 0%, transparent 45%);
  background-size:
    20px 20px,
    20px 20px,
    29px 29px,
    29px 29px,
    24px 24px,
    100% 100%,
    100% 100%;
  color: var(--text);
  line-height: 1.5;
  position: relative;
  min-height: 100vh;
}

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

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

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark,
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-mark {
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
}


.brand-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--stroke);
}

.btn-outline:hover {
  border-color: var(--text-muted);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* Bento grid base */
.bento-grid {
  display: grid;
  gap: 12px;
}

.bento-cell {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bento-cell:hover {
  box-shadow: var(--shadow-hover);
}

/* Image placeholders */
.bento-with-image {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.bento-with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-image-overlay {
  position: absolute;
  inset: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  color: white;
}

.bento-image-overlay .bento-label {
  color: rgba(255, 255, 255, 0.9);
}

.bento-image-overlay .dish,
.bento-image-overlay .price {
  color: inherit;
}

.bento-image-overlay .price {
  color: rgba(255, 255, 255, 0.9);
}

.bento-image-overlay .menu-list li {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Specials cell - white text, darker overlay */
.bento-specials.bento-with-image .bento-image-overlay {
  background: linear-gradient(135deg, rgba(184, 69, 42, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.bento-specials .bento-label {
  color: rgba(255, 255, 255, 0.9);
}

/* About overlay - readable text on photo */
.bento-about-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  justify-content: center;
}

.bento-about-overlay h2,
.bento-about-overlay p {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Image cells - compact heights */
.bento-with-image {
  min-height: 140px;
}

.bento-cell--tall.bento-with-image {
  min-height: 180px;
}

.bento-cell--wide {
  grid-column: span 2;
}

.bento-cell--tall {
  grid-row: span 2;
}

.bento-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Hero bento */
.hero {
  padding: 28px 0 32px;
}

.bento-hero-grid {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}

.hero-main {
  background: linear-gradient(135deg, var(--panel-warm) 0%, var(--panel) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 6px;
}

.hero-main h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.15;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 18px;
  max-width: 360px;
}

.bento-specials {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  border-color: transparent;
}

.bento-specials .bento-label {
  color: rgba(255, 255, 255, 0.9);
}

.bento-specials h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.bento-specials p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.bento-hours-preview {
  background: var(--amber-soft);
  border-color: rgba(196, 148, 58, 0.25);
}

.bento-hours-preview .bento-label {
  color: var(--amber);
}

.bento-hours-preview p {
  margin: 2px 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Section */
.section {
  padding: 32px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 6px;
}

.section-head h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  margin: 0;
}

/* Menu bento */
.menu-section {
  background: var(--bg-warm);
}

.bento-menu-grid {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}

.bento-menu-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 12px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.85rem;
}

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

.dish {
  flex: 1;
}

.price {
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.menu-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.menu-list--inline li {
  flex: 1 1 calc(50% - 8px);
  min-width: 120px;
  padding: 4px 0;
  border-bottom: none;
}

.bento-menu-card.starters {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-warm) 100%);
}

.bento-menu-card.mains {
  background: var(--panel);
}

.bento-menu-card.desserts {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--amber-soft) 0%, transparent 100%);
  border-color: rgba(196, 148, 58, 0.2);
}

.bento-menu-card.vegetarian {
  background: var(--panel);
}

/* About bento */
.bento-about-grid {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
}

.bento-about-card h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 10px;
}

.bento-about-card p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bento-about-card p:last-child {
  margin-bottom: 0;
}

.bento-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bento-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.feature-pill {
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
}

/* Hours bento */
.hours-section {
  background: var(--bg-warm);
}

.bento-hours-grid {
  grid-template-columns: 2fr 1fr;
}

.bento-hours-card h3,
.bento-location-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 10px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 32px;
  font-size: 0.85rem;
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bento-location-card p {
  margin: 4px 0;
}

.bento-location-card .btn {
  margin-top: 16px;
}

/* Reserve bento */
.bento-reserve-grid {
  grid-template-columns: 2fr 1fr;
}

.bento-reserve-card h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 8px;
}

.bento-reserve-card > p {
  color: var(--text-muted);
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.reserve-form label span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reserve-form input,
.reserve-form select {
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.reserve-form input:focus,
.reserve-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.bento-contact-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 8px;
}

.bento-contact-card p {
  margin: 0 0 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0;
}

.bento-contact-card .btn {
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 32px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-brand .brand-mark {
  background: var(--accent);
}

.footer-brand .brand-name {
  color: white;
}

.site-footer p {
  margin: 8px 0 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.site-footer h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  opacity: 0.9;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-link {
  color: #ff4d4d;
  text-decoration: underline;
}

.footer-link:hover {
  color: #ff7a7a;
}

/* Menu page - two-column layout */
.menu-layout {
  background: var(--bg-warm);
}

.menu-container {
  width: min(1100px, 94vw);
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.menu-subtitle {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: start;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu-category-block {
  padding-bottom: 24px;
  scroll-margin-top: 100px;
}

.menu-category-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  padding: 0 0 12px;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--stroke);
  padding-top: 12px;
}

.menu-category-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: -12px 0 16px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-item {
  position: relative;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
}

.menu-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}

.menu-item-signature {
  padding-right: 80px;
}

.signature-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 4px;
}

.menu-item-highlight .menu-item-name {
  color: var(--accent);
}

/* Featured menu images */
.menu-featured {
  margin: 8px 0;
}

.menu-featured-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-warm);
}

.menu-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-featured-large .menu-featured-image {
  aspect-ratio: 4 / 3;
}

.menu-featured-square .menu-featured-image {
  aspect-ratio: 1 / 1;
}

.menu-featured-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--panel);
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow);
}

.menu-featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .menu-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* Order page - redesigned */
.order-page .order-section {
  padding: 40px 0 80px;
}

.order-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  overflow: hidden;
}

.order-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.order-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 20, 0.85) 0%, rgba(26, 24, 20, 0.4) 50%, transparent 100%);
}

.order-hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 94vw);
  margin: 0 auto;
}

.order-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 400;
  color: white;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.order-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0 0 28px;
}

.order-type-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.order-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: white;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.order-type-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.order-type-card.active {
  background: var(--accent);
  border-color: var(--accent);
}

.order-type-icon {
  font-size: 1.5rem;
}

.order-type-label {
  font-weight: 700;
  font-size: 1.1rem;
}

.order-type-desc {
  font-size: 0.85rem;
  opacity: 0.9;
}

.order-container {
  width: min(1100px, 94vw);
  margin: 0 auto;
}

/* Category pills - horizontal nav */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 32px;
  position: sticky;
  top: 70px;
  z-index: 5;
  background: linear-gradient(to bottom, var(--bg) 80%, transparent);
}

.category-pill {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--panel);
  border: 2px solid var(--stroke);
  border-radius: 100px;
  transition: all 0.2s;
}

.category-pill:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.order-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.order-category {
  scroll-margin-top: 140px;
}

.order-category-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
}

.order-category-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: -4px 0 20px;
}

/* Order cards grid */
.order-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.order-cards--compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.order-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}

.order-card:hover {
  box-shadow: var(--shadow-hover);
}

/* Uniform image block - same size for all menu images */
.order-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--bg-warm);
  flex-shrink: 0;
}

.order-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.order-card--compact .order-card-img {
  height: 120px;
}

.order-card-body {
  padding: 20px;
}

.order-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.order-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}

.order-card--compact .order-card-body {
  padding: 14px;
}

.order-card--compact .order-card-body h3 {
  font-size: 0.95rem;
}

.order-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.order-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Legacy order layout (kept for compatibility) */
.order-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

.order-nav {
  position: sticky;
  top: 90px;
}

.category-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-nav a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.category-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-add {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-add:hover {
  background: var(--accent-dark);
}

.btn-add:disabled {
  opacity: 0.8;
  cursor: default;
}

/* Cart button in header */
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cart:hover {
  background: var(--accent-dark);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--panel);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--stroke);
}

.cart-header h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.cart-close:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--stroke);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item strong {
  font-size: 0.95rem;
}

.cart-item span:last-of-type {
  color: var(--accent);
  font-weight: 600;
}

.cart-remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  background: var(--accent-soft);
  color: var(--accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-remove:hover {
  background: var(--accent);
  color: white;
}

.cart-empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 40px 20px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--stroke);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cart-total span:last-child {
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

.cart-note {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, 0.98);
  z-index: 50;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 12px;
}

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

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
}

.mobile-nav a.active {
  color: var(--accent);
}

/* Menu page - category anchors */
.menu-quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.menu-quick-nav a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.menu-quick-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .order-content {
    grid-template-columns: 1fr;
  }

  .order-nav {
    position: static;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .category-nav {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  /* Order page redesign - mobile */
  .order-hero {
    min-height: 240px;
    padding-bottom: 28px;
  }

  .category-pills {
    top: 60px;
    padding: 16px 0 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .category-pill {
    white-space: nowrap;
  }

  .order-cards {
    grid-template-columns: 1fr;
  }

  .order-cards--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .order-type-cards {
    flex-direction: column;
  }

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

  .bento-cell--wide {
    grid-column: span 1;
  }

  .bento-cell--tall {
    grid-row: span 1;
  }

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

  .bento-menu-card.desserts {
    grid-column: span 1;
  }

  .bento-about-grid {
    grid-template-columns: 1fr;
  }

  .bento-hours-grid {
    grid-template-columns: 1fr;
  }

  .bento-reserve-grid {
    grid-template-columns: 1fr;
  }

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