@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Shippori+Mincho:wght@500;600;700&display=swap");

:root {
  --ink: #0d0b0a;
  --ink-soft: #191513;
  --paper: #f1e8d7;
  --paper-light: #faf4e9;
  --red: #a52820;
  --red-bright: #d34532;
  --gold: #cf9f5b;
  --muted: #756c61;
  --line: rgba(20, 15, 12, .18);
  --shell: min(1280px, calc(100vw - 64px));
  --serif: "Shippori Mincho", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 130px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow { margin: 0 0 24px; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
h1 em, h2 em, blockquote em { color: var(--red-bright); font-style: normal; }
h2 { margin-bottom: 0; font-size: clamp(3.1rem, 6.5vw, 7rem); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 24px; border: 1px solid transparent; border-radius: 99px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-red { color: white; background: var(--red); }
.button-red:hover { background: var(--red-bright); }
.button-ghost { color: white; border-color: rgba(255,255,255,.42); background: rgba(0,0,0,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: white; color: var(--ink); }
.button-ink { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: var(--paper-light); }
.text-link { display: inline-flex; gap: 50px; padding: 12px 0 10px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Header */
.site-header { position: absolute; z-index: 50; inset: 0 0 auto; color: white; }
.site-header.is-fixed { position: fixed; color: var(--ink); background: rgba(245,237,224,.93); border-bottom: 1px solid rgba(0,0,0,.08); backdrop-filter: blur(18px); animation: headerIn .3s ease; }
@keyframes headerIn { from { transform: translateY(-100%); } }
.header-inner { width: var(--shell); height: 94px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { justify-self: center; position: relative; display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.45rem; letter-spacing: .13em; text-transform: uppercase; }
.brand-sun { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--red); border-radius: 50%; font-family: var(--serif); font-size: .76rem; letter-spacing: 0; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a, .header-call { position: relative; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.header-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .25s ease; }
.header-nav a:hover::after, .header-nav a.active::after { right: 0; }
.header-right { justify-self: end; display: flex; align-items: center; gap: 28px; }
.header-restaurant { position: relative; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.header-restaurant::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .25s ease; }
.header-restaurant:hover::after, .header-restaurant.active::after { right: 0; }
.header-call { display: flex; align-items: center; gap: 10px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.header-call i { width: 7px; height: 7px; background: #65a84a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(101,168,74,.17); }
.menu-toggle { display: none; border: 0; background: none; color: inherit; }
.mobile-menu { display: none; }
.mockup-badge { position: fixed; z-index: 60; right: 18px; top: 106px; padding: 7px 11px; color: rgba(255,255,255,.85); background: rgba(15,12,10,.55); border: 1px solid rgba(255,255,255,.18); border-radius: 30px; backdrop-filter: blur(10px); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: white; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; background-image: url("/images/gallery-2.jpg"); background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 9s cubic-bezier(.2,.7,.2,1) both; filter: saturate(.9) contrast(1.04); }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,7,6,.94) 0%, rgba(9,7,6,.76) 42%, rgba(9,7,6,.17) 78%), linear-gradient(0deg, rgba(9,7,6,.63), transparent 50%); }
.hero-wash::before, .hero-wash::after { content: ""; position: absolute; top: 0; bottom: 0; width: 50%; background: var(--red); animation: curtain 1.4s .1s cubic-bezier(.76,0,.24,1) both; transform-origin: left; }
.hero-wash::before { left: 0; }
.hero-wash::after { right: 0; transform-origin: right; }
@keyframes curtain { 0% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.hero-copy { position: relative; z-index: 3; padding-top: 100px; }
.hero h1 { max-width: 870px; margin: 0; font-size: clamp(4.2rem, 8.5vw, 9rem); text-shadow: 0 5px 40px rgba(0,0,0,.15); }
.hero h1 span { display: inline-block; font-size: .35em; letter-spacing: .01em; line-height: 1.2; }
.hero-bottom { width: min(800px, 100%); margin-top: 50px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.hero-bottom p { max-width: 470px; margin: 0; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.hero-actions { display: flex; gap: 10px; }
.hero-kanji { position: absolute; z-index: 2; right: 3vw; top: 18%; color: rgba(255,255,255,.12); font-family: var(--serif); font-size: min(27vw, 380px); line-height: 1; writing-mode: vertical-rl; user-select: none; }
.hero-scroll { position: absolute; z-index: 4; right: 32px; bottom: 32px; display: flex; align-items: center; gap: 12px; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { width: 1px; height: 50px; background: rgba(255,255,255,.6); animation: scrollPulse 1.5s infinite; }
@keyframes scrollPulse { 50% { transform: scaleY(.5); opacity: .5; } }
.hero-orbit { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 600px; height: 600px; right: -260px; top: 10%; }
.orbit-two { width: 370px; height: 370px; right: -130px; top: 23%; }

.now-strip { color: var(--paper); background: var(--red); }
.now-inner { min-height: 68px; display: flex; align-items: center; gap: 26px; font-size: .77rem; letter-spacing: .05em; }
.now-inner strong { text-transform: uppercase; }
.now-inner i { width: 1px; height: 22px; background: rgba(255,255,255,.35); }
.now-inner a { margin-left: auto; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; background: #d4ee86; border-radius: 50%; box-shadow: 0 0 0 6px rgba(212,238,134,.15); }

/* Homepage sections */
.intro { position: relative; display: grid; grid-template-columns: 80px 1fr .55fr; align-items: end; gap: 55px; }
.section-number { align-self: start; color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.intro h2 { font-size: clamp(3.6rem, 6.7vw, 7.2rem); }
.intro-copy { max-width: 420px; margin: 0 0 12px; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.dish-stage { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 1100px; background: var(--ink); }
.dish-stack { display: grid; grid-template-rows: 1fr 1fr; }
.dish-card { position: relative; min-height: 500px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(28px, 4vw, 66px); color: white; overflow: hidden; isolation: isolate; }
.dish-card::after { content: ""; position: absolute; z-index: -1; inset: 25% 0 0; background: linear-gradient(transparent, rgba(7,6,5,.84)); }
.dish-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s; }
.dish-card:hover img { transform: scale(1.04); filter: saturate(1.12); }
.dish-card-tall img { object-position: center; }
.dish-index { position: absolute; top: 34px; left: 34px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; font-family: var(--serif); }
.dish-meta { margin-bottom: 12px; color: #f2c985; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.dish-card strong { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 5rem); font-weight: 600; line-height: 1.02; }
.dish-link { margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.manifesto { position: relative; min-height: 850px; display: grid; grid-template-columns: 58% 42%; align-items: center; color: white; background: var(--ink-soft); overflow: hidden; }
.manifesto-image { margin-left: 6vw; }
.manifesto-image img { height: 620px; object-fit: cover; filter: brightness(.65) saturate(.7); }
.manifesto-copy { position: relative; z-index: 2; width: min(610px, 90%); margin-left: -80px; padding: 68px 0; }
.manifesto-copy h2 { font-size: clamp(3.4rem, 6vw, 6.4rem); }
.manifesto-copy > p:not(.eyebrow) { max-width: 510px; margin: 38px 0 34px; color: rgba(255,255,255,.65); line-height: 1.8; }
.manifesto-stamp { position: absolute; right: 4vw; bottom: 42px; width: 150px; height: 150px; display: grid; place-content: center; border: 1px solid rgba(207,159,91,.5); border-radius: 50%; text-align: center; transform: rotate(8deg); }
.manifesto-stamp b { color: var(--gold); font-family: var(--serif); font-size: 2rem; }
.manifesto-stamp span { font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.quote-section { text-align: center; }
.quote-section blockquote { margin: 0 auto 56px; font-family: var(--serif); font-size: clamp(3.2rem, 6.4vw, 7rem); line-height: 1.08; }
.location-teaser { display: grid; grid-template-columns: 1.15fr .85fr; color: white; background: var(--red); }
.location-photo img { height: 100%; min-height: 650px; object-fit: cover; filter: saturate(.7) brightness(.7); }
.location-copy { padding: clamp(60px, 8vw, 140px); align-self: center; }
.location-copy h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.location-copy h2 em { color: #f1c685; }
.location-copy > p:not(.eyebrow) { margin: 34px 0; color: rgba(255,255,255,.75); }

/* Page heroes */
.page-hero { position: relative; padding: 200px 0 110px; color: white; background: var(--ink); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: 0; bottom: -10%; width: 45%; height: 110%; background: var(--red); clip-path: polygon(35% 0,100% 0,100% 100%,0 100%); opacity: .82; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { margin: 0; font-size: clamp(4rem, 8vw, 8.5rem); }
.page-lead { max-width: 620px; margin: 40px 0 0; color: rgba(255,255,255,.66); font-size: 1.05rem; line-height: 1.8; }
.page-hero-kanji { position: absolute; z-index: 1; right: 8vw; top: 120px; color: rgba(255,255,255,.14); font-family: var(--serif); font-size: 17vw; line-height: 1; }

/* Menu app */
.menu-tools-wrap { position: sticky; z-index: 20; top: 0; padding-top: 28px; background: rgba(241,232,215,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.has-fixed-header .menu-tools-wrap { top: 94px; }
.menu-tools { display: grid; grid-template-columns: 1fr auto; gap: 18px; }
.menu-search { height: 62px; display: flex; align-items: center; gap: 16px; padding: 0 20px; background: var(--paper-light); border: 1px solid var(--line); border-radius: 8px; }
.menu-search > span:not(.sr-only) { color: var(--red); font-size: 1.7rem; line-height: 1; }
.menu-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 1rem; }
.menu-search button { width: 32px; height: 32px; display: none; border: 0; border-radius: 50%; background: rgba(0,0,0,.06); cursor: pointer; }
.menu-search.has-value button { display: block; }
.quick-filters { display: flex; gap: 8px; }
.pill-filter { padding: 0 18px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink); background: transparent; font-size: .72rem; font-weight: 700; cursor: pointer; }
.pill-filter.active { color: white; background: var(--ink); }
.category-rail { display: flex; gap: 8px; padding-block: 20px; overflow-x: auto; scrollbar-width: none; }
.category-rail::-webkit-scrollbar { display: none; }
.category-button { flex: 0 0 auto; padding: 9px 16px; border: 0; border-radius: 99px; color: var(--muted); background: transparent; font-size: .74rem; font-weight: 700; cursor: pointer; }
.category-button.active { color: white; background: var(--red); }
.menu-results-wrap { padding-block: 45px 120px; }
.menu-results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; color: var(--muted); font-size: .72rem; letter-spacing: .05em; }
.menu-results-head p { margin: 0; }
.menu-results-head strong { color: var(--ink); font-size: 1rem; }
.menu-results { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; }
.menu-category { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; margin: 54px 0 12px; }
.menu-category:first-child { margin-top: 0; }
.menu-category span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-family: var(--serif); }
.menu-category h2 { color: var(--red); font-size: 2rem; letter-spacing: -.02em; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: 1.28rem; line-height: 1.25; }
.menu-item h3 small { color: var(--muted); font-family: var(--sans); font-size: .58rem; letter-spacing: .06em; }
.menu-item-price { grid-column: 2; grid-row: 1; color: var(--red); font-weight: 700; font-variant-numeric: tabular-nums; }
.menu-item p { grid-column: 1; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.menu-tags { grid-column: 1 / -1; display: flex; gap: 6px; }
.menu-tag { padding: 3px 7px; border-radius: 99px; color: #3e6a2d; background: rgba(70,120,48,.1); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-tag.hot { color: #a52820; background: rgba(165,40,32,.1); }
.menu-empty { padding: 100px 20px; text-align: center; }
.menu-empty > span { color: var(--red); font-family: var(--serif); font-size: 5rem; }
.menu-empty h2 { font-size: 3rem; }
.menu-empty p { color: var(--muted); }
.menu-cta { min-height: 650px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; color: white; background: var(--red); }
.menu-cta img { height: 100%; min-height: 650px; object-fit: cover; filter: brightness(.7); }
.menu-cta > div { padding: clamp(60px, 8vw, 130px); align-self: center; }
.menu-cta h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.menu-cta h2 em { color: #f1c685; }

/* Restaurant */
.story-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.story-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.7); }
.story-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,7,6,.9), transparent 65%), linear-gradient(90deg, rgba(9,7,6,.5), transparent); }
.story-hero-copy { position: relative; z-index: 2; padding-bottom: 90px; }
.story-hero h1 { margin: 0; font-size: clamp(4.2rem, 8vw, 8.5rem); }
.story-vertical { position: absolute; z-index: 2; right: 36px; top: 20%; color: rgba(255,255,255,.65); font-family: var(--serif); letter-spacing: .35em; writing-mode: vertical-rl; }
.story-intro { display: grid; grid-template-columns: 70px .6fr 1.4fr; gap: 36px; }
.story-intro > h2 { grid-column: 2 / -1; }
.story-intro > .eyebrow { grid-column: 2 / -1; }
.story-columns { grid-column: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 35px; color: var(--muted); line-height: 1.8; }
.interior-grid { display: grid; grid-template-columns: 1fr 1.4fr; background: var(--ink); }
.interior-grid figure { position: relative; margin: 0; min-height: 540px; overflow: hidden; }
.interior-grid figure:first-child { grid-row: span 2; }
.interior-grid figure img { height: 100%; object-fit: cover; filter: brightness(.72) saturate(.72); transition: transform 1s ease; }
.interior-grid figure:hover img { transform: scale(1.03); }
.interior-grid figcaption { position: absolute; inset: auto 28px 24px; color: white; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.interior-grid figcaption span { margin-right: 16px; color: var(--gold); }
.values { color: white; background: var(--red); }
.values-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 70px; }
.values-title { grid-column: 1 / -1; }
.values-title h2 { max-width: 1000px; }
.values-title h2 em { color: #f1c685; }
.value { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.3); }
.value:first-of-type { grid-column: 2; }
.value span { color: #f1c685; font-family: var(--serif); }
.value h3 { margin: 18px 0 12px; font-family: var(--serif); font-size: 1.7rem; }
.value p { color: rgba(255,255,255,.68); }
.full-bleed-cta { position: relative; min-height: 750px; display: grid; place-items: center; color: white; text-align: center; overflow: hidden; }
.full-bleed-cta > img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.85); }
.full-bleed-cta > div { position: relative; z-index: 1; padding: 60px 20px; }
.full-bleed-cta h2 { margin-bottom: 45px; font-size: clamp(3.5rem, 7vw, 7.2rem); }

/* Reservation */
.reserve-hero { padding: 190px 0 100px; color: white; background: var(--red); }
.reserve-hero-inner { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 100px; }
.reserve-title h1 { margin: 0; font-size: clamp(4.3rem, 7vw, 7.5rem); }
.reserve-title h1 em { color: #f1c685; }
.reserve-title > p:not(.eyebrow) { max-width: 520px; margin: 38px 0; color: rgba(255,255,255,.74); font-size: 1.05rem; }
.phone-display { display: inline-flex; gap: 30px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.6); font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.6rem); }
.reserve-form { padding: clamp(26px, 4vw, 52px); color: var(--ink); background: var(--paper-light); box-shadow: 0 30px 80px rgba(60,10,7,.25); }
.form-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-head span { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: var(--red); border-radius: 50%; font-family: var(--serif); }
.form-head p { margin: 0; font-family: var(--serif); font-size: 1.3rem; }
.reserve-form label { display: grid; gap: 7px; margin-bottom: 18px; }
.reserve-form label > span { color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.reserve-form input, .reserve-form select, .reserve-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; color: var(--ink); background: transparent; border-radius: 0; }
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.reserve-form .button { width: 100%; margin-top: 10px; border: 0; }
.reserve-form small { display: block; margin-top: 14px; color: var(--muted); font-size: .64rem; text-align: center; }
.form-success { padding: 30px 0; text-align: center; }
.form-success span { display: block; color: var(--red); font-family: var(--serif); font-size: 3.5rem; }
.visit-title { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; margin-bottom: 70px; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.visit-card { min-height: 310px; padding: 35px; border-right: 1px solid var(--line); }
.visit-card:last-child { border-right: 0; }
.visit-card > span { color: var(--red); font-size: .7rem; font-weight: 700; }
.visit-card h3 { margin: 42px 0 18px; font-family: var(--serif); font-size: 1.8rem; }
.visit-card p { color: var(--muted); line-height: 1.8; }
.dark-link { margin-top: 20px; color: var(--ink); }
.map-card { min-height: 650px; display: grid; grid-template-columns: 1.1fr .9fr; color: white; background: var(--ink); }
.map-pattern { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, rgba(165,40,32,.38), transparent 35%), repeating-linear-gradient(45deg, transparent 0 28px, rgba(255,255,255,.025) 29px 30px); }
.map-pattern span { position: absolute; top: 38px; left: 38px; color: rgba(255,255,255,.45); font-size: .65rem; font-weight: 700; letter-spacing: .2em; }
.map-pattern i { width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.map-pattern b { position: absolute; font-family: var(--serif); font-size: 5rem; }
.map-copy { padding: clamp(60px, 8vw, 130px); align-self: center; background: var(--red); }
.map-copy h2 { margin-bottom: 40px; font-size: clamp(3.3rem, 5vw, 5.8rem); }
.map-copy h2 em { color: #f1c685; }

/* Footer and mobile dock */
.site-footer { padding: 90px 0 36px; color: white; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 70px; padding-bottom: 70px; }
.footer-brand .brand { justify-self: start; }
.footer-brand > p { max-width: 390px; margin: 25px 0 0; color: rgba(255,255,255,.5); }
.footer-col h3 { margin-bottom: 22px; color: var(--gold); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-col p, .footer-col a { color: rgba(255,255,255,.66); }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.42); font-size: .64rem; }
.footer-bottom nav { display: flex; gap: 22px; }
.mobile-dock { display: none; }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }
  body { padding-bottom: 68px; }
  .section { padding-block: 86px; }
  .site-header { position: absolute; }
  .site-header.is-fixed { position: fixed; }
  .header-inner { height: 76px; grid-template-columns: 1fr auto; }
  .brand { justify-self: start; font-size: 1.1rem; }
  .brand-sun { width: 30px; height: 30px; }
  .header-nav, .header-right { display: none; }
  .menu-toggle { justify-self: end; width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer; }
  .menu-toggle span, .menu-toggle::before { content: ""; width: 25px; height: 1px; display: block; background: currentColor; transition: transform .25s, margin .25s; }
  .menu-toggle::before { margin-bottom: 7px; }
  .menu-toggle.open::before { margin: 0 0 -1px; transform: rotate(45deg); }
  .menu-toggle.open span { transform: rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 45; inset: 0; display: grid; align-content: center; gap: 20px; padding: 80px 28px; color: white; background: var(--red); transform: translateY(-110%); transition: transform .45s cubic-bezier(.76,0,.24,1); }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { font-family: var(--serif); font-size: clamp(2.6rem, 12vw, 5rem); line-height: 1.05; }
  .mobile-menu small { margin-top: 24px; color: rgba(255,255,255,.62); }
  .mockup-badge { top: 84px; right: 10px; }
  .hero { min-height: 920px; align-items: flex-end; }
  .hero-media { background-position: 48% center; }
  .hero-wash { background: linear-gradient(0deg, rgba(9,7,6,.96) 0%, rgba(9,7,6,.52) 65%, rgba(9,7,6,.18)); }
  .hero-copy { padding: 110px 0 88px; }
  .hero h1 { font-size: clamp(3.7rem, 16vw, 6rem); }
  .hero-bottom { margin-top: 34px; grid-template-columns: 1fr; gap: 26px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-kanji { right: -24px; top: 16%; font-size: 42vw; }
  .hero-scroll { display: none; }
  .now-inner { padding-block: 15px; gap: 16px; flex-wrap: wrap; }
  .now-inner strong { width: calc(100% - 30px); }
  .now-inner a { width: 100%; margin-left: 23px; }
  .intro { grid-template-columns: 34px 1fr; gap: 22px; }
  .intro-title { grid-column: 2; }
  .intro-copy { grid-column: 2; }
  .dish-stage { grid-template-columns: 1fr; min-height: 0; }
  .dish-card { min-height: 620px; }
  .dish-stack .dish-card { min-height: 500px; }
  .manifesto { grid-template-columns: 1fr; padding: 0 0 80px; }
  .manifesto-image { margin: 0; }
  .manifesto-image img { height: 520px; }
  .manifesto-copy { width: var(--shell); margin: -80px auto 0; padding: 45px 28px; background: var(--ink-soft); }
  .manifesto-stamp { display: none; }
  .location-teaser, .menu-cta, .map-card { grid-template-columns: 1fr; }
  .location-photo img, .menu-cta img { min-height: 480px; }
  .page-hero { padding: 160px 0 80px; }
  .page-hero::after { width: 60%; opacity: .35; }
  .menu-tools-wrap { top: 0; }
  .has-fixed-header .menu-tools-wrap { top: 76px; }
  .menu-tools { grid-template-columns: 1fr; }
  .quick-filters { height: 44px; }
  .menu-results { grid-template-columns: 1fr; }
  .menu-results-head span { display: none; }
  .story-intro { grid-template-columns: 34px 1fr; }
  .story-intro > .eyebrow, .story-intro > h2, .story-columns { grid-column: 2; }
  .story-columns { grid-template-columns: 1fr; gap: 12px; }
  .interior-grid { grid-template-columns: 1fr; }
  .interior-grid figure, .interior-grid figure:first-child { min-height: 440px; grid-row: auto; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .values-title, .value:first-of-type { grid-column: 1; }
  .reserve-hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .visit-title { grid-template-columns: 1fr; gap: 20px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-dock { position: fixed; z-index: 80; inset: auto 0 0; height: calc(68px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(3, 1fr); padding-bottom: env(safe-area-inset-bottom); color: white; background: rgba(13,11,10,.96); border-top: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); }
  .mobile-dock a { display: grid; place-items: center; gap: 2px; border-right: 1px solid rgba(255,255,255,.1); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-dock a span { color: var(--gold); font-size: 1.25rem; line-height: 1; }
  .mobile-dock a.primary { background: var(--red); }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 32px); }
  h2 { font-size: 3.15rem; }
  .button { width: 100%; }
  .hero { min-height: 840px; }
  .hero h1 { font-size: 3.85rem; }
  .hero-actions { display: grid; }
  .hero-bottom p { font-size: .94rem; }
  .dish-card, .dish-stack .dish-card { min-height: 520px; }
  .dish-card strong { font-size: 2.65rem; }
  .manifesto-image img { height: 430px; }
  .quote-section blockquote { font-size: 3rem; }
  .page-hero h1, .story-hero h1, .reserve-title h1 { font-size: 3.8rem; }
  .page-hero-kanji { top: 130px; font-size: 33vw; }
  .menu-tools-wrap { padding-top: 16px; }
  .menu-search { height: 56px; }
  .menu-search input { font-size: .85rem; }
  .quick-filters { overflow-x: auto; }
  .menu-item { padding: 20px 0; }
  .menu-item h3 { font-size: 1.15rem; }
  .menu-category { margin-top: 42px; }
  .story-hero { min-height: 780px; }
  .story-hero-copy { padding-bottom: 70px; }
  .interior-grid figure, .interior-grid figure:first-child { min-height: 370px; }
  .reserve-form { margin-inline: -6px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; }
}

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