/* ============================================================
   KAMADO 竈 — cinematic 炭火割烹 (sumibi fine-dining)
   Warm DARK: near-black charcoal + ember amber/gold + oxblood wine.
   Photography-FIRST. Parallax + Ken-Burns on food + ambient embers.
   NO WebGL 3D. Self-contained. Fonts: Marcellus / Noto Serif JP.
   ============================================================ */

:root {
  --ink:    #0c0a09;   /* page background, warm near-black */
  --ink-2:  #14100d;   /* raised panels */
  --char:   #1c1512;   /* charcoal band */
  --char-2: #241a15;
  --ember:  #e6a24c;   /* amber gold accent */
  --ember-2:#f3c680;   /* light gold */
  --flame:  #d9762e;   /* deeper orange */
  --wine:   #8a2634;   /* oxblood */
  --wine-2: #5a1a24;
  --cream:  #efe4d4;   /* primary warm text */
  --cream-70: #cbbba6; /* body text */
  --smoke:  #94836f;   /* muted labels */
  --line:   rgba(230,162,76,.16);
  --line-2: rgba(239,228,212,.09);

  --glide:  cubic-bezier(.4, 0, .15, 1);
  --slow:   cubic-bezier(.2, .7, .2, 1);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 84px);
  --serif: "Marcellus", "Times New Roman", serif;         /* latin display */
  --jp: "Noto Serif JP", "Marcellus", serif;              /* japanese */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--jp);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: .015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }

/* warm ambient wash so the black isn't flat */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 70% at 78% -8%, rgba(217,118,46,.10), transparent 58%),
    radial-gradient(120% 80% at -6% 110%, rgba(138,38,52,.12), transparent 60%),
    radial-gradient(80% 60% at 50% 50%, rgba(20,16,13,0), rgba(6,5,4,.55) 120%);
}

img { max-width: 100%; display: block; }
::selection { background: var(--ember); color: #23140a; }

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: .01em; }
p { margin: 0; }

/* ---------- veil: grain + vignette ---------- */
.veil {
  position: fixed; inset: 0; z-index: 118; pointer-events: none;
  mix-blend-mode: overlay; opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* ---------- ambient embers canvas ---------- */
.embers {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .75;
}

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; z-index: 130; pointer-events: none;
}
.progress i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--wine), var(--flame) 45%, var(--ember-2));
  box-shadow: 0 0 12px rgba(230,162,76,.7);
  transition: width .12s linear;
}

/* ---------- ember cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 129; pointer-events: none; will-change: transform; }
.cursor {
  width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%;
  border: 1px solid rgba(230,162,76,.55);
  box-shadow: 0 0 18px rgba(230,162,76,.35), inset 0 0 12px rgba(217,118,46,.25);
  transition: width .28s var(--slow), height .28s var(--slow), margin .28s var(--slow), border-color .28s, opacity .3s;
}
.cursor.hot {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  border-color: rgba(243,198,128,.8);
  box-shadow: 0 0 30px rgba(230,162,76,.55), inset 0 0 18px rgba(217,118,46,.35);
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%;
  background: var(--ember-2);
  box-shadow: 0 0 10px rgba(243,198,128,.9);
}
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(80% 70% at 50% 44%, #17110d 0%, #0a0807 70%, #060504 100%);
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-fire {
  display: block; width: 14px; height: 14px; margin: 0 auto 26px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--ember-2), var(--flame) 55%, var(--wine) 100%);
  box-shadow: 0 0 24px 6px rgba(217,118,46,.6), 0 0 60px 14px rgba(138,38,52,.4);
  animation: fire-pulse 1.9s ease-in-out infinite;
}
@keyframes fire-pulse {
  0%,100% { transform: scale(.86); box-shadow: 0 0 20px 4px rgba(217,118,46,.5), 0 0 48px 10px rgba(138,38,52,.35); }
  50%     { transform: scale(1.12); box-shadow: 0 0 30px 9px rgba(243,198,128,.7), 0 0 78px 20px rgba(217,118,46,.45); }
}
.loader-mark {
  font-family: var(--serif); font-size: clamp(30px, 6vw, 54px);
  letter-spacing: .42em; text-indent: .42em; color: var(--cream);
}
.loader-sub {
  display: block; margin-top: 14px; font-family: var(--jp);
  font-size: 12px; letter-spacing: .5em; text-indent: .5em; color: var(--smoke);
}

/* ---------- masthead + nav ---------- */
.masthead {
  position: relative; z-index: 20;
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px var(--pad) 10px;
  font-size: 10.5px; letter-spacing: .28em; color: var(--smoke);
  text-transform: uppercase; border-bottom: 1px solid var(--line-2);
}
.masthead .mh-mid { letter-spacing: .2em; }
@media (max-width: 760px) { .masthead .mh-mid { display: none; } }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: padding .4s var(--glide), background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 11px var(--pad);
  background: rgba(10,8,7,.72);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-mark { font-family: var(--serif); font-size: 22px; letter-spacing: .34em; text-indent: .34em; color: var(--cream); }
