@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --red: #c91d1d;
  --red-dark: #a91414;
  --ink: #111111;
  --ink-soft: #292929;
  --yellow: #fec509;
  --focus: #005fcc;
  --cream: #fff7ef;
  --paper: #ffffff;
  --muted: #6b625c;
  --line: rgba(17,17,17,.14);
  --head: 'Bowlby One SC', Impact, sans-serif;
  --body: 'Montserrat', Arial, sans-serif;
  --shadow: 0 20px 60px rgba(35,18,12,.12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: var(--yellow); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%); padding: 10px 16px; background: var(--yellow); color: var(--ink); font-weight: 800; border-radius: 8px; }
.skip-link:focus { transform: none; }
.container { width: var(--container); margin-inline: auto; }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.display, h1, h2, h3 { font-family: var(--head); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; }
h1, h2, h3, p { margin-top: 0; }
h2 { font-size: clamp(2rem, 5vw, 4.2rem); }
.lead { max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 2px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button--red { color: #fff; background: var(--red); }
.button--red:hover { background: var(--red-dark); }
.button--yellow { color: var(--ink); background: var(--yellow); }
.button--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button--outline:hover { color: #fff; background: var(--ink); }
.button--light { color: #fff; border-color: rgba(255,255,255,.55); }
.button--light:hover { color: var(--ink); background: #fff; }

.site-header { position: sticky; top: 0; z-index: 100; height: 78px; border-bottom: 1px solid rgba(17,17,17,.08); background: rgba(255,247,239,.94); backdrop-filter: blur(18px); }
.nav { width: var(--container); height: 100%; margin: auto; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img { width: 124px; height: 54px; object-fit: contain; mix-blend-mode: multiply; }
.nav-links { display: flex; align-items: center; gap: 25px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav-links a { padding: 8px 0; font-size: .87rem; font-weight: 800; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--red); }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; width: 46px; height: 46px; margin-left: auto; padding: 10px; border: 0; border-radius: 50%; background: var(--ink); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 21px; height: 2px; background: #fff; border-radius: 1px; }
.mobile-menu { display: none; position: fixed; inset: 78px 0 0; z-index: 90; padding: 42px 26px; background: rgba(17,17,17,.985); color: #fff; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-menu__links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--head); font-size: clamp(1.7rem, 8vw, 2.8rem); text-decoration: none; }
.mobile-menu__meta { margin-top: auto; display: grid; gap: 12px; font-size: .9rem; color: #ccc; }

.hero { position: relative; min-height: calc(100svh - 78px); display: grid; align-items: end; overflow: hidden; color: #fff; background: #111; }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.53) 48%, rgba(8,8,8,.15) 75%), linear-gradient(0deg, rgba(8,8,8,.7), transparent 55%); }
.hero__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: clamp(80px, 13vw, 150px) 0 80px; }
.hero__content .eyebrow { color: var(--yellow); }
.hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(3rem, 9vw, 7.8rem); }
.hero__copy { max-width: 610px; margin-bottom: 30px; font-size: clamp(1.05rem, 2vw, 1.32rem); color: #f2eee9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note { display: flex; align-items: center; gap: 10px; margin: 30px 0 0; font-size: .86rem; color: #eee; }
.hero__note::before { content: ''; width: 34px; height: 2px; background: var(--yellow); }

.marquee { overflow: hidden; background: var(--yellow); color: var(--ink); border-block: 2px solid var(--ink); }
.marquee__track { width: max-content; display: flex; gap: 26px; padding: 13px 0; animation: marquee 30s linear infinite; font-family: var(--head); font-size: .85rem; }
.marquee__track span::after { content: '•'; margin-left: 26px; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .marquee__track { animation: none; } * { transition-duration: .01ms !important; } }

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--paper { background: var(--paper); }
.section--ink { color: #fff; background: var(--ink); }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 44px; }
.section-head h2 { max-width: 750px; margin-bottom: 0; }
.section-head .lead { margin-bottom: 8px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-card { position: relative; min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.category-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }
.category-card__number { font-size: .75rem; font-weight: 800; color: var(--red); letter-spacing: .1em; }
.category-card h3 { margin: 38px 0 8px; font-size: clamp(1.2rem, 2.4vw, 1.8rem); }
.category-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.category-card__arrow { position: absolute; top: 22px; right: 22px; font-size: 1.35rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__image { min-height: 620px; }
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 8vw, 100px); background: var(--red); color: #fff; }
.split__content .eyebrow { color: var(--yellow); }
.split__content h2 { margin-bottom: 26px; }
.split__content p { max-width: 610px; color: rgba(255,255,255,.88); }
.fact-row { width: 100%; margin: 18px 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.35); }
.fact { padding: 18px 10px 18px 0; }
.fact strong { display: block; font-family: var(--head); font-size: 1.5rem; }
.fact span { font-size: .74rem; color: rgba(255,255,255,.72); }

.visit { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.visit__card { padding: clamp(30px, 5vw, 54px); border-radius: var(--radius); background: var(--yellow); color: var(--ink); box-shadow: var(--shadow); }
.visit__card h3 { margin-bottom: 28px; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.info-list { display: grid; gap: 24px; margin: 0 0 30px; }
.info-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.info-item svg { width: 24px; margin-top: 2px; }
.info-item strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.info-item span, .info-item a { color: #302a25; text-decoration: none; }
.info-item a:hover { text-decoration: underline; }
.visit__copy h2 { margin-bottom: 24px; }
.visit__copy p { color: var(--muted); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.page-hero { padding: clamp(70px, 10vw, 130px) 0 70px; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero h1 { margin: 0; font-size: clamp(3rem, 8vw, 6.5rem); }
.page-hero p { max-width: 720px; margin: 24px 0 0; font-size: 1.12rem; color: #cfcfcf; }
.page-hero__count { color: var(--yellow); }

.menu-tools-wrap { position: sticky; top: 78px; z-index: 60; background: rgba(255,247,239,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.menu-tools { width: var(--container); padding: 14px 0; display: grid; gap: 12px; }
.search-box { position: relative; }
.search-box svg { position: absolute; top: 50%; left: 17px; width: 20px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-box input { width: 100%; min-height: 48px; padding: 11px 46px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); }
.search-box input:focus { border-color: var(--focus); outline: 3px solid var(--focus); outline-offset: 2px; }
.demo-notice { width: var(--container); margin: 22px auto 0; padding: 18px 20px; border: 2px solid var(--red); border-radius: 16px; background: #fff; color: var(--ink); }
.demo-notice strong { display: block; margin-bottom: 6px; color: var(--red); }
.demo-notice p { margin: 0; font-size: .9rem; }
.clear-search { position: absolute; top: 50%; right: 10px; width: 34px; height: 34px; display: none; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; transform: translateY(-50%); }
.clear-search.visible { display: block; }
.section-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 2px; }
.section-tabs a { flex: 0 0 auto; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .76rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.section-tabs a:hover, .section-tabs a.active { color: #fff; border-color: var(--red); background: var(--red); }
.menu-status { min-height: 24px; margin: 28px auto 0; color: var(--muted); font-size: .88rem; }
.menu-content { min-height: 500px; padding: 15px 0 100px; }
.menu-section { padding: 48px 0 22px; border-bottom: 2px solid var(--ink); }
.menu-section[hidden] { display: none; }
.menu-section__head { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; margin-bottom: 28px; }
.menu-section__head h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); }
.menu-section__head p { margin: 10px 0 0; color: var(--muted); }
.menu-section__count { padding: 6px 12px; border-radius: 999px; color: #fff; background: var(--ink); font-size: .72rem; font-weight: 800; white-space: nowrap; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 10px 24px; align-content: start; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 6px 25px rgba(40,20,10,.035); }
.menu-item.search-hit { border-color: var(--red); box-shadow: 0 0 0 2px rgba(237,44,43,.1); }
.menu-item h3 { margin: 0; font-family: var(--body); font-size: 1.02rem; font-weight: 800; letter-spacing: 0; line-height: 1.35; }
.menu-item__price { color: var(--red); font-size: 1rem; font-weight: 800; white-space: nowrap; }
.menu-item__description { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .84rem; }
.modifiers { grid-column: 1 / -1; margin-top: 4px; display: grid; gap: 8px; }
.modifier { padding: 10px 12px; border-radius: 10px; background: var(--cream); font-size: .75rem; }
.modifier strong { display: block; margin-bottom: 4px; font-size: .71rem; color: var(--ink); text-transform: uppercase; letter-spacing: .07em; }
.modifier__option { color: var(--muted); }
.modifier__option + .modifier__option::before { content: ' · '; color: var(--red); font-weight: 800; }
.required { color: var(--red); font-size: .66rem; }
.menu-empty { display: none; margin: 50px 0; padding: 44px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.menu-empty.visible { display: block; }
.menu-empty h2 { font-size: 1.8rem; }
.menu-disclaimer { margin-top: 32px; padding: 20px; border-left: 4px solid var(--yellow); background: #fff; color: var(--muted); font-size: .82rem; }

.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.story-grid__image { position: relative; }
.story-grid__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-grid__badge { position: absolute; right: -22px; bottom: 38px; max-width: 190px; padding: 20px; border: 2px solid var(--ink); background: var(--yellow); font-family: var(--head); font-size: 1.1rem; line-height: 1.2; transform: rotate(-3deg); }
.story-grid__copy h2 { margin-bottom: 30px; }
.story-grid__copy p { color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 36px; }
.value { padding: 22px; border-top: 4px solid var(--red); background: #fff; }
.value h3 { font-family: var(--body); font-size: .94rem; font-weight: 800; }
.value p { margin: 0; font-size: .82rem; }
.cuisines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cuisine { min-height: 150px; display: flex; align-items: end; padding: 20px; border-radius: 15px; background: #222; }
.cuisine:nth-child(3n+1) { background: var(--red); }
.cuisine:nth-child(3n+2) { color: var(--ink); background: var(--yellow); }
.cuisine h3 { margin: 0; font-size: 1.15rem; }

.final-cta { padding: 90px 0; text-align: center; color: #fff; background: var(--red); }
.final-cta h2 { max-width: 850px; margin: 0 auto 30px; }
.final-cta .button { margin: 5px; }
.footer { padding: 65px 0 28px; color: #fff; background: var(--ink); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.footer__brand img { width: 150px; padding: 8px; background: #fff; border-radius: 8px; }
.footer__brand p { max-width: 430px; margin-top: 20px; color: #aaa; font-size: .88rem; }
.footer h2 { font-family: var(--body); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.footer__links { display: grid; gap: 9px; }
.footer__links a { color: #ccc; font-size: .87rem; text-decoration: none; }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid #333; display: flex; justify-content: space-between; gap: 20px; color: #888; font-size: .72rem; }

@media (max-width: 1020px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .visit { gap: 40px; }
  .cuisines { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 680px); }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .hero { min-height: 680px; }
  .hero::before { background: linear-gradient(0deg, rgba(8,8,8,.91) 0%, rgba(8,8,8,.46) 72%, rgba(8,8,8,.3)); }
  .hero__content { padding-bottom: 55px; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 20px; }
  .split, .visit, .story-grid { grid-template-columns: 1fr; }
  .split__image { min-height: 430px; }
  .split__content { padding: 55px 28px; }
  .visit__copy { order: -1; }
  .story-grid { gap: 55px; }
  .story-grid__image { max-width: 560px; }
  .story-grid__badge { right: -5px; }
  .menu-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 560px) {
  .site-header { height: 70px; }
  .brand img { width: 108px; height: 47px; }
  .mobile-menu { inset: 70px 0 0; }
  .hero { min-height: calc(100svh - 70px); }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .category-grid, .cuisines { grid-template-columns: 1fr; }
  .category-card { min-height: 160px; }
  .fact-row { grid-template-columns: 1fr; }
  .fact { border-bottom: 1px solid rgba(255,255,255,.25); }
  .page-hero { padding-top: 70px; }
  .menu-tools-wrap { top: 70px; }
  .menu-section__head { grid-template-columns: 1fr; }
  .menu-section__count { justify-self: start; }
  .menu-item { padding: 18px; gap: 8px 14px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
}
