:root {
  --ink: #100e0c;
  --ink-soft: #1b1714;
  --paper: #f4f1ea;
  --paper-2: #eae4d8;
  --paper-3: #ddd5c6;
  --gold: #9c7c3f;
  --gold-light: #c7aa70;
  --line: rgba(16, 14, 12, 0.17);
  --line-light: rgba(244, 241, 234, 0.24);
  --serif: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --latin: "Cormorant Garamond", "Times New Roman", serif;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-feature-settings: "palt" 1;
  font-weight: 400;
  line-height: 1.9;
  overflow-x: hidden;
}
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.num {
  font-family: var(--latin);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: .04em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background-color .5s ease, border-color .5s ease, color .5s ease;
}
.site-header.is-solid {
  color: var(--paper);
  background: rgba(16, 14, 12, .96);
  border-color: rgba(244, 241, 234, .14);
}
.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: min(100% - 68px, 1480px);
  height: var(--header-height);
  margin: 0 auto;
}
.nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 42px); }
.nav-right { justify-content: flex-end; padding-right: 108px; }
.nav a, .menu-toggle {
  position: relative;
  font-size: 11px;
  letter-spacing: .18em;
  white-space: nowrap;
  transition: color .3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.brand-mark { display: grid; justify-items: center; line-height: 1; gap: 5px; min-width: 116px; }
.brand-mark strong, .footer-brand strong { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: .13em; }
.reserve-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 92px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: .18em;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.reserve-button:hover, .reserve-button:focus-visible { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.header-reserve { position: absolute; right: 0; top: 19px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px 0; letter-spacing: .14em; cursor: pointer; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  height: 900px;
  max-height: 1000px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-picture { position: absolute; inset: 0; display: block; }
.hero-media, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center 48%; transform: scale(1.015); }
.hero-scrim { background: linear-gradient(90deg, rgba(16, 14, 12, .83) 0%, rgba(16, 14, 12, .36) 46%, rgba(16, 14, 12, .17) 100%), linear-gradient(0deg, rgba(16, 14, 12, .84) 0%, rgba(16, 14, 12, 0) 56%); }
.hero-content { position: absolute; left: clamp(28px, 8vw, 148px); bottom: clamp(70px, 12vh, 140px); }
.eyebrow, .section-kicker, .reservation-label {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
}
.hero h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .1em;
  word-break: keep-all;
  line-break: strict;
}
.hero h1 { font-size: clamp(42px, 5.7vw, 86px); line-height: 1.34; }
.hero-lead { margin: 26px 0 30px; font-family: var(--serif); font-size: clamp(15px, 1.4vw, 20px); line-height: 2; letter-spacing: .12em; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; color: rgba(244, 241, 234, .76); font-size: 11px; letter-spacing: .12em; }
.hero-meta span + span::before { content: ""; display: inline-block; width: 1px; height: 12px; margin: 0 24px 0 0; background: rgba(244, 241, 234, .38); vertical-align: -2px; }
.hero-meta b { color: var(--paper); font-size: 18px; font-weight: 500; }
.hero-edge-note { position: absolute; top: 50%; right: 31px; writing-mode: vertical-rl; transform: translateY(-50%); color: rgba(244, 241, 234, .72); font-family: var(--serif); font-size: 12px; letter-spacing: .25em; line-height: 2; }
.hero-edge-note span { color: var(--gold-light); font-family: var(--sans); font-size: 10px; letter-spacing: .15em; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; width: 1px; height: 64px; background: rgba(244, 241, 234, .42); overflow: hidden; }
.scroll-cue span { display: block; width: 1px; height: 20px; background: var(--gold-light); animation: cue-drop 2.3s ease-in-out infinite; }

.section { position: relative; padding: clamp(82px, 8.5vw, 132px) 0; }
.section-inner { width: min(100% - 68px, 1240px); margin: 0 auto; }
.section-heading h2 { font-size: clamp(34px, 4.3vw, 62px); line-height: 1.45; }
.philosophy-section .section-heading h2 { font-size: clamp(32px, 3.7vw, 54px); }
.section-heading-wide { max-width: 900px; }
.section-intro { max-width: 480px; margin: 26px 0 0; color: rgba(16, 14, 12, .72); font-size: 14px; line-height: 2.1; letter-spacing: .08em; }
.philosophy-section { background: var(--paper); }
.philosophy-inner { display: grid; grid-template-columns: minmax(350px, 1.15fr) minmax(0, 1fr); column-gap: clamp(44px, 6vw, 90px); }
.philosophy-copy { padding-top: 82px; }
.pull-statement { margin: 0 0 52px; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 50px); line-height: 1.65; letter-spacing: .12em; }
.body-copy { max-width: 590px; }
.body-copy p { margin: 0 0 28px; color: rgba(16, 14, 12, .76); font-size: 14px; line-height: 2.35; letter-spacing: .08em; }
.facts-row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 82px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact { display: flex; align-items: baseline; gap: 12px; padding: 34px 20px 34px 0; }
.fact + .fact { padding-left: 30px; border-left: 1px solid var(--line); }
.fact strong { font-size: 48px; font-weight: 500; line-height: 1; }
.fact span { font-family: var(--serif); font-size: 14px; letter-spacing: .12em; }

