/* ==========================================================================
   UMBRA — Coffee House, Soho
   style.css · Design system, layout & components
   --------------------------------------------------------------------------
   01 Tokens          07 House (intro)      13 Gallery + lightbox
   02 Base            08 Signature          14 Reservation
   03 Texture         09 Menu               15 Footer
   04 Type & UI       10 Atmosphere         16 Cursor & progress
   05 Navigation      11 Story              17 Motion states
   06 Hero + intro    12 Experience
   ========================================================================== */

/* 01 · Tokens ------------------------------------------------------------- */
:root {
  --bg: #0B0A09;
  --bg-2: #12100F;
  --bg-3: #1A1411;
  --coffee: #3A2418;
  --accent: #B58A5A;
  --accent-2: #D2B48C;
  --text: #F2EDE5;
  --text-2: #A9A099;
  --muted: #706A64;

  --line: rgba(242, 237, 229, 0.09);
  --line-2: rgba(242, 237, 229, 0.18);
  --line-accent: rgba(210, 180, 140, 0.42);

  --serif: "Cormorant Garamond", "Cormorant", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(20px, 4.2vw, 72px);
  --col-gap: clamp(16px, 2vw, 32px);
  --maxw: 1680px;
  --section: clamp(112px, 14vw, 216px);

  --fs-2xs: 0.625rem;   /* 10px */
  --fs-xs: 0.6875rem;   /* 11px  labels */
  --fs-sm: 0.8125rem;   /* 13px  small copy */
  --fs-base: 1rem;
  --fs-h3: clamp(2.4rem, 4.4vw, 4.5rem);
  --fs-h2: clamp(2.9rem, 6.6vw, 7rem);
  --fs-display: clamp(2.75rem, min(13.2vw, 19vh), 11.5rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);

  --grade: saturate(0.8) contrast(1.06) brightness(0.9) sepia(0.06);
}

/* 02 · Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
em { font-style: italic; }

::selection { background: var(--accent); color: var(--bg); }

:focus { outline: none; }
:focus-visible {
  outline: 1px solid var(--accent-2);
  outline-offset: 5px;
}
[tabindex="-1"]:focus, [tabindex="-1"]:focus-visible { outline: none; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--text);
  color: var(--bg);
  font-size: var(--fs-sm);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.4s var(--ease-out);
}
.skip-link:focus { transform: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
}

.section { position: relative; padding-block: var(--section); }

/* 03 · Texture ------------------------------------------------------------ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.96  0 0 0 0 0.9  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 89;
  pointer-events: none;
  background: radial-gradient(130% 110% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.38) 100%);
}

/* Photography grade — makes every image feel like the same shoot */
.photo img, .photo video { filter: var(--grade); }

/* 04 · Type & UI ---------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow .idx { color: var(--accent); font-variant-numeric: tabular-nums; }
.eyebrow .rule { width: 40px; height: 1px; background: var(--line-2); flex: none; }

.h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.015em;
}
.h2 em, .h3 em {
  font-weight: 300;
  color: var(--accent-2);
}

.h3 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

.body-copy { color: var(--text-2); font-size: 0.975rem; line-height: 1.75; }
.body-copy + .body-copy { margin-top: 1.1em; }

/* Masked lines for headline reveals */
.line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0.12em 0.1em 0;
  margin: -0.04em -0.12em -0.1em 0;
}
.line > span { display: inline-block; }

/* Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 30px;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
  border: 1px solid var(--line-accent);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.55s var(--ease-out), border-color 0.55s var(--ease-out), transform 0.6s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent-2);
  transform: translateY(101%);
  transition: transform 0.65s var(--ease-out);
}
.btn:hover, .btn:focus-visible { color: var(--bg); border-color: var(--accent-2); }
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }

.btn--solid { background: var(--accent-2); color: var(--bg); border-color: var(--accent-2); }
.btn--solid::before { background: var(--text); }
.btn--solid:hover, .btn--solid:focus-visible { border-color: var(--text); }

.btn--sm { min-height: 42px; padding: 0 20px; font-size: var(--fs-2xs); }

.btn__label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.5;
}
.btn__label > span { display: inline-block; transition: transform 0.65s var(--ease-out); }
.btn__label::after {
  content: attr(data-text);
  content: attr(data-text) / "";
  position: absolute;
  left: 0; top: 100%;
  transition: transform 0.65s var(--ease-out);
}
.btn:hover .btn__label > span, .btn:hover .btn__label::after,
.btn:focus-visible .btn__label > span, .btn:focus-visible .btn__label::after { transform: translateY(-100%); }

.arrow { width: 15px; height: 10px; flex: none; transition: transform 0.6s var(--ease-out); }
.btn:hover .arrow, .link:hover .arrow, .btn:focus-visible .arrow, .link:focus-visible .arrow { transform: translateX(5px); }

/* Text links ---- */
.link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  background:
    linear-gradient(var(--accent-2), var(--accent-2)) 0 100% / 0 1px no-repeat,
    linear-gradient(var(--line-2), var(--line-2)) 0 100% / 100% 1px no-repeat;
  transition: background-size 0.7s var(--ease-out), color 0.4s;
}
.link:hover, .link:focus-visible { background-size: 100% 1px, 100% 1px; color: var(--accent-2); }

