/* ==========================================================================
   Menya Kōbo — Ramen & Izakaya, Mumbai
   Design language: bold Japanese ramen izakaya / night-market
   ========================================================================== */

:root {
  /* Palette */
  --ink: #111114;
  --ink-2: #17171b;
  --ink-3: #1f1f25;
  --chili: #c8362e;
  --chili-bright: #e14a3f;
  --bone: #ede7dc;
  --bone-dim: #b6b0a6;
  --gold: #d9a441;
  --gold-soft: #e9c983;

  /* Type */
  --sans: "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Anton", "Zen Kaku Gothic New", system-ui, sans-serif;

  /* Space & structure */
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3.25rem);
  --radius: 4px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--chili);
  color: var(--bone);
}

/* --------------------------------------------------------------------------
   Utilities & layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
  position: relative;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 200;
  background: var(--chili);
  color: var(--bone);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.75rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--chili);
}

.jp {
  font-feature-settings: "palt" 1;
}

/* Section heading */
.s-head {
  max-width: 46ch;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.s-head h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 6.5vw, 4.4rem);
  margin-top: 0.8rem;
  color: var(--bone);
}
.s-head h2 em {
  font-style: normal;
  color: var(--chili-bright);
}
.s-head p {
  margin-top: 1.1rem;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  max-width: 52ch;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --b: var(--chili);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.92rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--b);
  background: var(--b);
  color: var(--bone);
  position: relative;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -12px rgba(200, 54, 46, 0.7);
}
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(237, 231, 220, 0.35);
}
.btn--ghost:hover {
  background: rgba(237, 231, 220, 0.06);
  border-color: var(--gold);
  color: var(--gold-soft);
  box-shadow: none;
}
.btn--gold {
  --b: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { box-shadow: 0 12px 30px -12px rgba(217, 164, 65, 0.7); }

.btn--sm { padding: 0.72rem 1.2rem; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(237, 231, 220, 0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(17, 17, 20, 0.94);
  border-bottom-color: rgba(217, 164, 65, 0.22);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand svg { width: 40px; height: 40px; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}
.brand__name span {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--chili);
  transition: width 0.28s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 0.4rem; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(237, 231, 220, 0.2);
  border-radius: var(--radius);
  background: transparent;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--bone);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after { transform: translate(-50%, 5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(17, 17, 20, 0.55) 0%,
      rgba(17, 17, 20, 0.25) 30%,
      rgba(17, 17, 20, 0.82) 78%,
      var(--ink) 100%
    ),
    linear-gradient(90deg, rgba(17, 17, 20, 0.7) 0%, rgba(17, 17, 20, 0.05) 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero__kanji {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: clamp(-1rem, 2vw, 3rem);
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(9rem, 34vw, 30rem);
  line-height: 0.8;
  color: rgba(200, 54, 46, 0.16);
  writing-mode: vertical-rl;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.hero__tag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.5vw, 0.86rem);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero__tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--chili);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  font-size: clamp(2.9rem, 10vw, 7.4rem);
  margin-top: 1.1rem;
  max-width: 15ch;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}
.hero h1 .brush {
  color: var(--chili-bright);
  position: relative;
  display: inline-block;
}
.hero h1 .brush::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.14em;
  background: var(--chili);
  transform: skewX(-8deg) scaleX(var(--underline, 1));
  transform-origin: left;
  opacity: 0.85;
}
.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  color: var(--bone);
  max-width: 44ch;
  font-weight: 400;
}
.hero__actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(237, 231, 220, 0.12);
  background: rgba(17, 17, 20, 0.6);
}
.hero__strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: 1.05rem;
  font-size: 0.86rem;
  color: var(--bone-dim);
}
.hero__strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hero__strip li b { color: var(--gold-soft); font-weight: 700; }
.hero__strip .dot { color: var(--chili); }

/* --------------------------------------------------------------------------
   Story
   -------------------------------------------------------------------------- */
