:root {
  --cream: #fff9f3;
  --rose: #b6812c;
  --rose-dark: #8b5f18;
  --gold: #b6812c;
  --espresso: #0b2847;
  --beige: #f6f1e9;
  --white: #ffffff;
  --sage: #657261;
  --muted: #6d5b52;
  --line: rgba(59, 43, 36, 0.17);
  --shadow: 0 18px 46px rgba(85, 53, 42, 0.12);
  --font-display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --font-script: "Allura", cursive;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --page: min(100% - 2rem, 76rem);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 9rem; }
body { margin: 0; background: var(--cream); color: var(--espresso); font-family: var(--font-body); font-size: 1rem; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-underline-offset: 0.25em; }
::selection { background: var(--rose); color: var(--white); }
:focus-visible { outline: 3px solid var(--rose-dark); outline-offset: 4px; }

.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 1000; inset: 1rem auto auto 1rem; width: auto; height: auto; margin: 0; clip: auto; padding: .75rem 1rem; background: var(--espresso); color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 249, 243, .96); border-bottom: 1px solid var(--line); }
.header-inner { width: var(--page); min-height: 4.75rem; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wordmark { display: inline-flex; flex-direction: column; text-decoration: none; font-family: var(--font-display); line-height: 1.05; }
.wordmark span { font-size: 1.05rem; }
.wordmark small { margin-top: .1rem; color: var(--rose-dark); font: 400 1rem/1 var(--font-script); }
.icon-button { width: 2.75rem; height: 2.75rem; border: 0; background: transparent; display: grid; place-content: center; gap: .3rem; cursor: pointer; }
.nav-toggle span { display: block; width: 1.35rem; height: 1px; background: var(--espresso); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(.37rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.37rem) rotate(-45deg); }
.primary-nav { position: absolute; inset: 100% 0 auto; display: none; padding: 1rem; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.primary-nav.is-open { display: grid; }
.primary-nav a, .text-action { min-height: 2.75rem; display: flex; align-items: center; padding: .6rem .25rem; border: 0; background: transparent; color: var(--espresso); text-decoration: none; font-size: .88rem; cursor: pointer; }

.button { min-height: 3rem; display: inline-flex; align-items: center; justify-content: center; padding: .78rem 1.2rem; border: 1px solid var(--espresso); border-radius: 2px; background: var(--espresso); color: var(--white); font-size: .82rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); }
.button-secondary { background: transparent; color: var(--espresso); }
.button-small { min-height: 2.6rem !important; padding: .5rem .8rem !important; }

.hero { min-height: min(46rem, calc(100svh - 4.75rem)); display: grid; place-items: center; padding: 4rem 1rem; background: var(--cream); text-align: center; }
.hero-copy { width: min(100%, 58rem); }
.brand-emblem { position: relative; padding: clamp(2.2rem, 7vw, 4.5rem) 1rem; }
.brand-emblem::before, .brand-emblem::after { content: ""; position: absolute; inset: 0; border: 3px solid var(--espresso); border-radius: 50%; }
.brand-emblem::after { inset: .75rem .9rem; border-width: 1px; }
.brand-emblem h1 { margin: .2rem 0; font: 600 clamp(2.2rem, 9vw, 5.4rem)/1 var(--font-display); letter-spacing: .04em; text-transform: uppercase; font-optical-sizing: auto; }
.emblem-the { display: block; font: 500 clamp(1rem, 3vw, 2rem)/1 var(--font-display); letter-spacing: .24em; text-transform: uppercase; }
.emblem-by { position: relative; z-index: 1; display: inline-block; padding-inline: 1.5rem; background: var(--cream); color: var(--rose-dark); font-family: var(--font-script); font-size: clamp(1.7rem, 6vw, 3.1rem); line-height: .8; }
.tagline { margin: 1.6rem auto 0; font-size: .82rem; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.5rem; }

.section-shell { width: var(--page); margin-inline: auto; padding-block: 5rem; }
.section-label { margin: 0 0 .65rem; color: var(--rose-dark); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
h2 { margin: 0; font: 400 clamp(2.1rem, 7vw, 4.2rem)/1.04 var(--font-display); letter-spacing: -.025em; text-wrap: balance; }
.brand-intro { text-align: center; }
.brand-intro h2 { max-width: 19ch; margin-inline: auto; }
.brand-intro > p:not(.section-label) { max-width: 46rem; margin: 1.4rem auto 0; color: var(--muted); }
.brand-values { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.2rem; margin-top: 2rem; }
.brand-values span { padding-bottom: .2rem; border-bottom: 1px solid var(--gold); font-size: .78rem; font-weight: 700; }

.product-card { position: relative; display: grid; grid-template-columns: minmax(8rem, 42%) 1fr; min-width: 0; min-height: 13rem; background: var(--white); overflow: hidden; box-shadow: 0 10px 26px rgba(11, 40, 71, .08); }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-card.is-unavailable { opacity: .7; }
.product-image { position: relative; min-height: 100%; overflow: hidden; background: var(--beige); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.badge { position: absolute; z-index: 2; top: .55rem; left: .55rem; max-width: calc(100% - 1.1rem); padding: .3rem .45rem; background: var(--espresso); color: var(--white); font-size: .56rem; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.badge[data-badge="Chef's Recommendation"] { background: var(--gold); color: var(--espresso); }
.badge[data-badge="Currently Unavailable"] { background: var(--muted); }
.product-body { min-width: 0; display: flex; flex-direction: column; padding: .9rem; }
.product-title { margin: 0; font: 600 1.05rem/1.2 var(--font-display); }
.product-description { display: -webkit-box; margin: .45rem 0 .7rem; overflow: hidden; color: var(--muted); font-size: .72rem; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.dietary-availability { display: flex; flex-wrap: wrap; gap: .35rem .65rem; margin: 0 0 .75rem; color: #364b31; font-size: .66rem; font-weight: 700; line-height: 1.35; }
.dietary-availability span { display: inline-flex; align-items: center; gap: .3rem; }
.dietary-symbol { width: .78rem; height: .78rem; display: inline-block; flex: 0 0 auto; border: 1.5px solid #9b2c2c; }
.dietary-symbol::after { content: ""; display: block; width: .32rem; height: .32rem; margin: .15rem; border-radius: 50%; background: #9b2c2c; }
.dietary-symbol.eggless { border-color: #2f6b38; }
.dietary-symbol.eggless::after { background: #2f6b38; }
.product-meta { display: flex; justify-content: space-between; align-items: end; gap: .75rem; margin-top: auto; padding-top: .85rem; border-top: 1px solid var(--line); }
.product-size { font-size: .75rem; color: var(--muted); }
.product-price { font-family: var(--font-display); font-size: 1rem; font-variant-numeric: tabular-nums; }
.product-labels { display: none; }
.product-labels span { padding: .25rem .45rem; border: 1px solid var(--line); border-radius: 999px; font-size: .63rem; font-weight: 700; }
.product-labels .alcohol { color: #812f39; border-color: #c99098; background: #fff0f2; }
.product-action { width: 100%; min-height: 2.5rem; margin-top: .7rem; padding: .5rem; background: transparent; color: var(--espresso); font-size: .7rem; }
.product-action[aria-disabled="true"] { background: #e9e2dc; border-color: #e9e2dc; color: #6d625d; pointer-events: none; }

.category-nav { position: sticky; top: 4.75rem; z-index: 40; background: var(--espresso); color: var(--cream); overflow-x: auto; scrollbar-width: thin; }
.category-nav-inner { width: max-content; min-width: 100%; min-height: 3.65rem; display: flex; align-items: center; gap: .3rem; padding: .55rem max(1rem, calc((100vw - 76rem) / 2)); }
.category-title { color: var(--gold); font-size: .67rem; font-weight: 700; text-transform: uppercase; }
.category-nav a { min-height: 2.5rem; display: inline-flex; align-items: center; padding: .45rem .75rem; border-radius: 999px; color: var(--cream); font-size: .75rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.category-nav a[aria-current="true"] { background: var(--cream); color: var(--espresso); }

.menu-heading { max-width: 42rem; margin-bottom: 2rem; }
.menu-heading > p:last-child { color: var(--muted); }
.menu-heading .dietary-note { max-width: 44rem; display: grid; grid-template-columns: auto 1fr; gap: .1rem .55rem; align-items: center; margin-top: 1.25rem; padding: .85rem 1rem; background: var(--beige); color: var(--espresso); font-size: .82rem; line-height: 1.5; }
.dietary-note .dietary-symbol { grid-row: 1; }
.dietary-note strong { margin-right: .2rem; }
.menu-category { padding-block: 2rem; scroll-margin-top: 9rem; }
.menu-category + .menu-category { border-top: 1px solid var(--line); }
.category-heading { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.category-heading h3 { margin: 0; font: 400 clamp(1.8rem, 6vw, 3rem)/1.1 var(--font-display); }
.category-heading span { color: var(--rose-dark); font-size: .72rem; font-weight: 700; }
.product-grid { display: grid; gap: 1rem; }

.founder-note { padding: 5rem 1rem; background: var(--beige); }
.note-inner { width: min(100%, 66rem); margin: auto; display: grid; gap: 2rem; }
.note-mark { width: 5rem; height: 5rem; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--rose-dark); font: 400 2.4rem/1 var(--font-display); }
blockquote { margin: 1.5rem 0; max-width: 52rem; color: var(--muted); font-size: 1rem; }
.signature { color: var(--rose-dark); font-family: var(--font-display); font-style: italic; }

.information { display: grid; gap: 2rem; }
.information ul { margin: 0; padding: 0; list-style: none; }
.information li { position: relative; padding: .8rem 0 .8rem 1.4rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.information li::before { content: ""; position: absolute; left: 0; top: 1.45rem; width: .4rem; height: .4rem; border: 1px solid var(--gold); transform: rotate(45deg); }

.contact { padding: 5rem 1rem; background: var(--rose-dark); color: var(--white); }
.contact-inner { width: min(100%, 58rem); margin: auto; display: grid; gap: 2.5rem; align-items: center; text-align: center; }
.contact .section-label { color: #f4d89e; }
.contact h2 { max-width: 14ch; margin-inline: auto; }
.contact-inner > p:not(.section-label) { max-width: 42rem; margin: 1.25rem auto; color: #fff4ed; }
.button-light { background: var(--white); border-color: var(--white); color: var(--espresso); }
.whatsapp-number { margin-top: .75rem !important; font-size: .78rem; }
.qr-panel { justify-self: center; width: min(100%, 18rem); padding: 1rem; background: var(--white); color: var(--espresso); }
.qr-panel img { width: 100%; aspect-ratio: 1; }
.qr-panel div { display: grid; gap: .2rem; margin-top: .75rem; }
.qr-panel span { color: var(--muted); font-size: .75rem; }
.menu-link { color: var(--ink); font-size: .75rem; font-weight: 700; overflow-wrap: anywhere; }

.site-footer { padding: 2.5rem max(1rem, calc((100vw - 76rem) / 2)); background: var(--espresso); color: var(--cream); text-align: center; }
.footer-brand { display: flex; flex-direction: column; font-family: var(--font-display); }
.footer-brand span { color: var(--gold); font: 600 .64rem/1.6 var(--font-body); text-transform: uppercase; }
.site-footer > p { color: #d8c9be; font-size: .75rem; }
.footer-actions { display: flex; justify-content: center; gap: 1rem; }
.footer-actions button, .footer-actions a { border: 0; background: transparent; color: var(--cream); font-size: .72rem; text-decoration: underline; cursor: pointer; }
.copyright { margin-top: 2rem; }
.print-header { display: none; }

@media (min-width: 42rem) {
  :root { --page: min(100% - 3rem, 76rem); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card { display: flex; min-height: 0; flex-direction: column; }
  .product-image { aspect-ratio: 1 / 1; }
  .product-card.has-placeholder .product-image { min-height: 5.5rem; height: 5.5rem; aspect-ratio: auto; }
  .product-card.has-placeholder .product-image img { object-fit: cover; object-position: center 46%; }
  .product-body { padding: 1.15rem; }
  .product-title { font-size: 1.2rem; }
  .product-description { font-size: .82rem; -webkit-line-clamp: 4; }
  .product-labels { display: flex; }
  .product-action { min-height: 3rem; margin-top: 1rem; font-size: .78rem; }
  .section-heading { grid-template-columns: 1fr auto; align-items: end; }
  .category-heading { grid-template-columns: 1fr auto; align-items: end; }
  .note-inner { grid-template-columns: 7rem 1fr; }
  .information { grid-template-columns: .8fr 1.2fr; }
  .contact-inner { grid-template-columns: 1fr 18rem; text-align: left; }
  .contact h2 { margin-inline: 0; }
  .contact-inner > p:not(.section-label) { margin-inline: 0; }
}

@media (min-width: 64rem) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; display: flex; align-items: center; gap: .9rem; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .primary-nav a:not(.button), .text-action { min-height: 2.5rem; padding: .4rem; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-shell { padding-block: 7rem; }
  .founder-note, .contact { padding-block: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@page { size: A4 portrait; margin: 14mm; }
@media print {
  :root { --cream: #fff; --espresso: #000; --muted: #333; }
  * { box-shadow: none !important; }
  body { background: #fff; color: #000; font-size: 9pt; }
  .announcement, .site-header, .hero, .brand-intro, .featured, .category-nav, .ordering, .founder-note, .contact, .site-footer, .product-action, .product-image, .badge { display: none !important; }
  .print-header { display: grid; gap: 2mm; margin-bottom: 8mm; padding-bottom: 5mm; border-bottom: .5pt solid #777; text-align: center; }
  .print-header strong { font: 18pt var(--font-display); }
  .section-shell { width: 100%; padding: 0; }
  .menu-heading { margin-bottom: 6mm; }
  .menu-heading h2 { font-size: 18pt; }
  .menu-category { padding: 4mm 0; break-before: auto; }
  .menu-category + .menu-category { border-top: .5pt solid #777; }
  .category-heading { margin-bottom: 3mm; }
  .category-heading h3 { font-size: 14pt; }
  .product-grid { display: block; }
  .product-card { display: block; margin-bottom: 3mm; border: 0; border-radius: 0; break-inside: avoid; }
  .product-card.is-unavailable { display: none; }
  .product-body { display: grid; grid-template-columns: 1fr auto; gap: 1mm 5mm; padding: 0 0 3mm; border-bottom: .25pt solid #bbb; }
  .product-title, .product-description { grid-column: 1; }
  .product-title { font-size: 10.5pt; }
  .product-description { margin: 0; font-size: 8pt; }
  .product-meta { grid-column: 2; grid-row: 1 / 3; display: grid; align-content: start; justify-items: end; padding: 0; border: 0; }
  .product-labels { display: none; }
  .information { display: block; margin-top: 7mm; break-before: page; }
  .information h2 { font-size: 16pt; }
  .information li { padding: 1.5mm 0; font-size: 8pt; }
  .information li::before { display: none; }
}