.u-link {
  background: linear-gradient(currentColor, currentColor) 100% 100% / 0 1px no-repeat;
  transition: background-size 0.6s var(--ease-out), color 0.4s;
}
.u-link:hover, .u-link:focus-visible { background-position: 0 100%; background-size: 100% 1px; color: var(--text); }

/* Figures & captions ---- */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.frame img, .frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame > .frame__inner { position: absolute; inset: 0; }
.frame > .frame__inner img { position: absolute; inset: 0; }

.caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7FA37A;
  box-shadow: 0 0 0 3px rgba(127, 163, 122, 0.16);
  margin-right: 10px;
  vertical-align: 1px;
}
.status-dot.is-closed { background: var(--muted); box-shadow: 0 0 0 3px rgba(112, 106, 100, 0.18); }

/* 05 · Navigation --------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 9, 0.74);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.nav.is-scrolled::before { opacity: 1; }

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding: 28px var(--gutter);
  transition: padding 0.7s var(--ease-out);
}
.nav.is-scrolled .nav__inner { padding-block: 14px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transform-origin: left center;
  transition: transform 0.7s var(--ease-out);
}
.nav.is-scrolled .brand { transform: scale(0.88); }
.brand__mark { width: 30px; height: 30px; flex: none; transition: transform 1.2s var(--ease-out); }
.brand:hover .brand__mark { transform: rotate(-35deg); }
.brand__word {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.34em;
  margin-right: -0.34em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 46px);
  margin-left: auto;
}
.nav__link {
  position: relative;
  padding-block: 8px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.4s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out);
}
.nav__link:hover, .nav__link:focus-visible, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 14px;
  height: 44px;
  margin-left: auto;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__burger { position: relative; width: 26px; height: 10px; }
.nav__burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.6s var(--ease-out), top 0.6s var(--ease-out);
}
.nav__burger span:first-child { top: 0; }
.nav__burger span:last-child { top: 9px; }
.nav-open .nav__burger span:first-child { top: 5px; transform: rotate(45deg); }
.nav-open .nav__burger span:last-child { top: 5px; transform: rotate(-45deg); }

/* Mobile menu */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px var(--gutter) 36px;
  background: var(--bg-2);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.9s var(--ease-in-out), visibility 0s linear 0.9s;
  overflow-y: auto;
}
.nav-open .mnav {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path 0.9s var(--ease-in-out), visibility 0s;
}
.mnav__list { display: flex; flex-direction: column; }
.mnav__link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 10px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 11vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.9s var(--ease-out);
}
.mnav__link .idx { font-family: var(--sans); font-size: var(--fs-xs); letter-spacing: 0.2em; color: var(--accent); }
.nav-open .mnav__link { opacity: 1; transform: none; transition-delay: calc(0.3s + var(--i, 0) * 0.07s); }
.mnav__foot {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  font-size: var(--fs-sm);
  color: var(--text-2);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.nav-open .mnav__foot { opacity: 1; transition-delay: 0.7s; }
.mnav__foot .btn { width: 100%; }

/* 06 · Hero + intro ------------------------------------------------------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  background: var(--bg);
}
.js-anim .intro { display: grid; }
.intro__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.intro__mark { width: 54px; height: 54px; opacity: 0; }
.intro__word {
  display: flex;
  overflow: hidden;
  padding: 0.05em 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
}
.intro__word span { display: inline-block; opacity: 0; transform: translateY(105%); }
.intro__tag {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0;
}
.intro__bar { width: 120px; height: 1px; background: var(--line); overflow: hidden; }
.intro__bar span { display: block; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--bg);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: 60% 50%;
}
.hero__media img, .hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media video { opacity: 0; transition: opacity 1.8s var(--ease-soft); }
.hero__media video.is-playing { opacity: 1; }

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.72) 0%, rgba(11, 10, 9, 0.12) 26%, rgba(11, 10, 9, 0.2) 52%, rgba(11, 10, 9, 0.94) 100%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.7) 0%, rgba(11, 10, 9, 0) 60%),
    radial-gradient(120% 90% at 72% 38%, transparent 30%, rgba(11, 10, 9, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px 48px;
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero__main { grid-column: 1 / -1; grid-row: 1; }
.hero__aside { grid-column: 2; grid-row: 1; align-self: end; }
.hero__eyebrow { margin-bottom: clamp(20px, 3.4vh, 36px); }
.hero__title .line { white-space: nowrap; }
.hero__title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero__title .line--indent { padding-left: 0.95em; }
.hero__title em {
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--accent-2);
}
.hero__aside { max-width: 330px; padding-bottom: 0.6em; }
.hero__lede { margin-bottom: 30px; font-size: 0.95rem; line-height: 1.75; color: var(--text-2); }
.hero__lede strong { font-weight: 500; color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }

.hero__foot {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin: clamp(28px, 5vh, 60px) auto 0;
  padding: 0 var(--gutter);
}
.hero__foot-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}
.hero__foot-inner > :last-child { justify-self: end; text-align: right; }

.scroll-ind { display: inline-flex; align-items: center; gap: 14px; color: var(--text-2); transition: color 0.4s; }
.scroll-ind:hover { color: var(--text); }
.scroll-ind__line { position: relative; width: 1px; height: 38px; overflow: hidden; background: var(--line-2); }
.scroll-ind__line::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 1px; height: 45%;
  background: var(--accent-2);
  animation: scrollLine 2.6s var(--ease-in-out) infinite;
}
.hero.is-offscreen .scroll-ind__line::after { animation-play-state: paused; }
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(230%); }
}

/* 07 · House (intro statement) ------------------------------------------- */
.house { background: var(--bg); }
.house__label { grid-column: 1 / 4; padding-top: 1.1em; }
.house__statement {
  grid-column: 4 / 13;
  font-family: var(--serif);
  font-size: clamp(1.95rem, 4.25vw, 4.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}
.house__statement em { color: var(--accent-2); }
.house__statement .w { transition: opacity 0.2s linear; }

.house__lower { margin-top: clamp(72px, 10vw, 150px); align-items: end; }
.house__fig { grid-column: 1 / 5; }
.house__fig .frame { aspect-ratio: 4 / 5; }
.house__right {
  grid-column: 6 / 13;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(48px, 7vw, 96px);
}
.house__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--col-gap);
}
.fact { padding-top: 26px; border-top: 1px solid var(--line-2); }
.fact__big {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: lining-nums;
}
.fact__big small { font-size: 0.5em; color: var(--text-2); margin-left: 4px; }
.fact__small { margin-top: 14px; max-width: 24ch; font-size: var(--fs-sm); line-height: 1.6; color: var(--text-2); }
.house__note { max-width: 46ch; }
.house__note .link { margin-top: 28px; }