.story { background: var(--ink); }
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story__body p + p { margin-top: 1.1rem; }
.story__body p { color: var(--bone-dim); font-size: 1.05rem; }
.story__body .lead {
  color: var(--bone);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.story__body .lead b { color: var(--gold-soft); font-weight: 700; }
.story__sign {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--bone-dim);
  font-size: 0.92rem;
}
.story__sign svg { width: 52px; height: 52px; flex-shrink: 0; }

.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.story__badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  background: var(--chili);
  color: var(--bone);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  line-height: 1;
}
.story__badge b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.9rem;
  display: block;
}
.story__badge span {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Menu
   -------------------------------------------------------------------------- */
.menu { background: var(--ink-2); }
.menu__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.menu__note {
  color: var(--bone-dim);
  font-size: 0.86rem;
  max-width: 24ch;
  text-align: right;
}

.menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.menu__group h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid rgba(217, 164, 65, 0.25);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.menu__group h3 span {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--bone-dim);
  letter-spacing: 0.1em;
}
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1rem;
  padding-block: 1rem;
  border-bottom: 1px dashed rgba(237, 231, 220, 0.12);
}
.menu__item:last-child { border-bottom: none; }
.menu__item dt {
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.menu__item .price {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--chili-bright);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.menu__item dd {
  grid-column: 1 / 2;
  color: var(--bone-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}
.tag-chip {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.42rem;
  border-radius: 3px;
  vertical-align: middle;
}
.tag-chip--veg { background: rgba(122, 168, 76, 0.2); color: #a9d17e; }
.tag-chip--hot { background: rgba(200, 54, 46, 0.22); color: var(--chili-bright); }
.tag-chip--chef { background: rgba(217, 164, 65, 0.2); color: var(--gold-soft); }

/* --------------------------------------------------------------------------
   Signature — the broth board
   -------------------------------------------------------------------------- */
.broth { background: var(--ink); position: relative; }
.broth__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.broth-card {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(237, 231, 220, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.broth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent, var(--chili));
}
.broth-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 164, 65, 0.3);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.85);
}
.broth-card__kanji {
  position: absolute;
  top: -0.3rem;
  right: 0.6rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(237, 231, 220, 0.05);
  user-select: none;
}
.broth-card h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: var(--bone);
}
.broth-card .jp-name {
  color: var(--accent, var(--chili));
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 0.15rem;
}
.broth-card p {
  color: var(--bone-dim);
  font-size: 0.92rem;
  margin-top: 0.9rem;
  min-height: 4.5em;
}
.broth-card__foot {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(237, 231, 220, 0.14);
}
.meter {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.meter:last-of-type { margin-bottom: 0; }
.meter__label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  width: 74px;
  flex-shrink: 0;
}
.meter__dots {
  display: flex;
  gap: 5px;
}
.meter__dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--accent, var(--chili));
  background: transparent;
  display: block;
}
.meter__dots i.on { background: var(--accent, var(--chili)); }
.broth-card .price {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--gold);
  margin-top: 1.1rem;
  display: block;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery { background: var(--ink-2); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 20vw, 240px);
  gap: 0.9rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(217, 164, 65, 0.15);
  border-radius: var(--radius-lg);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* --------------------------------------------------------------------------
   People
   -------------------------------------------------------------------------- */