.photo-band { position: relative; height: min(52vw, 590px); min-height: 440px; overflow: hidden; color: var(--paper); background: var(--ink); }
.photo-band picture { display: block; width: 100%; height: 100%; }
.photo-band img { width: 100%; height: 112%; object-fit: cover; object-position: center 48%; }
.photo-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16, 14, 12, .72), rgba(16, 14, 12, .04) 55%); }
.photo-caption { position: absolute; right: clamp(26px, 8vw, 148px); bottom: 45px; margin: 0; font-family: var(--serif); font-size: 16px; letter-spacing: .15em; }

.omakase-section { background: var(--paper-2); }
.price-table { margin-top: 66px; border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: 1.2fr 1fr 2fr .9fr; align-items: center; gap: 28px; min-height: 194px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.price-row-featured { position: relative; padding-left: 26px; background: rgba(244, 241, 234, .32); }
.price-row-featured::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: var(--gold); }
.price-name { display: grid; gap: 5px; font-family: var(--serif); font-size: 23px; letter-spacing: .12em; }
.price-name small { color: rgba(16, 14, 12, .52); font-family: var(--sans); font-size: 10px; letter-spacing: .18em; }
.price-amount { position: relative; display: flex; align-items: baseline; gap: 7px; font-family: var(--serif); white-space: nowrap; }
.price-amount .num { font-size: 42px; line-height: 1; }
.price-amount small { font-size: 12px; letter-spacing: .08em; }
.price-amount em { position: absolute; top: -19px; left: 4px; color: var(--gold); font-family: var(--sans); font-size: 9px; font-style: normal; letter-spacing: .16em; }
.price-row p { max-width: 340px; margin: 0; color: rgba(16, 14, 12, .68); font-size: 13px; line-height: 2.05; letter-spacing: .06em; }
.price-time { padding-left: 22px; border-left: 1px solid var(--line); color: rgba(16, 14, 12, .64); font-family: var(--sans); font-size: 11px; line-height: 2; letter-spacing: .12em; }
.fine-note { margin: 24px 0 0; color: rgba(16, 14, 12, .52); font-size: 11px; letter-spacing: .06em; }

.seeds-section { background: var(--ink); color: var(--paper); }
.seeds-inner { max-width: 1380px; }
.seeds-heading { max-width: 680px; }
.seeds-heading .section-kicker { color: var(--gold-light); }
.seeds-heading h2 { font-size: clamp(42px, 5.2vw, 78px); }
.seeds-heading > p:last-child { max-width: 470px; margin: 24px 0 0; color: rgba(244, 241, 234, .66); font-size: 13px; letter-spacing: .1em; }
.seeds-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr); gap: clamp(52px, 9vw, 150px); align-items: end; margin-top: 48px; }
.seed-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); }
.seed-item { position: relative; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; align-items: end; min-height: 144px; padding: 22px 22px 24px 0; border-bottom: 1px solid var(--line-light); }
.seed-item:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line-light); }
.seed-jp { font-family: var(--serif); font-size: clamp(25px, 2.5vw, 38px); letter-spacing: .12em; grid-column: 1; }
.seed-item small { grid-column: 1; color: rgba(244, 241, 234, .53); font-size: 10px; letter-spacing: .2em; }
.seed-item b { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--gold-light); font-size: 17px; font-weight: 500; }
.seed-photo { margin: 0; }
.seed-photo picture { display: block; }
.seed-photo img { width: 100%; aspect-ratio: 1 / 1.02; object-fit: cover; }
.seed-photo figcaption { margin-top: 18px; color: rgba(244, 241, 234, .65); font-family: var(--serif); font-size: 13px; letter-spacing: .13em; }
.seed-note { display: flex; align-items: center; gap: 24px; margin-top: 48px; color: rgba(244, 241, 234, .56); font-size: 11px; letter-spacing: .1em; }
.seed-note p { margin: 0; }
.note-line { width: 88px; height: 1px; flex: 0 0 auto; background: var(--gold); }