/* 08 · Signature ---------------------------------------------------------- */
.sig { background: var(--bg-2); padding-bottom: 0; }
.sig__head { align-items: end; margin-bottom: clamp(64px, 8vw, 120px); }
.sig__head-left { grid-column: 1 / 8; }
.sig__head-left .h2 { margin-top: 28px; }
.sig__head-right { grid-column: 9 / 13; padding-bottom: 0.6em; }

.sig__stage { position: relative; }
.sig__item {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: center;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding: 0 var(--gutter) var(--section);
}
.sig__media { grid-column: 1 / 7; position: relative; aspect-ratio: 4 / 5; }
.sig__media .frame { position: absolute; inset: 0; }
.sig__tag {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  font-size: var(--fs-2xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 237, 229, 0.75);
}
.sig__body { grid-column: 8 / 13; max-width: 520px; }
.sig__num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 180, 140, 0.55);
  font-variant-numeric: lining-nums;
}
.sig__name { margin: 18px 0 22px; }
.sig__desc { max-width: 42ch; }
.sig__meta { margin-top: 34px; border-top: 1px solid var(--line); }
.sig__meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
}
.sig__meta dt { font-size: var(--fs-2xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.sig__meta dd { color: var(--text); }
.sig__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; }
.sig__price {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: lining-nums;
}

.sig__hud { display: none; }

/* Pinned (desktop, set by animations.js) */
.sig.is-pinned .sig__stage { height: 100vh; overflow: hidden; }
.sig.is-pinned .sig__item {
  position: absolute;
  inset: 0;
  padding-block: 96px 64px;
}
.sig.is-pinned .sig__media { aspect-ratio: auto; height: min(74vh, 860px); }
.sig.is-pinned .sig__item:nth-child(1) { z-index: 1; }
.sig.is-pinned .sig__item:nth-child(2) { z-index: 2; }
.sig.is-pinned .sig__item:nth-child(3) { z-index: 3; }
.sig.is-pinned .sig__hud {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: var(--fs-2xs);
  letter-spacing: 0.24em;
  color: var(--text-2);
}
.sig__hud-track { position: relative; width: 120px; height: 1px; background: var(--line-2); overflow: hidden; }
.sig__hud-fill { position: absolute; inset: 0; background: var(--accent-2); transform: scaleX(0.333); transform-origin: left; }
.sig__hud-cur { color: var(--text); font-variant-numeric: tabular-nums; }

/* 09 · Menu --------------------------------------------------------------- */
.menu { background: var(--bg); }
.menu__head { align-items: end; margin-bottom: clamp(56px, 7vw, 104px); }
.menu__head-left { grid-column: 1 / 7; }
.menu__head-left .h2 { margin-top: 28px; }
.menu__head-right { grid-column: 8 / 13; padding-bottom: 0.5em; }
.menu__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 22px;
  font-size: var(--fs-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.tabs {
  position: relative;
  display: flex;
  gap: clamp(22px, 3.4vw, 56px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex: none;
  padding: 10px 0 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.4s;
}
.tab:hover { color: var(--text-2); }
.tab[aria-selected="true"] { color: var(--text); }
.tab__count {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.tab[aria-selected="true"] .tab__count { color: var(--accent); }
.tabs__ink {
  position: absolute;
  left: 0; bottom: 0;
  width: 100px; height: 1px;
  background: var(--accent-2);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.menu__panels { position: relative; }
.menu__panel[hidden] { display: none !important; }

.menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1.15fr) minmax(0, 1fr) 6rem;
  align-items: center;
  gap: 24px;
  padding: 30px 12px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.menu-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(58, 36, 24, 0.42), rgba(58, 36, 24, 0.08) 70%, rgba(58, 36, 24, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-out);
}
.menu-row__idx {
  font-size: var(--fs-2xs);
  letter-spacing: 0.22em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s;
}
.menu-row__name {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  transition: transform 0.7s var(--ease-out), color 0.4s;
}
.menu-row__name .mark {
  margin-left: 12px;
  font-size: 0.5em;
  font-style: italic;
  color: var(--accent);
  vertical-align: 0.35em;
  white-space: nowrap;
}
.menu-row__desc {
  font-size: var(--fs-sm);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text-2);
  transition: transform 0.7s var(--ease-out), color 0.4s;
}
.menu-row__price {
  justify-self: end;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  transition: transform 0.7s var(--ease-out), color 0.4s;
}
.menu-row__thumb { display: none; }

@media (hover: hover) {
  .menu-row:hover::before { transform: scaleX(1); }
  .menu-row:hover .menu-row__idx { color: var(--accent); }
  .menu-row:hover .menu-row__name { transform: translateX(16px); }
  .menu-row:hover .menu-row__desc { transform: translateX(8px); color: var(--text); }
  .menu-row:hover .menu-row__price { transform: translateX(-12px); color: var(--accent-2); }
}

.menu__panel.is-entering .menu-row { animation: rowIn 0.9s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 0.055s); }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.menu__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 40px;
  margin-top: 36px;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* Cursor-following preview */
.menu-preview {
  position: fixed;
  top: 0; left: 0;
  z-index: 60;
  width: clamp(220px, 18vw, 300px);
  aspect-ratio: 4 / 5;
  margin: calc(clamp(220px, 18vw, 300px) * -0.625) 0 0 calc(clamp(220px, 18vw, 300px) * -0.5);
  pointer-events: none;
  will-change: transform;
}
.menu-preview__inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-3);
  opacity: 0;
  transform: scale(0.8);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
  transition: opacity 0.45s var(--ease-out), transform 0.7s var(--ease-out);
}
.menu-preview.is-visible .menu-preview__inner { opacity: 1; transform: scale(1); }
.menu-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--grade);
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.5s var(--ease-out), transform 1.1s var(--ease-out);
}
.menu-preview img.is-active { opacity: 1; transform: scale(1); }