.brand-sub { font-family: var(--jp); font-size: 13px; letter-spacing: .3em; color: var(--ember); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  position: relative; font-size: 13.5px; letter-spacing: .12em; color: var(--cream-70);
  transition: color .3s;
}
.nav-links a i { font-style: normal; font-family: var(--serif); font-size: 10px; letter-spacing: .1em; color: var(--ember); margin-right: 6px; opacity: .8; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--ember); transition: width .35s var(--glide);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 12.5px; letter-spacing: .16em; color: var(--ink);
  padding: 9px 20px; border-radius: 2px;
  background: linear-gradient(135deg, var(--ember-2), var(--ember) 60%, var(--flame));
  box-shadow: 0 6px 22px -8px rgba(230,162,76,.7);
  transition: transform .3s var(--slow), box-shadow .3s, filter .3s;
}
.nav-cta:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 10px 30px -8px rgba(230,162,76,.85); }
@media (max-width: 940px) { .nav-links { display: none; } }

/* ---------- shared bits ---------- */
main { position: relative; z-index: 2; }
.section-index {
  font-family: var(--serif); font-size: 12px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 22px;
}
.section-title {
  font-family: var(--jp); font-weight: 600; line-height: 1.35;
  font-size: clamp(28px, 4.4vw, 50px); color: var(--cream);
}
.section-title em { font-style: normal; color: var(--ember-2); }
.section-sub {
  margin-top: 20px; max-width: 46ch; font-size: 15.5px; color: var(--cream-70); line-height: 2;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: 14px; letter-spacing: .1em; padding: 14px 30px; border-radius: 2px;
  transition: transform .3s var(--slow), box-shadow .35s, filter .3s, background .3s, color .3s;
}
.btn-ember {
  color: #23140a;
  background: linear-gradient(135deg, var(--ember-2), var(--ember) 58%, var(--flame));
  box-shadow: 0 10px 30px -10px rgba(230,162,76,.75);
}
.btn-ember:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 16px 40px -10px rgba(230,162,76,.9); }
.btn-line {
  color: var(--cream); border: 1px solid rgba(239,228,212,.28);
}
.btn-line:hover { border-color: var(--ember); color: var(--ember-2); transform: translateY(-3px); }
.btn.wide { width: 100%; justify-content: center; padding: 16px; }