.setting-section { background: var(--paper); }
.setting-grid { display: grid; grid-template-columns: 1.24fr .76fr; grid-template-rows: auto auto; gap: 48px 42px; margin-top: 70px; }
.setting-figure { margin: 0; }
.setting-figure-large { grid-row: 1 / span 2; }
.setting-figure-offset { margin-top: 48px; }
.setting-image { overflow: hidden; background: var(--ink); }
.setting-image picture { display: block; width: 100%; height: 100%; }
.setting-figure-large .setting-image { aspect-ratio: .84 / 1; }
.setting-figure:not(.setting-figure-large) .setting-image { aspect-ratio: 1.32 / 1; }
.setting-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16, 1, .3, 1); }
.setting-figure:hover .setting-image img { transform: scale(1.04); }
.setting-figure-large img { object-position: 52% center; }
.setting-figure:nth-child(2) img { object-position: center 48%; }
.setting-figure:nth-child(3) img { object-position: center 52%; }
.setting-figure figcaption { display: flex; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.setting-figure figcaption strong { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: .12em; white-space: nowrap; }
.setting-figure figcaption span { color: rgba(16, 14, 12, .58); font-size: 11px; letter-spacing: .08em; text-align: right; }

.chef-section { background: var(--paper-2); }
.chef-inner { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr); gap: clamp(60px, 11vw, 180px); align-items: center; }
.chef-portrait { position: relative; max-width: 470px; }
.portrait-frame { position: relative; padding: 20px 20px 0 0; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.portrait-frame::before { content: ""; position: absolute; top: 20px; right: 20px; bottom: 0; left: 0; border: 1px solid var(--line); pointer-events: none; }
.portrait-frame picture { display: block; }
.portrait-frame img { position: relative; width: 100%; aspect-ratio: .8 / 1; object-fit: cover; object-position: 49% center; }
.portrait-note { position: absolute; right: -26px; bottom: 56px; writing-mode: vertical-rl; color: var(--gold); font-family: var(--serif); font-size: 14px; letter-spacing: .14em; line-height: 1.8; }
.chef-copy { max-width: 650px; }
.chef-copy h2 { font-size: clamp(33px, 3.7vw, 52px); }
blockquote { margin: 48px 0 56px; padding-left: 25px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: clamp(20px, 2.1vw, 29px); line-height: 1.9; letter-spacing: .1em; }
.career-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.career-list li { display: grid; grid-template-columns: 85px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); color: rgba(16, 14, 12, .68); font-size: 12px; letter-spacing: .06em; }
.career-list time { color: var(--gold); font-size: 22px; line-height: 1.25; }

.guide-section { background: var(--paper); }
.guide-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .72fr); gap: clamp(60px, 10vw, 150px); margin-top: 70px; align-items: start; }
.info-table { border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 100px 1fr; gap: 34px; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: .08em; }
.info-row dt { color: var(--gold); font-family: var(--serif); font-size: 15px; letter-spacing: .15em; }
.info-row dd { margin: 0; color: rgba(16, 14, 12, .72); line-height: 1.95; }
.reservation-block { padding: 42px 38px 46px; color: var(--paper); background: var(--ink); }
.reservation-label { color: var(--gold-light); }
.phone { display: inline-block; margin: 8px 0 8px; font-family: var(--latin); font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: .04em; }
.reservation-hours { margin: 0; color: rgba(244, 241, 234, .56); font-size: 11px; line-height: 2; letter-spacing: .13em; }
.reservation-rule { width: 100%; height: 1px; margin: 38px 0 34px; background: var(--line-light); }
.cancel-title { margin: 0 0 12px; color: var(--gold-light); font-family: var(--serif); font-size: 17px; letter-spacing: .13em; }
.cancel-copy { margin: 0; color: rgba(244, 241, 234, .68); font-size: 12px; line-height: 2.15; letter-spacing: .08em; }
.reserve-button-light { margin-top: 34px; color: var(--paper); border-color: var(--gold-light); }
.reserve-button-light:hover, .reserve-button-light:focus-visible { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }

.site-footer { position: relative; padding: 64px 0 22px; color: var(--paper); background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; width: min(100% - 68px, 1240px); margin: 0 auto; padding-bottom: 58px; border-bottom: 1px solid var(--line-light); }
.footer-brand { display: grid; gap: 6px; justify-items: start; line-height: 1; }
.footer-brand strong { font-size: 28px; }
.footer-inner > p { margin: 0; color: rgba(244, 241, 234, .62); font-family: var(--serif); font-size: 14px; letter-spacing: .14em; }
.footer-meta { display: flex; justify-content: flex-end; gap: 18px; color: rgba(244, 241, 234, .5); font-size: 10px; letter-spacing: .12em; }
.footer-meta span + span::before { content: "/"; margin-right: 18px; color: var(--gold); }
.footer-top { position: absolute; right: 34px; bottom: 12px; color: var(--gold-light); font-size: 10px; letter-spacing: .14em; }
.footer-top span { font-family: var(--latin); font-size: 18px; }
.copyright { display: block; width: min(100% - 68px, 1240px); margin: 18px auto 0; color: rgba(244, 241, 234, .35); font-family: var(--latin); font-size: 12px; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.hero .reveal { transform: translateY(20px); transition-delay: .15s; }
.hero .reveal.is-visible { transform: none; }
@keyframes cue-drop { 0% { transform: translateY(-22px); opacity: 0; } 25%, 70% { opacity: 1; } 100% { transform: translateY(64px); opacity: 0; } }
@keyframes photo-drift { from { transform: translateY(-3%); } to { transform: translateY(3%); } }
@supports (animation-timeline: view()) {
  .photo-band img { animation: photo-drift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
}

:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 5px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .header-inner { width: min(100% - 42px, 1480px); }
  .nav { gap: 18px; }
  .nav-right { padding-right: 88px; }
  .nav a { font-size: 10px; letter-spacing: .12em; }
  .section-inner, .footer-inner, .copyright { width: min(100% - 42px, 1240px); }
  .price-row { grid-template-columns: 1.05fr .95fr 1.5fr .8fr; gap: 18px; }
  .price-amount .num { font-size: 34px; }
}

@media (max-width: 780px) {
  :root { --header-height: 64px; }
  .site-header { background: rgba(16, 14, 12, .78); }
  .header-inner { width: calc(100% - 36px); height: 64px; grid-template-columns: 1fr auto 1fr; }
  .nav, .header-reserve { display: none; }
  .brand-mark { grid-column: 2; }
  .brand-mark strong { font-size: 21px; }
  .menu-toggle { display: block; grid-column: 3; justify-self: end; color: var(--paper); }
  .mobile-menu { display: grid; max-height: 0; overflow: hidden; padding: 0 18px; background: rgba(16, 14, 12, .98); transition: max-height .5s ease, padding .5s ease; }
  .mobile-menu.is-open { max-height: 390px; padding: 15px 18px 22px; }
  .mobile-menu a { padding: 11px 0; border-bottom: 1px solid rgba(244, 241, 234, .14); color: var(--paper); font-family: var(--serif); font-size: 16px; letter-spacing: .12em; }
  .hero { height: 780px; min-height: 100svh; }
  .hero-media { object-position: 58% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(16, 14, 12, .86), rgba(16, 14, 12, .26)), linear-gradient(0deg, rgba(16, 14, 12, .88), rgba(16, 14, 12, .06) 62%); }
  .hero-content { right: 27px; left: 27px; bottom: 84px; }
  .hero h1 { font-size: clamp(39px, 10vw, 58px); line-height: 1.4; }
  .hero-lead { margin: 18px 0 22px; font-size: 14px; }
  .hero-meta { gap: 10px 14px; font-size: 10px; }
  .hero-meta span + span::before { margin-right: 14px; }
  .hero-edge-note { right: 17px; font-size: 10px; }
  .scroll-cue { left: auto; right: 28px; bottom: 28px; height: 50px; }
  .section { padding: 92px 0; }
  .section-inner, .footer-inner, .copyright { width: calc(100% - 36px); }
  .section-heading h2 { font-size: clamp(31px, 9vw, 46px); line-height: 1.5; }
  .philosophy-section .section-heading h2 { font-size: clamp(29px, 8.1vw, 34px); letter-spacing: .08em; }
  .philosophy-inner { display: block; }
  .philosophy-copy { padding-top: 58px; }
  .pull-statement { margin-bottom: 34px; font-size: 31px; }
  .body-copy p { font-size: 13px; line-height: 2.25; }
  .facts-row { margin-top: 48px; grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 24px 0; }
  .fact + .fact { padding-left: 18px; }
  .fact:nth-child(3) { border-left: 0; }
  .fact strong { font-size: 38px; }
  .photo-band { height: 500px; min-height: 0; }
  .photo-band img { height: 110%; object-position: 55% center; }
  .photo-caption { right: 24px; bottom: 28px; font-size: 12px; }
  .price-table { margin-top: 52px; }
  .price-row { display: grid; grid-template-columns: 1fr auto; gap: 14px 18px; min-height: 0; padding: 28px 0; }
  .price-row-featured { padding-left: 18px; }
  .price-name { font-size: 19px; }
  .price-amount { justify-content: flex-end; }
  .price-amount .num { font-size: 31px; }
  .price-row p { grid-column: 1 / -1; font-size: 12px; line-height: 2; }
  .price-time { grid-column: 1 / -1; padding: 13px 0 0; border-top: 1px solid var(--line); border-left: 0; font-size: 10px; }
  .seeds-heading h2 { font-size: 45px; }
  .seeds-layout { display: flex; flex-direction: column; gap: 54px; margin-top: 56px; }
  .seed-grid { width: 100%; }
  .seed-item { min-height: 116px; padding-right: 14px; }
  .seed-item:nth-child(even) { padding-left: 16px; }
  .seed-jp { font-size: 24px; }
  .seed-photo { width: 100%; }
  .seed-photo img { aspect-ratio: 2 / 1; max-height: 220px; }
  .seed-note { align-items: flex-start; margin-top: 46px; font-size: 10px; line-height: 1.9; }
  .setting-grid { display: block; margin-top: 56px; }
  .setting-figure, .setting-figure-offset { margin: 0 0 48px; }
  .setting-figure-large .setting-image { aspect-ratio: 1 / 1.12; }
  .setting-figure:not(.setting-figure-large) .setting-image { aspect-ratio: 1.24 / 1; }
  .setting-figure figcaption { display: block; }
  .setting-figure figcaption strong { display: block; margin-bottom: 7px; }
  .setting-figure figcaption span { display: block; text-align: left; }
  .chef-inner { display: flex; flex-direction: column; gap: 68px; align-items: stretch; }
  .chef-portrait { max-width: calc(100% - 28px); margin: 0 auto; }
  .portrait-frame img { aspect-ratio: 1.35 / 1; max-height: 250px; }
  .portrait-note { right: -27px; bottom: 39px; }
  .chef-copy h2 { font-size: 33px; }
  blockquote { margin: 42px 0 52px; font-size: 20px; }
  .career-list li { grid-template-columns: 64px 1fr; gap: 14px; font-size: 11px; }
  .career-list time { font-size: 19px; }
  .guide-grid { display: flex; flex-direction: column; gap: 58px; margin-top: 56px; }
  .info-row { grid-template-columns: 76px 1fr; gap: 18px; padding: 17px 0; font-size: 11px; }
  .info-row dt { font-size: 13px; }
  .reservation-block { padding: 32px 24px 36px; }
  .phone { font-size: 42px; }
  .footer-inner { display: block; padding-bottom: 62px; }
  .footer-inner > p { margin-top: 34px; }
  .footer-meta { justify-content: flex-start; flex-wrap: wrap; margin-top: 27px; }
  .footer-top { right: 0; bottom: 13px; }
}