/* 10 · Atmosphere --------------------------------------------------------- */
.atmos {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118vh;
  padding: 18vh var(--gutter);
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}
.atmos__media { position: absolute; inset: -14% 0; z-index: 0; }
.atmos__media img { width: 100%; height: 100%; object-fit: cover; }
.atmos__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(11, 10, 9, 0.35) 22%, rgba(11, 10, 9, 0.35) 78%, var(--bg) 100%),
    radial-gradient(70% 60% at 50% 50%, rgba(11, 10, 9, 0.35), rgba(11, 10, 9, 0.8));
}
.atmos__content { position: relative; z-index: 2; }
.atmos__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8.6vw, 9.2rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.atmos__title .line + .line { margin-top: 0; }
.atmos__title .gap { display: block; height: 0.32em; }
.atmos__title em { font-style: italic; text-transform: lowercase; color: var(--accent-2); }
.atmos__sub { margin-top: 40px; }
.atmos__corner {
  position: absolute;
  z-index: 2;
  font-size: var(--fs-2xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}
.atmos__corner--tl { top: 16vh; left: var(--gutter); }
.atmos__corner--br { bottom: 16vh; right: var(--gutter); text-align: right; }

/* 11 · Story -------------------------------------------------------------- */
.story { background: var(--bg); }
.story__grid { align-items: start; }
.story__text { grid-column: 1 / 6; }
.story__text .h2 { margin: 28px 0 clamp(40px, 5vw, 64px); }
.story__text .lead { margin-bottom: 28px; }
.story__comp {
  grid-column: 7 / 13;
  position: relative;
  aspect-ratio: 5 / 6.4;
  margin-top: 40px;
}
.story__comp .frame { position: absolute; box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.8); }
.story__comp .c1 { left: 0; top: 0; width: 60%; aspect-ratio: 3 / 4; z-index: 1; }
.story__comp .c2 { right: 0; top: 14%; width: 47%; aspect-ratio: 4 / 5; z-index: 2; }
.story__comp .c3 { left: 9%; bottom: 3%; width: 40%; aspect-ratio: 1 / 1; z-index: 3; }
.story__comp .c4 { right: 7%; bottom: 0; width: 30%; aspect-ratio: 3 / 4; z-index: 4; }
.story__comp .frame figcaption {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-size: var(--fs-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 229, 0.78);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--col-gap);
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line-2);
}
.pillar { padding: 24px 0 26px; border-bottom: 1px solid var(--line); }
.pillar__n { font-size: var(--fs-2xs); letter-spacing: 0.22em; color: var(--accent); }
.pillar__t { margin: 10px 0 6px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; line-height: 1.1; }
.pillar__d { font-size: var(--fs-sm); line-height: 1.6; color: var(--text-2); }