.chef { background: var(--ink); }
.chef__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.chef__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
.chef__media img { width: 100%; height: 100%; object-fit: cover; }
.chef__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: var(--radius-lg);
}
.chef__quote {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--bone);
}
.chef__quote b { color: var(--chili-bright); font-weight: 700; }
.chef__by {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.chef__by .rule { width: 42px; height: 2px; background: var(--gold); }
.chef__by b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}
.chef__by span { color: var(--bone-dim); font-size: 0.86rem; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.reviews { background: var(--ink-2); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.review {
  background: var(--ink-3);
  border: 1px solid rgba(237, 231, 220, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  position: relative;
}
.review__stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }
.review p {
  margin-top: 1rem;
  font-size: 1.06rem;
  color: var(--bone);
  line-height: 1.6;
}
.review__by {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--chili);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.review__by b { display: block; font-size: 0.98rem; }
.review__by span { color: var(--bone-dim); font-size: 0.8rem; }

/* --------------------------------------------------------------------------
   Visit + Contact
   -------------------------------------------------------------------------- */
.visit { background: var(--ink); }
.visit__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.info-block + .info-block { margin-top: 1.8rem; }
.info-block h3 {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.info-block p,
.info-block address {
  font-style: normal;
  color: var(--bone);
  font-size: 1.05rem;
  line-height: 1.55;
}
.hours-list { margin-top: 0.3rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.42rem;
  border-bottom: 1px dashed rgba(237, 231, 220, 0.12);
  font-size: 0.98rem;
}
.hours-list li span:first-child { color: var(--bone-dim); }
.hours-list li b { font-weight: 700; }
.visit__quick {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Form */
.form-card {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9);
}
.form-card > h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--bone);
  letter-spacing: 0.03em;
}
.form-card > p.form-lead {
  color: var(--bone-dim);
  margin-top: 0.5rem;
  margin-bottom: 1.6rem;
  font-size: 0.98rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.field label .req { color: var(--chili-bright); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(17, 17, 20, 0.7);
  border: 1px solid rgba(237, 231, 220, 0.16);
  border-radius: var(--radius);
  color: var(--bone);
  padding: 0.82rem 0.95rem;
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(182, 176, 166, 0.55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-reassure {
  text-align: center;
  color: var(--bone-dim);
  font-size: 0.82rem;
  margin-top: 0.9rem;
}
.hp { position: absolute; left: -9999px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(237, 231, 220, 0.1);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__brand .brand { margin-bottom: 1rem; }
.footer__brand p {
  color: var(--bone-dim);
  font-size: 0.94rem;
  max-width: 34ch;
}
.footer__col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col a,
.footer__col li {
  display: block;
  color: var(--bone-dim);
  font-size: 0.94rem;
  padding-block: 0.35rem;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--bone); }
.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.footer__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(237, 231, 220, 0.2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.footer__social a:hover {
  background: var(--chili);
  border-color: var(--chili);
  transform: translateY(-3px);
}
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(237, 231, 220, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--bone-dim);
}
.footer__bottom a { color: var(--gold-soft); }
.footer__bottom a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Contact page hero
   -------------------------------------------------------------------------- */
.page-hero {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid rgba(237, 231, 220, 0.08);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  margin-top: 0.8rem;
}
.page-hero h1 em { font-style: normal; color: var(--chili-bright); }
.page-hero p {
  margin: 1.1rem auto 0;
  max-width: 48ch;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Thank you page */
.thanks {
  min-height: 84vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.thanks__inner { max-width: 620px; position: relative; z-index: 2; }
.thanks__mark {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.6rem;
}
.thanks h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
}
.thanks h1 em { font-style: normal; color: var(--chili-bright); }
.thanks p {
  margin: 1.2rem auto 0;
  color: var(--bone-dim);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  max-width: 46ch;
}
.thanks__actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}
.thanks__kanji {
  position: absolute;
  z-index: 0;
  font-weight: 900;
  font-size: clamp(16rem, 46vw, 42rem);
  color: rgba(200, 54, 46, 0.06);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Brush divider
   -------------------------------------------------------------------------- */
.brush-rule {
  display: block;
  width: 100%;
  height: 26px;
  color: var(--chili);
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .story__grid,
  .chef__grid,
  .visit__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .chef__media { max-width: 460px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid rgba(217, 164, 65, 0.2);
    padding: 0.6rem var(--gutter) 1.2rem;
    transform: translateY(-115%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.8);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    width: 100%;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(237, 231, 220, 0.08);
    font-size: 1.05rem;
  }
  .nav__links a::after { display: none; }
  .nav__links .nav__cta {
    margin: 0.9rem 0 0;
    width: 100%;
    justify-content: center;
  }
  .nav__toggle { display: block; }

  .menu__cols { grid-template-columns: 1fr; }
  .menu__note { text-align: left; }
  .form-row { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(130px, 34vw, 190px);
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

@media (max-width: 460px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