@media (max-width: 390px) {
  .hero-content { right: 22px; left: 22px; }
  .hero h1 { font-size: 36px; }
  .hero-meta { font-size: 9px; letter-spacing: .08em; }
  .hero-meta span + span::before { margin-right: 10px; }
  .section-inner, .footer-inner, .copyright { width: calc(100% - 30px); }
  .seed-jp { font-size: 21px; }
  .price-amount .num { font-size: 28px; }
  .phone { font-size: 37px; }
}

@media (min-width: 781px) {
  .section { padding: clamp(70px, 6.5vw, 108px) 0; }
  .photo-band { height: min(48vw, 520px); min-height: 400px; }
  .facts-row { margin-top: 64px; }
  .price-table { margin-top: 52px; }
  .seeds-layout { margin-top: 52px; }
  .setting-grid { margin-top: 58px; }
  .guide-grid { margin-top: 55px; }
}

@media (min-width: 781px) {
  .section { padding: clamp(65px, 6vw, 100px) 0; }
  .seeds-layout { align-items: start; }
  .seed-photo img,
  .portrait-frame img { height: auto; }
}

@media (max-width: 780px) {
  .hero-media { transform: none; }
  .setting-section, .chef-section { overflow: hidden; }
  .setting-section .section-heading h2,
  .chef-copy h2 { font-size: clamp(27px, 7.2vw, 31px); letter-spacing: .06em; }
}