.story__quote {
  grid-column: 3 / 11;
  margin-top: clamp(96px, 12vw, 180px);
  text-align: center;
}
.story__quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  text-wrap: balance;
}
.story__quote blockquote::before {
  content: "";
  display: block;
  width: 1px; height: 64px;
  margin: 0 auto 36px;
  background: linear-gradient(var(--line), var(--accent));
}
.story__quote figcaption { margin-top: 28px; }

/* 12 · Experience (a day at Umbra) --------------------------------------- */
.exp { background: var(--bg-3); overflow: hidden; }
.exp__pin { position: relative; }
.exp__track {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 3.6vw, 64px);
  padding-inline: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.exp__track::-webkit-scrollbar { display: none; }
.exp__intro {
  flex: none;
  width: clamp(300px, 34vw, 580px);
  align-self: center;
  padding-right: clamp(0px, 4vw, 80px);
  scroll-snap-align: start;
}
.exp__intro .h2 { margin: 28px 0 32px; }
.exp__hint { display: inline-flex; align-items: center; gap: 14px; margin-top: 36px; }

.moment {
  flex: none;
  width: clamp(280px, 27vw, 460px);
  scroll-snap-align: start;
}
.moment:nth-of-type(even) { margin-top: clamp(40px, 9vh, 110px); }
.moment__time {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: -0.3em;
  padding-left: 4px;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.4vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
}
.moment__img { aspect-ratio: 4 / 4.6; }
.moment__body { padding-top: 22px; }
.moment__title { margin: 12px 0 10px; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; line-height: 1.05; }
.moment__text { max-width: 36ch; font-size: var(--fs-sm); line-height: 1.7; color: var(--text-2); }
.exp__end { flex: none; width: var(--gutter); }