/* reveal (below-the-fold) — slow warm rise */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.05s var(--slow), transform 1.05s var(--slow); }
.reveal.in { opacity: 1; transform: none; }
/* above-the-fold: load-time reveal */
.reveal-now { opacity: 0; transform: translateY(22px); animation: rise 1.05s var(--slow) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-now { opacity: 1 !important; transform: none !important; animation: none !important; }
  .loader-fire { animation: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 var(--pad) clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%;
  transform: scale(1.06); animation: hero-drift 22s ease-in-out infinite alternate;
}
@keyframes hero-drift { from { transform: scale(1.06); } to { transform: scale(1.14) translateY(-1.5%); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,6,5,.62) 0%, rgba(8,6,5,.12) 32%, rgba(8,6,5,.30) 62%, rgba(6,5,4,.92) 100%),
    linear-gradient(90deg, rgba(6,5,4,.72) 0%, rgba(6,5,4,0) 55%);
}
.hero-glow {
  position: absolute; left: -6%; bottom: 6%; width: 46%; height: 60%;
  background: radial-gradient(circle at 30% 70%, rgba(217,118,46,.28), transparent 62%);
  mix-blend-mode: screen; pointer-events: none;
}
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.eyebrow { font-family: var(--serif); font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--ember); }
.eyebrow .no { color: var(--cream); margin-right: 12px; opacity: .8; }
.hero-title { margin: 22px 0 0; }
.hero-title .jp {
  display: block; font-family: var(--jp); font-weight: 600;
  font-size: clamp(38px, 7vw, 82px); line-height: 1.24; color: var(--cream);
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-title em {
  font-style: normal; color: transparent;
  background: linear-gradient(120deg, var(--ember-2), var(--flame) 60%, var(--wine));
  -webkit-background-clip: text; background-clip: text;
}
.hero-brand {
  margin: 6px 0 0; font-family: var(--serif);
  font-size: clamp(30px, 6vw, 66px); letter-spacing: .5em; text-indent: .5em;
  color: rgba(239,228,212,.14); line-height: 1;
}
.hero-lede { margin: 26px 0 0; max-width: 52ch; font-size: 16px; color: var(--cream-70); line-height: 2.05; }
.hero-actions { margin: 34px 0 0; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin: 46px 0 0; display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-meta dt { font-family: var(--serif); font-size: 11px; letter-spacing: .26em; color: var(--ember); text-transform: uppercase; }
.hero-meta dd { margin: 6px 0 0; font-size: 14px; color: var(--cream); }
.scroll-hint {
  position: absolute; right: var(--pad); bottom: clamp(40px, 8vh, 80px); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  writing-mode: vertical-rl; font-family: var(--serif); font-size: 11px; letter-spacing: .34em;
  color: var(--cream-70); text-transform: uppercase;
}
.scroll-hint i { width: 1px; height: 54px; background: linear-gradient(var(--ember), transparent); animation: hint 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes hint { 0%,100% { transform: scaleY(.4); opacity: .5; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 640px) { .scroll-hint { display: none; } }

/* ============ HEARTH ============ */
.hearth {
  position: relative; z-index: 2;
  padding: clamp(90px, 15vh, 170px) var(--pad) clamp(60px, 9vh, 100px);
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--char) 40%, var(--char) 100%);
  overflow: hidden;
}
.hearth-kanji {
  position: absolute; right: -2%; top: 4%; z-index: 0;
  font-family: var(--jp); font-weight: 900; font-size: clamp(200px, 42vw, 560px);
  line-height: .8; color: transparent;
  background: linear-gradient(180deg, rgba(138,38,52,.30), rgba(217,118,46,.10));
  -webkit-background-clip: text; background-clip: text;
  pointer-events: none; user-select: none;
}
.hearth-grid {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 90px); align-items: end;
}
.hearth-grid .section-index { grid-column: 1 / -1; }
.hearth-lead {
  font-family: var(--jp); font-weight: 500; font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.7; color: var(--cream);
}
.hearth-lead em { font-style: normal; color: var(--ember-2); }
.hearth-note p { font-size: 15px; color: var(--cream-70); line-height: 2.1; }
.hearth-sign { margin-top: 20px !important; font-family: var(--serif); font-size: 13px; letter-spacing: .12em; color: var(--ember); }
@media (max-width: 860px) { .hearth-grid { grid-template-columns: 1fr; } }

/* ember marquee */
.ribbon {
  position: relative; z-index: 2; margin-top: clamp(56px, 9vh, 96px);
  padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ribbon-track { display: inline-flex; align-items: center; gap: 30px; will-change: transform; }
.ribbon-track span { font-family: var(--jp); font-weight: 500; font-size: clamp(20px, 3vw, 34px); color: var(--cream); letter-spacing: .1em; }
.ribbon-track i { font-style: normal; color: var(--flame); font-size: 18px; }

/* ============ COURSE ============ */
.course {
  position: relative; z-index: 2;
  padding: clamp(80px, 12vh, 150px) var(--pad);
  background: linear-gradient(180deg, var(--char) 0%, var(--ink) 22%);
}
.course-head { max-width: var(--maxw); margin: 0 auto clamp(50px, 8vh, 96px); }
.dish {
  max-width: var(--maxw); margin: 0 auto clamp(64px, 11vh, 140px);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 72px); align-items: center;
}
.dish.dish-rev { grid-template-columns: .85fr 1.15fr; }
.dish.dish-rev .dish-media { order: 2; }
.dish.dish-rev .dish-body { order: 1; }
.dish:last-child { margin-bottom: 0; }

.dish-media { position: relative; }
.kb-wrap {
  position: relative; overflow: hidden; border-radius: 3px;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9), 0 0 0 1px var(--line-2);
  aspect-ratio: 3 / 2;
}
.kb-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 30% 20%, transparent 45%, rgba(6,5,4,.5) 100%);
}
.kb { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.dish-num {
  position: absolute; z-index: 3;
  font-family: var(--jp); font-weight: 900; font-size: clamp(72px, 11vw, 150px);
  line-height: .8; color: transparent;
  -webkit-text-stroke: 1px rgba(243,198,128,.55); text-stroke: 1px rgba(243,198,128,.55);
  text-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.dish:not(.dish-rev) .dish-num { right: -4%; bottom: -6%; }
.dish.dish-rev .dish-num { left: -4%; bottom: -6%; }

.dish-course { font-family: var(--serif); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--ember); margin-bottom: 16px; }
.dish-name {
  font-family: var(--jp); font-weight: 600; font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.4; color: var(--cream);
}
.dish-name span { display: block; margin-top: 8px; font-size: 15px; font-weight: 400; color: var(--ember-2); letter-spacing: .05em; }
.dish-desc { margin: 22px 0 0; font-size: 15px; color: var(--cream-70); line-height: 2.1; max-width: 42ch; }
.dish-meta { margin: 28px 0 0; display: flex; gap: 40px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line-2); }
.dish-meta dt { font-family: var(--jp); font-size: 11px; letter-spacing: .1em; color: var(--ember); }
.dish-meta dd { margin: 5px 0 0; font-size: 13.5px; color: var(--cream); }
@media (max-width: 820px) {
  .dish, .dish.dish-rev { grid-template-columns: 1fr; gap: 30px; }
  .dish.dish-rev .dish-media { order: 0; }
  .dish.dish-rev .dish-body { order: 0; }
  .dish-num { font-size: clamp(60px, 18vw, 100px) !important; }
  .dish:not(.dish-rev) .dish-num, .dish.dish-rev .dish-num { right: 4%; left: auto; bottom: auto; top: -4%; }
}

