/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  background: #fdfbf7;
  color: #1c1917;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: #d97706; color: #fff; }

:root {
  --espresso: #1c1917;
  --cream: #fdfbf7;
  --amber: #d97706;
  --amber-hover: #b45309;
  --terracotta: #92400e;
  --muted: #78716c;
  --card-light: #ffffff;
  --card-dark: #262626;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.hidden { display: none !important; }

.eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .3em; color: var(--amber); }
.eyebrow.amber { color: var(--amber); }
.section-title { font-family: var(--font-heading); font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; color: #1c1917; }
.section-copy { margin-top: 20px; color: #57534e; line-height: 1.75; max-width: 540px; }
.btn-primary { background: var(--amber); color: #fff; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: background .2s ease; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--amber-hover); }
.btn-primary.block { width: 100%; justify-content: center; padding: 16px; }
.btn-ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.5); color: #fff; padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 14px; backdrop-filter: blur(8px); transition: background .2s ease; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-link { background: none; font-weight: 700; font-size: 14px; text-decoration: underline; color: inherit; margin-top: 32px; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; background: var(--amber); }

/* ============ UTILITY STRIP ============ */
.utility { background: var(--espresso); color: #d6d3d1; font-size: 11px; letter-spacing: .04em; position: relative; z-index: 60; }
.utility .container { padding-top: 8px; padding-bottom: 8px; }
.util-left { display: flex; gap: 20px; }
.util-item { display: flex; align-items: center; gap: 6px; }
.pickup-badge { display: flex; align-items: center; gap: 6px; font-weight: 600; color: #fbbf24; transition: color .2s; }
.pickup-badge:hover { color: #fcd34d; }
.order-count { display: none; }
.order-count.show { display: inline; }
.hide-sm { display: inline; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(253,251,247,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(231,229,228,.7); }
.header-inner { height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--espresso); color: var(--amber); flex-shrink: 0; }
.brand-text b { display: block; font-family: var(--font-heading); font-size: 18px; line-height: 1; color: #1c1917; }
.brand-text small { display: block; margin-top: 4px; font-size: 9px; text-transform: uppercase; letter-spacing: .22em; color: var(--muted); }
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 14px; font-weight: 500; color: #57534e; transition: color .2s; }
.nav-desktop a:hover { color: var(--terracotta); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.burger span { width: 24px; height: 2px; background: #1c1917; border-radius: 2px; transition: transform .3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ DRAWER ============ */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 49; opacity: 0; visibility: hidden; transition: opacity .3s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100vh; width: 82%; max-width: 360px; background: var(--espresso); color: #fff; padding: 28px; z-index: 50; transform: translateX(100%); transition: transform .3s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-close { align-self: flex-end; font-size: 32px; color: #fff; line-height: 1; padding: 4px; }
.drawer-nav { margin-top: 56px; display: flex; flex-direction: column; }
.drawer-nav a { padding: 20px 0; font-family: var(--font-heading); font-size: 24px; border-bottom: 1px solid #292524; transition: color .2s; }
.drawer-nav a:hover { color: var(--amber); }
.drawer-cta { margin-top: 28px; text-align: center; justify-content: center; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 760px; background: var(--espresso); color: #fff; overflow: hidden; isolation: isolate; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.6) 50%, rgba(0,0,0,.25)); z-index: -1; }
.hero-content { position: relative; padding: 96px 20px; max-width: 768px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.02; margin-top: 20px; }
.hero-title em { font-weight: 400; font-style: italic; color: var(--amber); }
.hero-subtitle { margin-top: 28px; max-width: 540px; font-size: 18px; line-height: 1.9; color: #e7e5e4; }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { margin-top: 56px; display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: #d6d3d1; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }

/* ============ MENU SECTION ============ */
.menu-section { background: var(--cream); padding: 96px 20px; }
.section-intro { max-width: 640px; }
.section-intro .section-title { margin-top: 16px; }
.filter-tabs { margin-top: 40px; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tabs .tab { white-space: nowrap; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 700; border: 1px solid #d6d3d1; background: #fff; color: #57534e; transition: all .2s; }
.filter-tabs .tab:hover { border-color: var(--amber); }
.filter-tabs .tab.active { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.menu-grid { margin-top: 32px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card { overflow: hidden; border-radius: 28px; border: 1px solid #e7e5e4; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.menu-card .card-img { height: 224px; overflow: hidden; }
.menu-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.menu-card:hover .card-img img { transform: scale(1.05); }
.menu-card .card-body { padding: 24px; }
.menu-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.menu-card .tag { background: #fffbeb; color: #92400e; padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.menu-card .card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.menu-card .card-head h3 { font-family: var(--font-heading); font-size: 24px; color: #1c1917; }
.menu-card .price { color: var(--terracotta); font-weight: 700; }
.menu-card .card-desc { margin-top: 12px; min-height: 48px; font-size: 14px; line-height: 1.5; color: #78716c; }
.menu-card .add-btn { margin-top: 20px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid #d6d3d1; border-radius: 999px; padding: 12px; font-size: 14px; font-weight: 700; transition: all .2s; }
.menu-card .add-btn:hover { border-color: var(--amber); background: var(--amber); color: #fff; }
.menu-card.hide { display: none; }

/* ============ STORY ============ */
.story { background: var(--espresso); color: #fff; padding: 96px 20px; }
.story-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-image { position: relative; }
.story-image img { width: 100%; height: 620px; object-fit: cover; border-radius: 36px; }
.story-badge { position: absolute; bottom: -20px; right: 0; background: var(--amber); color: #fff; padding: 20px; border-radius: 16px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,.3); }
@media (min-width: 640px) { .story-badge { right: 32px; } }
.story-badge b { display: block; font-family: var(--font-heading); font-size: 30px; }
.story-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.story .section-title { color: #fff; }
.story .eyebrow { color: var(--amber); margin-bottom: 16px; }
.story-copy { margin-top: 24px; max-width: 540px; font-size: 18px; line-height: 1.9; color: #d6d3d1; }
.story-points { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.story-point { display: flex; gap: 16px; }
.point-icon { flex-shrink: 0; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #292524; color: var(--amber); }
.story-point h3 { font-family: var(--font-heading); font-size: 20px; }
.story-point p { margin-top: 4px; font-size: 14px; line-height: 1.6; color: #a8a29e; }

/* ============ RESERVATION ============ */
.reservation-section { background: var(--cream); padding: 96px 20px; }
.reservation-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .reservation-grid { grid-template-columns: .85fr 1.15fr; } }
.reservation-lead .section-title { margin-top: 16px; }
.lead-copy { margin-top: 24px; font-size: 18px; line-height: 1.9; color: #78716c; }
.lead-quote { margin-top: 32px; border-left: 2px solid var(--amber); padding-left: 20px; font-family: var(--font-heading); font-size: 20px; font-style: italic; color: #44403c; }
.reservation-card { background: #fff; border: 1px solid #e7e5e4; border-radius: 32px; padding: 40px; box-shadow: 0 20px 50px rgba(231,229,228,.6); }
.reservation-head { margin-bottom: 28px; }
.card-title { margin-top: 8px; font-family: var(--font-heading); font-size: 30px; }
form label, form legend { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: #57534e; }
form input, form select { margin-top: 8px; width: 100%; border: 1px solid #d6d3d1; border-radius: 12px; background: #fff; padding: 12px 16px; font-size: 14px; outline: none; font-family: inherit; color: #1c1917; }
form input:focus, form select:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,119,6,.12); }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
fieldset { border: none; margin-bottom: 20px; }
legend { margin-bottom: 8px; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slots button { border: 1px solid #d6d3d1; border-radius: 12px; padding: 10px; font-size: 12px; font-weight: 700; transition: all .2s; }
.time-slots button.active { border-color: var(--amber); background: var(--amber); color: #fff; }
.seating-options { display: flex; flex-wrap: wrap; gap: 8px; }
.seating-options button { border: 1px solid #d6d3d1; border-radius: 999px; padding: 8px 16px; font-size: 12px; font-weight: 700; transition: all .2s; }
.seating-options button.active { border-color: var(--espresso); background: var(--espresso); color: #fff; }
.form-error { font-size: 14px; font-weight: 600; color: #b91c1c; min-height: 18px; margin-bottom: 8px; }
.confirmation { padding: 40px 0; text-align: center; }
.confirm-icon { width: 64px; height: 64px; margin: 0 auto; color: var(--amber); }
.confirm-title { margin-top: 24px; font-family: var(--font-heading); font-size: 40px; }
.confirm-copy { margin-top: 12px; color: #78716c; }

/* ============ LOCATION ============ */
.location-section { background: #f5f5f4; padding: 96px 20px; }
.location-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-info .section-title { margin-top: 16px; }
.contact-cards { margin-top: 36px; display: grid; gap: 16px; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card { background: #fff; padding: 20px; border-radius: 16px; color: var(--amber); transition: box-shadow .2s; }
.contact-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.contact-card b { display: block; margin-top: 16px; color: #1c1917; }
.contact-card span { font-size: 14px; color: #78716c; }
.hours-card { margin-top: 32px; background: var(--espresso); color: #fff; padding: 24px; border-radius: 16px; }
.hours-card h3 { font-family: var(--font-heading); font-size: 24px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #44403c; font-size: 14px; }
.hours-row span { color: #a8a29e; }
.hours-row.last { border-bottom: none; }
.social-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; color: #78716c; }
.social-handle { margin-top: 8px; font-family: var(--font-heading); font-size: 30px; color: #1c1917; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-grid a { display: block; height: 224px; overflow: hidden; border-radius: 16px; }
.social-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.social-grid a:hover img { transform: scale(1.05); }

/* ============ FOOTER ============ */
.site-footer { background: var(--espresso); color: #fff; padding: 80px 20px 32px; }
.footer-top { display: grid; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid #292524; }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; align-items: center; } }
.footer-top .section-title { margin-top: 12px; color: #fff; }
.footer-top p { margin-top: 12px; color: #a8a29e; }
.newsletter-form { display: flex; border: 1px solid #44403c; background: #1c1917; border-radius: 999px; padding: 6px; align-self: center; }
.newsletter-form input { border: none; background: transparent; padding: 12px 20px; font-size: 14px; color: #fff; outline: none; min-width: 0; flex: 1; }
.newsletter-success { font-family: var(--font-heading); font-size: 24px; color: var(--amber); align-self: center; }
.footer-middle { display: grid; gap: 40px; padding: 48px 0; }
@media (min-width: 640px) { .footer-middle { grid-template-columns: repeat(3, 1fr); } }
.footer-middle .brand b { margin-top: 12px; display: block; font-family: var(--font-heading); font-size: 20px; }
.footer-middle .brand p { margin-top: 12px; max-width: 280px; font-size: 14px; line-height: 1.6; color: #78716c; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: #a8a29e; }
.footer-nav b { color: #fff; }
.footer-nav a:hover { color: #fff; }
.footer-social b { display: block; }
.social-icons { margin-top: 16px; display: flex; gap: 12px; }
.social-icons a { border: 1px solid #44403c; border-radius: 999px; padding: 12px; color: #fff; transition: border-color .2s; display: grid; place-items: center; }
.social-icons a:hover { border-color: var(--amber); color: var(--amber); }
.footer-bottom { padding-top: 28px; border-top: 1px solid #292524; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; color: #78716c; }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: #1c1917; color: #fff; padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.2); z-index: 100; opacity: 0; transition: transform .3s, opacity .3s; pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
}
@media (max-width: 639px) {
  .hide-sm { display: none; }
  .reservation-card { padding: 24px; }
}