.exp__timeline {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin: clamp(48px, 6vh, 72px) auto 0;
  padding-inline: var(--gutter);
  font-size: var(--fs-2xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}
.exp__tl-track { position: relative; flex: 1; height: 1px; background: var(--line-2); }
.exp__tl-fill { position: absolute; inset: 0; background: linear-gradient(90deg, var(--accent-2), var(--accent)); transform: scaleX(0); transform-origin: left; }
.exp__tl-ticks { position: absolute; inset: -4px 0; display: flex; justify-content: space-between; }
.exp__tl-ticks i { width: 1px; height: 9px; background: var(--line-2); }

.exp.is-pinned { padding-block: 0; }
.exp.is-pinned .exp__pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 64px; }
.exp.is-pinned .exp__track { overflow: visible; scroll-snap-type: none; will-change: transform; }
.exp.is-pinned .moment__img { aspect-ratio: auto; height: min(40vh, 430px); }
.exp.is-pinned .moment:nth-of-type(even) { margin-top: clamp(24px, 6vh, 72px); }
.exp.is-pinned .moment__time { font-size: clamp(3.2rem, 5.2vw, 5.8rem); }
.exp.is-pinned .exp__timeline { margin-top: clamp(28px, 4vh, 48px); }
.exp.is-pinned .exp__hint { display: none; }

/* 13 · Gallery + lightbox ------------------------------------------------- */
.gallery { background: var(--bg); }
.gallery__head { align-items: end; margin-bottom: clamp(56px, 7vw, 110px); }
.gallery__head-left { grid-column: 1 / 8; }
.gallery__head-left .h2 { margin-top: 28px; }
.gallery__head-right { grid-column: 9 / 13; padding-bottom: 0.5em; }

.gallery__grid { row-gap: clamp(28px, 4vw, 64px); align-items: start; }
.g-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  text-align: left;
  background: var(--bg-3);
}
.g-item .frame__inner { position: absolute; inset: 0; }
.g-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0) 45%, rgba(11, 10, 9, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.g-item__label {
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}
.g-item__place { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; line-height: 1.1; }
.g-item__time { font-size: var(--fs-2xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-2); white-space: nowrap; }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.06); }
.g-item:hover::after, .g-item:focus-visible::after,
.g-item:hover .g-item__label, .g-item:focus-visible .g-item__label { opacity: 1; transform: none; }
.g-item:focus-visible { outline-offset: 6px; }

.g1 { grid-column: 1 / 6; aspect-ratio: 4 / 5.2; }
.g2 { grid-column: 7 / 10; aspect-ratio: 4 / 3; margin-top: 22%; }
.g3 { grid-column: 10 / 13; aspect-ratio: 3 / 4; margin-top: 58%; }
.g4 { grid-column: 2 / 8; aspect-ratio: 16 / 10.5; }
.g5 { grid-column: 9 / 13; aspect-ratio: 4 / 5; margin-top: -26%; }
.g6 { grid-column: 1 / 5; aspect-ratio: 1 / 1; margin-top: 10%; }
.g7 { grid-column: 6 / 13; aspect-ratio: 16 / 8.5; }
.gallery__cap { grid-column: 1 / 13; }

.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background: rgba(8, 7, 6, 0.97);
  overflow: hidden;
}
.lightbox::backdrop { background: rgba(8, 7, 6, 0.6); }
.lightbox[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  animation: lbIn 0.6s var(--ease-out);
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb__top, .lb__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px var(--gutter);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
}
.lb__count { font-variant-numeric: tabular-nums; }
.lb__count b { font-weight: 500; color: var(--text); }
.lb__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 4px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}
.lb__btn:hover { color: var(--accent-2); }
.lb__close-x { position: relative; width: 16px; height: 16px; }
.lb__close-x::before, .lb__close-x::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transition: transform 0.5s var(--ease-out);
}
.lb__close-x::after { transform: rotate(-45deg); }
.lb__btn:hover .lb__close-x::before { transform: rotate(135deg); }
.lb__btn:hover .lb__close-x::after { transform: rotate(45deg); }
.lb__stage { display: grid; place-items: center; min-height: 0; padding: 0 var(--gutter); }
.lb__figure { position: relative; display: grid; place-items: center; width: 100%; height: 100%; min-height: 0; }
.lb__img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  max-height: calc(100dvh - 200px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: var(--grade);
}
.lb__img.is-changing { animation: lbImg 0.9s var(--ease-out); }
@keyframes lbImg {
  from { opacity: 0; clip-path: inset(6% 6% 6% 6%); transform: scale(1.03); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
}
.lb__caption { display: flex; gap: 22px; align-items: baseline; }
.lb__caption strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text); }
.lb__nav { display: flex; gap: 28px; }
.lb__nav .arrow { width: 18px; }
.lb__prev .arrow { transform: rotate(180deg); }
.lb__prev:hover .arrow { transform: rotate(180deg) translateX(5px); }
.lb__next:hover .arrow { transform: translateX(5px); }