/* ============ CHEF ============ */
.chef {
  position: relative; z-index: 2; overflow: hidden;
  padding: clamp(110px, 20vh, 220px) var(--pad);
  display: flex; align-items: center;
}
.chef-bg { position: absolute; inset: 0; z-index: 0; }
.chef-bg img { width: 100%; height: 130%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.chef-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,5,4,.94) 0%, rgba(6,5,4,.8) 42%, rgba(6,5,4,.55) 100%),
    radial-gradient(70% 90% at 20% 50%, rgba(138,38,52,.24), transparent 70%);
}
.chef-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto 0 0; }
.chef-quote {
  margin: 20px 0 0; font-family: var(--jp); font-weight: 600;
  font-size: clamp(26px, 4vw, 46px); line-height: 1.6; color: var(--cream);
}
.chef-quote em { font-style: normal; color: var(--ember-2); }
.chef-body { margin: 30px 0 0; max-width: 50ch; font-size: 15.5px; color: var(--cream-70); line-height: 2.15; }
.chef-sign { margin: 26px 0 0; font-family: var(--serif); font-size: 13px; letter-spacing: .12em; color: var(--ember); }

/* ============ RESERVE + ACCESS ============ */
.reserve {
  position: relative; z-index: 2; overflow: hidden;
  padding: clamp(90px, 14vh, 170px) var(--pad) clamp(60px, 9vh, 100px);
  background: linear-gradient(180deg, var(--ink) 0%, var(--char-2) 60%, #0a0705 100%);
}
.reserve-glow {
  position: absolute; left: 50%; top: 8%; width: 70%; height: 50%; transform: translateX(-50%);
  background: radial-gradient(circle at 50% 30%, rgba(217,118,46,.20), transparent 60%);
  pointer-events: none; mix-blend-mode: screen;
}
.reserve-inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 90px); align-items: start;
}
.reserve-title { font-family: var(--jp); font-weight: 600; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.3; color: var(--cream); }
.reserve-title em { font-style: normal; color: var(--ember-2); }
.reserve-sub { margin: 22px 0 0; max-width: 44ch; font-size: 15.5px; color: var(--cream-70); line-height: 2.1; }
.reserve-info { margin: 34px 0 0; display: grid; gap: 16px; }
.reserve-info div { display: flex; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line-2); }
.reserve-info dt { flex: 0 0 88px; font-family: var(--serif); font-size: 11px; letter-spacing: .24em; color: var(--ember); text-transform: uppercase; padding-top: 3px; }
.reserve-info dd { margin: 0; font-size: 14.5px; color: var(--cream); }