/* 14 · Reservation -------------------------------------------------------- */
.reserve {
  background:
    radial-gradient(60% 50% at 88% 8%, rgba(58, 36, 24, 0.55), transparent 70%),
    var(--bg-3);
}
.reserve__grid { align-items: start; }
.reserve__info { grid-column: 1 / 6; position: sticky; top: 120px; }
.reserve__info .h2 { margin: 28px 0 36px; }
.reserve__details {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-2);
}
.reserve__details div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--text);
}
.reserve__details dt { font-size: var(--fs-2xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }

.booking { grid-column: 7 / 13; }
.booking__form { border-top: 1px solid var(--line-2); }
.field { padding: 30px 0; border-bottom: 1px solid var(--line); }
.field__legend, .field__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field__legend .idx, .field__label .idx { color: var(--accent); margin-right: 12px; }
.field__hint { font-size: var(--fs-2xs); letter-spacing: 0.18em; color: var(--muted); }
fieldset.field { margin: 0; min-width: 0; border-width: 0 0 1px; border-style: solid; border-color: var(--line); }

.choice { position: relative; display: block; }
.choice input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.choice input:disabled { cursor: not-allowed; }
.choice__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text-2);
  transition: border-color 0.4s, background-color 0.4s, color 0.4s;
}
.choice:hover .choice__box { border-color: var(--line-2); color: var(--text); }
.choice input:checked + .choice__box { border-color: var(--accent-2); background: rgba(210, 180, 140, 0.08); color: var(--text); }
.choice input:focus-visible + .choice__box { outline: 1px solid var(--accent-2); outline-offset: 3px; }
.choice input:disabled + .choice__box { color: var(--muted); border-color: transparent; background: rgba(242, 237, 229, 0.02); text-decoration: line-through; text-decoration-color: rgba(112, 106, 100, 0.7); }

.dates {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  margin-inline: -2px;
  padding: 2px;
}
.dates::-webkit-scrollbar { display: none; }
.dates .choice { flex: none; scroll-snap-align: start; }
.dates .choice__box { width: 74px; height: 92px; gap: 4px; }
.date__dow { font-size: var(--fs-2xs); letter-spacing: 0.2em; text-transform: uppercase; }
.date__num { font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; font-variant-numeric: lining-nums; }
.date__mon { font-size: var(--fs-2xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.choice input:checked + .choice__box .date__num { color: var(--accent-2); }
.dates-fallback { width: 100%; padding: 12px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line-2); }

.times { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.times .choice__box {
  position: relative;
  height: 52px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-variant-numeric: lining-nums tabular-nums;
}
.times .few::after {
  content: "";
  position: absolute;
  top: 7px; right: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.times-legend { display: flex; gap: 22px; margin-top: 14px; font-size: var(--fs-2xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.times-legend span::before { content: ""; display: inline-block; width: 4px; height: 4px; margin-right: 8px; border-radius: 50%; background: var(--accent); vertical-align: 2px; }
.times-legend span + span::before { width: 12px; height: 1px; border-radius: 0; background: var(--muted); }

.guests { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.stepper { display: flex; align-items: center; gap: 8px; }
.stepper__btn {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border: 1px solid var(--line-2);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  transition: border-color 0.4s, background-color 0.4s, color 0.4s;
}
.stepper__btn:hover:not(:disabled) { border-color: var(--accent-2); color: var(--accent-2); }
.stepper__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.stepper__val {
  display: block;
  min-width: 96px;
  text-align: center;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: lining-nums;
}
.stepper__val small { display: block; margin-top: 6px; font-family: var(--sans); font-size: var(--fs-2xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.guests__note { max-width: 26ch; font-size: var(--fs-sm); line-height: 1.6; color: var(--text-2); }

.inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--col-gap); }
.input { display: block; }
.input span {
  display: block;
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.input input {
  width: 100%;
  padding: 12px 0 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  transition: border-color 0.4s;
}
.input input::placeholder { color: rgba(169, 160, 153, 0.4); }
.input input:focus { outline: none; border-color: var(--accent-2); }
.input input[aria-invalid="true"] { border-color: #B5715A; }

.booking__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
}
.booking__summary { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--text-2); }
.booking__summary b { font-weight: 400; color: var(--text); }
.booking__error { width: 100%; font-size: var(--fs-sm); color: #D39A83; }
.booking__error:empty { display: none; }

.booking__done { padding: 56px 0 24px; border-top: 1px solid var(--line-2); }
.booking__done[hidden] { display: none; }
.booking__done .h3 { margin: 24px 0 20px; }
.booking__done p { max-width: 44ch; }
.booking__done .link { margin-top: 32px; }

/* 15 · Footer ------------------------------------------------------------- */
.footer { position: relative; overflow: hidden; background: var(--bg); padding-top: var(--section); }
.footer__top { align-items: end; }
.footer__statement {
  grid-column: 1 / 9;
  font-family: var(--serif);
  font-size: clamp(3rem, 9.6vw, 10rem);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.footer__statement em { font-style: italic; text-transform: lowercase; color: var(--accent-2); }
.footer__cta { grid-column: 9 / 13; justify-self: end; padding-bottom: 0.6em; display: grid; gap: 18px; justify-items: start; }
.footer__cta p { max-width: 30ch; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px var(--col-gap);
  margin-top: clamp(80px, 10vw, 150px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.fcol h3 { margin-bottom: 18px; font-size: var(--fs-2xs); font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); }
.fcol p, .fcol li { font-size: 0.925rem; line-height: 1.8; color: var(--text-2); }
.fcol a { color: var(--text); }
.fcol .hours-row { display: flex; justify-content: space-between; gap: 12px; max-width: 250px; }
.fcol .hours-row span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
.fcol .link { margin-top: 14px; }

.footer__word {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(64px, 8vw, 120px);
  padding-inline: calc(var(--gutter) * 0.5);
  font-family: var(--serif);
  font-size: clamp(5rem, 24vw, 30rem);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(180deg, rgba(210, 180, 140, 0.26) 0%, rgba(58, 36, 24, 0.35) 45%, rgba(11, 10, 9, 0) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  pointer-events: none;
}
.footer__word span { display: inline-block; }

.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  padding-block: 26px 30px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a { color: var(--text-2); }

/* 16 · Cursor & progress -------------------------------------------------- */
.cursor { display: none; }
.has-cursor .cursor { display: block; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor .choice input, .has-cursor [data-cursor] { cursor: none; }
.has-cursor input[type="text"], .has-cursor input[type="email"], .has-cursor input[type="date"] { cursor: text; }

.cursor__dot, .cursor__ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 300;
  pointer-events: none;
  will-change: transform;
}
.cursor__dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--accent-2);
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.cursor__ring { width: 84px; height: 84px; margin: -42px 0 0 -42px; }
.cursor__circle {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(210, 180, 140, 0.45);
  border-radius: 50%;
  transform: scale(0.42);
  transition: transform 0.6s var(--ease-out), background-color 0.5s var(--ease-out), border-color 0.5s, opacity 0.4s;
}
.cursor__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s, transform 0.6s var(--ease-out);
}
.cursor.is-hover .cursor__circle { transform: scale(0.66); background: rgba(210, 180, 140, 0.08); border-color: rgba(210, 180, 140, 0.7); }
.cursor.is-label .cursor__circle { transform: scale(1); background: var(--accent-2); border-color: var(--accent-2); }
.cursor.is-label .cursor__label { opacity: 1; transform: none; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-down .cursor__circle { transform: scale(0.34); }
.cursor.is-label.is-down .cursor__circle { transform: scale(0.9); }
.cursor.is-text .cursor__circle { opacity: 0; }
.cursor.is-hidden .cursor__dot, .cursor.is-hidden .cursor__circle { opacity: 0; }

.progress {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 80;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.progress.is-visible { opacity: 1; }
.progress__num { font-size: var(--fs-2xs); letter-spacing: 0.1em; color: var(--text-2); font-variant-numeric: tabular-nums; }
.progress__track { position: relative; width: 1px; height: 110px; background: var(--line-2); overflow: hidden; }
.progress__fill { position: absolute; inset: 0; background: var(--accent-2); transform: scaleY(0); transform-origin: top; }

/* 17 · Motion states ------------------------------------------------------ */
/* Hero is hidden only while the intro sequence is armed (html.js-anim). */
.js-anim .nav,
.js-anim .hero__eyebrow,
.js-anim .hero__lede,
.js-anim .hero__cta > *,
.js-anim .hero__foot-inner > * { opacity: 0; }
.js-anim .hero__foot-inner { border-top-color: transparent; }
.js-anim .hero__title .line > span { transform: translateY(112%); }

html.js-anim:not(.is-ready) { overflow: hidden; }

.frame--para .frame__inner { inset: -9% 0; }