.reserve-form {
  background: linear-gradient(160deg, rgba(36,26,21,.9), rgba(18,14,11,.9));
  border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9);
}
.fld { display: block; margin-bottom: 18px; }
.fld span { display: block; font-size: 12px; letter-spacing: .12em; color: var(--ember); margin-bottom: 8px; }
.fld input, .fld select {
  width: 100%; padding: 13px 14px; font-family: var(--jp); font-size: 14px;
  color: var(--cream); background: rgba(8,6,5,.6);
  border: 1px solid var(--line-2); border-radius: 2px; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.fld input::placeholder { color: var(--smoke); }
.fld input:focus, .fld select:focus { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(230,162,76,.14); }
.fld select { -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ember) 50%), linear-gradient(135deg, var(--ember) 50%, transparent 50%);
  background-position: calc(100% - 20px) 20px, calc(100% - 14px) 20px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-note { margin: 14px 0 0; font-size: 13px; color: var(--ember-2); min-height: 1.4em; line-height: 1.7; }
@media (max-width: 820px) { .reserve-inner { grid-template-columns: 1fr; } }

.access {
  position: relative; z-index: 2; max-width: var(--maxw); margin: clamp(60px, 9vh, 100px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.ac-item { display: flex; flex-direction: column; gap: 8px; }
.ac-k { font-family: var(--serif); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ember); }
.ac-v { font-size: 14px; color: var(--cream); line-height: 1.8; }
@media (max-width: 720px) { .access { grid-template-columns: 1fr; gap: 20px; } }

/* ============ FOOTER ============ */
.foot {
  position: relative; z-index: 2; padding: clamp(48px, 7vh, 80px) var(--pad);
  background: #060504; border-top: 1px solid var(--line-2);
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.foot-brand { display: flex; flex-direction: column; gap: 6px; }
.foot-brand .brand-mark { font-size: 20px; }
.foot-brand .brand-sub { font-size: 12px; color: var(--smoke); letter-spacing: .18em; }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 13px; color: var(--cream-70); transition: color .3s; }
.foot-links a:hover { color: var(--ember); }
.foot-note { font-size: 11.5px; color: var(--smoke); line-height: 1.9; text-align: right; }
.foot-note b { color: var(--cream-70); font-weight: 500; }
@media (max-width: 720px) { .foot-note { text-align: left; } }
