/* ═══════════════════════════════════════════════════════════
   SHOTI BREAD HOUSE — Georgian Cuisine & Bakery
   dark-room editorial · warm amber · old-country serif
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink:        #14100a;
  --ink-2:      #1b1510;
  --ink-3:      #241c14;
  --cream:      #f4ecda;
  --cream-dim:  rgba(244, 236, 218, .70);
  --cream-faint:rgba(244, 236, 218, .45);
  --gold:       #d9ad55;
  --gold-soft:  rgba(217, 173, 85, .55);
  --wine:       #8a3327;
  --clay:       #b5754a;
  --line:       rgba(244, 236, 218, .14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", "Helvetica Neue", sans-serif;
  --ease:  cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* Interactive text links use a still, left-to-right gold ink reveal.
   Buttons keep their own hover language. */
.link-reel {
  display: inline-grid;
  position: relative;
  vertical-align: bottom;
  line-height: 1.35;
}
.link-reel__label,
.link-reel__hover {
  grid-area: 1 / 1;
}
.link-reel__hover {
  color: var(--gold);
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  transition: clip-path .5s var(--ease);
  will-change: clip-path;
}
.link-reel:hover .link-reel__hover,
.link-reel:focus-visible .link-reel__hover {
  clip-path: inset(0 0 0 0);
}
.link-reel:focus-visible {
  outline: 1px solid var(--gold-soft);
  outline-offset: 4px;
}

/* ── grain overlay ─────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 200; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-3%,2%); }
  50% { transform: translate(2%,-3%); } 75% { transform: translate(-2%,-2%); }
}

/* ── shared type ───────────────────────────────────────── */
.eyebrow {
  font-size: 10.5px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
  display: flex; align-items: center; gap: 16px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-soft); }

.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 62px); line-height: 1.08; letter-spacing: .01em;
}
.h2 em, .hero__title em, blockquote em {
  font-style: italic; font-weight: 300; color: var(--gold);
}
.body { color: var(--cream-dim); font-size: 15.5px; font-weight: 300; max-width: 54ch; }
.body + .body { margin-top: 18px; }
.body b { color: var(--cream); font-weight: 500; }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: all .45s var(--ease); position: relative; overflow: hidden;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--cream); }
.btn--ghost { border-color: var(--line); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── photo frames ──────────────────────────────────────── */
.frame {
  position: relative;
  padding: 10px 10px 0;
  background: var(--ink-3);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.65);
}
.frame::after {  /* gold corner tick */
  content: ""; position: absolute; top: -6px; left: -6px; width: 22px; height: 22px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
}
.frame img { aspect-ratio: 4/3; filter: saturate(1.06) contrast(1.03); }
.frame figcaption {
  display: flex; align-items: baseline; gap: 10px;
  padding: 12px 4px; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream-dim);
}
.frame figcaption span { color: var(--gold); font-size: 10px; letter-spacing: .22em; }

/* ── reveal animation ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; } .reveal.d4 { transition-delay: .48s; }
.reveal.d5 { transition-delay: .6s; }  .reveal.d6 { transition-delay: .72s; }

/* ── nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(24px, 4.5vw, 64px);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(20, 16, 10, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: 16px; padding-bottom: 16px;
  border-bottom-color: var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 13px;
  animation: navBrandIn .68s var(--ease) .6s both;
}
.nav__mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--gold-soft); color: var(--gold);
  font-family: var(--serif); font-size: 21px;
}
.nav__name { font-family: var(--serif); font-size: 21px; letter-spacing: .04em; }
.nav__name em { font-style: italic; font-weight: 300; color: var(--gold); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--cream-dim); padding: 4px 0;
  animation: navItemIn .56s var(--ease) both;
}
.nav__links a:nth-child(1) { animation-delay: .7s; }
.nav__links a:nth-child(2) { animation-delay: .75s; }
.nav__links a:nth-child(3) { animation-delay: .8s; }
.nav__links a:nth-child(4) { animation-delay: .85s; }
.nav__links a:nth-child(5) { animation-delay: .9s; }
.nav__cta {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.35;
  padding: 9px 18px; border: 1px solid var(--gold-soft);
  transition: background .35s, border-color .35s;
  animation: navCtaIn .68s var(--ease) .99s both;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); }
.nav__cta:hover .nav__cta-label, .nav__cta:hover .nav__cta-num { color: var(--ink); }
.nav__cta-label { font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-faint); transition: color .35s; }
.nav__cta-num { font-size: 13px; font-weight: 600; letter-spacing: .12em; color: var(--gold); transition: color .35s; }
.nav__burger { display: none; animation: navCtaIn .62s var(--ease) .75s both; }
@keyframes navBrandIn {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(-9px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes navCtaIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

/* mobile menu */
.mobilemenu {
  position: fixed; inset: 0; z-index: 95; background: rgba(13,10,7,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.mobilemenu.is-open { opacity: 1; visibility: visible; }
.mobilemenu nav { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.mobilemenu a {
  font-family: var(--serif); font-size: 34px; color: var(--cream);
  transition: color .3s;
}
.mobilemenu a:hover { color: var(--gold); }
.mobilemenu__tel { font-size: 20px !important; color: var(--gold) !important; letter-spacing: .1em; }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(112px, 15vh, 150px) clamp(24px, 4.5vw, 64px) 0;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 80% 14%, rgba(181, 117, 74, .20), transparent 62%),
    radial-gradient(900px 700px at 6% 86%, rgba(217, 173, 85, .10), transparent 58%),
    var(--ink);
}
.hero__geo {
  position: absolute; top: 8%; right: -2%;
  font-family: var(--serif); font-size: clamp(120px, 22vw, 320px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(241,232,212,.07);
  pointer-events: none; user-select: none; white-space: nowrap;
  animation: heroGeoIn 1.1s var(--ease) .08s both;
}
.hero__grid {
  flex: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center; gap: clamp(30px, 5vw, 80px);
  max-width: 1560px; width: 100%; margin: 0 auto;
}
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px, min(6.4vw, 9.4vh), 96px); line-height: 1.03; letter-spacing: .005em;
}
.hero__title span { display: block; }
.hero-intro {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIntroIn .72s var(--ease) both;
  animation-delay: var(--hero-delay, 0s);
}
.hero-intro--status { --hero-delay: .04s; }
.hero-intro--eyebrow { --hero-delay: .12s; }
.hero-intro--title-1 { --hero-delay: .20s; }
.hero-intro--title-2 { --hero-delay: .29s; }
.hero-intro--title-3 { --hero-delay: .38s; }
.hero-intro--lede { --hero-delay: .48s; }
.hero-intro--actions { --hero-delay: .57s; }
.hero-intro--strip { --hero-delay: .66s; }
@keyframes heroIntroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroGeoIn {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero__lede {
  margin-top: clamp(16px, 2.4vh, 30px); max-width: 46ch;
  color: var(--cream-dim); font-size: 15.5px; font-weight: 300;
}
.hero .eyebrow { margin-bottom: clamp(12px, 2vh, 26px); }
.hero__actions { display: flex; gap: 12px; margin-top: clamp(20px, 3.2vh, 40px); flex-wrap: wrap; }
.hero__meta {
  display: flex; align-items: center; gap: 22px; margin-top: 54px;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-faint);
}
.hero__meta b { color: var(--gold); font-weight: 600; margin-right: 6px; }
.hero__meta i { width: 4px; height: 4px; background: var(--gold-soft); border-radius: 50%; }

/* live open / closed status — set as type, not as a widget */
.status {
  display: inline-block; padding-left: 15px;
  margin-bottom: clamp(12px, 2vh, 24px);
  border-left: 2px solid var(--cream-faint);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream-faint);
}
.status b { font-weight: 700; color: var(--cream); letter-spacing: .3em; }
.status.is-open { border-left-color: var(--gold); }
.status.is-open b { color: var(--gold); }
.status.is-closed { border-left-color: var(--clay); }
.status.is-closed b { color: var(--clay); }

/* practical strip under the hero actions */
.hero__strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  margin-top: clamp(18px, 2.6vh, 30px); padding-top: clamp(16px, 2.4vh, 26px);
  border-top: 1px solid var(--line);
  font-size: 12.5px; font-weight: 300; color: var(--cream-dim);
}
.hero__strip span { display: inline-flex; align-items: center; gap: 9px; }
.hero__strip svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.4; flex: none; }
.hero__strip a:not(.link-reel) { border-bottom: 1px solid var(--gold-soft); transition: color .3s; }
.hero__strip b { color: var(--gold); font-weight: 600; }

/* order-online row */
.order {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line);
}
.order__label {
  font-size: 10.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream-faint); margin-right: 6px;
}
/* fill blooms outward from wherever the cursor entered.
   --x / --y are written by main.js on enter and on leave,
   so it retracts toward the exit point too. */
.order__link {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 11px 22px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 12px; letter-spacing: .1em; color: var(--cream);
  transition: border-color .4s var(--ease), color .4s var(--ease);
}
.order__link::before {
  content: ""; position: absolute; z-index: -1;
  top: var(--y, 50%); left: var(--x, 50%);
  width: 0; aspect-ratio: 1; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width .55s var(--ease);
}
.order__link:hover, .order__link:focus-visible { border-color: var(--gold); color: var(--ink); }
/* longer duration here governs the fill only; the retract and the
   pill-to-pill handoff keep the base .55s above */
.order__link:hover::before, .order__link:focus-visible::before {
  width: 300%;
  transition: width .95s var(--ease);
}

.hero__stage { position: relative; height: clamp(440px, 62vh, 640px); }
.hero-frame-intro {
  opacity: 0;
  scale: .97;
  animation: heroFrameIn .92s var(--ease) both;
  animation-delay: var(--frame-delay, .2s);
}
.hero-frame-intro--main { --frame-delay: .18s; }
.hero-frame-intro--a { --frame-delay: .36s; }
.hero-frame-intro--b { --frame-delay: .50s; }
@keyframes heroFrameIn {
  from { opacity: 0; scale: .97; }
  to { opacity: 1; scale: 1; }
}
/* caption sits above the image here: the khinkali card overlaps
   this frame's bottom-right corner and would clip it */
.frame--hero {
  position: absolute; width: 62%; right: 6%; top: 4%;
  display: flex; flex-direction: column-reverse;
  padding: 0 10px 10px;
}
.frame--hero img { aspect-ratio: 4/4.6; }
.frame--float-a { position: absolute; width: 34%; left: 0; bottom: 9%; z-index: 2; }
.frame--float-a img { aspect-ratio: 1/1; }
.frame--float-b { position: absolute; width: 30%; right: 0; bottom: -4%; z-index: 3; }
.frame--float-b img { aspect-ratio: 1/1; }
.hero__stage .frame figcaption { padding: 9px 4px; font-size: 9.5px; }

/* lexicon — a quiet still band, Georgian script leading */
.lexicon {
  list-style: none;
  margin: clamp(30px, 4.5vh, 64px) auto 0;
  padding: clamp(20px, 3vh, 34px) 0 clamp(22px, 3.4vh, 38px);
  border-top: 1px solid var(--line);
  max-width: 1560px; width: 100%;
  display: flex; flex-wrap: wrap;
  gap: clamp(26px, 4.4vw, 78px);
}
.lexicon li { display: block; }
.lexicon li {
  opacity: 0;
  transform: translateY(12px);
  animation: heroLexiconIn .58s var(--ease) both;
}
.lexicon li:nth-child(1) { animation-delay: .74s; }
.lexicon li:nth-child(2) { animation-delay: .80s; }
.lexicon li:nth-child(3) { animation-delay: .86s; }
.lexicon li:nth-child(4) { animation-delay: .92s; }
.lexicon li:nth-child(5) { animation-delay: .98s; }
@keyframes heroLexiconIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.lexicon i {
  display: block; font-style: normal; font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 25px); line-height: 1.1;
  color: var(--gold-soft);
}
.lexicon b {
  display: block; margin-top: 9px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--cream-dim);
}
.lexicon span {
  display: block; margin-top: 4px;
  font-size: 11.5px; font-weight: 300; color: var(--cream-faint);
}

/* ── press ─────────────────────────────────────────────── */
.press {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1560px; margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 4.5vw, 64px);
  gap: clamp(30px, 4vw, 70px);
}
.press__item { border-top: 1px solid var(--line); padding-top: 30px; }
.press__item blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25;
}
.press__item cite {
  display: block; margin-top: 18px; font-style: normal;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--cream-faint);
}
.press__item--stat { display: flex; flex-direction: column; align-items: flex-start; }
.press__item--stat b {
  font-family: var(--serif); font-weight: 400; color: var(--gold);
  font-size: clamp(46px, 5vw, 68px); line-height: 1;
}
.press__item--stat > span {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px);
  font-weight: 300; color: var(--cream-dim); margin-top: 8px;
}
.press__item--stat em { font-style: italic; color: var(--cream); }

/* ── sections shared ───────────────────────────────────── */
section { position: relative; }
.section-geo {
  position: absolute; top: 40px; right: 0;
  font-family: var(--serif); font-size: clamp(90px, 14vw, 210px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(241,232,212,.055);
  pointer-events: none; user-select: none;
}

/* ── house ─────────────────────────────────────────────── */
.house {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 4.5vw, 64px);
  background: var(--ink-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.house__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.house__photos { position: relative; padding-bottom: 70px; }
.frame--tall { width: 74%; }
.frame--tall img { aspect-ratio: 3/3.8; }
.frame--offset { width: 52%; margin-left: auto; margin-top: -22%; }
.frame--offset img { aspect-ratio: 4/3; }
.house__facts {
  list-style: none; display: flex; gap: clamp(26px, 4vw, 60px);
  margin-top: 46px; padding-top: 32px; border-top: 1px solid var(--line);
}
.house__facts li { display: flex; flex-direction: column; gap: 5px; }
.house__facts b { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--gold); line-height: 1; }
.house__facts span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream-faint); }

/* ── signatures ────────────────────────────────────────── */
.sigs {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 4.5vw, 64px);
  max-width: 1560px; margin: 0 auto;
}
.sigs__head { max-width: 720px; margin-bottom: 60px; position: relative; }
.sigs__hint {
  position: absolute; right: -160px; bottom: 8px;
  font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--cream-faint);
}
.sigs__list { list-style: none; border-top: 1px solid var(--line); }
.sig {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.2fr) minmax(0, 1.4fr) auto;
  align-items: center; gap: clamp(14px, 3vw, 40px);
  padding: 26px 10px; border-bottom: 1px solid var(--line);
  cursor: pointer; position: relative;
  transition: background .4s var(--ease), padding-left .4s var(--ease);
}
.sig::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transition: transform .4s var(--ease);
}
.sig:hover, .sig.is-hot { background: rgba(201,162,75,.05); padding-left: 24px; }
.sig:hover::before, .sig.is-hot::before { transform: scaleY(1); }
.sig__no { font-size: 11px; letter-spacing: .2em; color: var(--cream-faint); }
.sig__name { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 38px); font-weight: 400; line-height: 1.1; transition: color .3s; }
.sig:hover .sig__name, .sig.is-hot .sig__name { color: var(--gold); }
.sig__name i { font-style: normal; font-size: .5em; color: var(--cream-faint); margin-left: 12px; letter-spacing: .08em; }
.sig__desc { font-size: 13px; font-weight: 300; color: var(--cream-dim); }
.sig__price { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); white-space: nowrap; }
.sig__price::before { content: "$"; font-size: .7em; margin-right: 2px; }

/* floating photo viewer */
.sigview {
  position: fixed; z-index: 60; width: 300px; pointer-events: none;
  padding: 9px 9px 0; background: var(--ink-3); border: 1px solid var(--gold-soft);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.8);
  opacity: 0; transform: translate(-50%, -50%) scale(.9) rotate(-2deg);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.sigview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-2deg); }
.sigview img { aspect-ratio: 4/3.4; }
.sigview figcaption {
  padding: 10px 3px; font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cream-dim);
}

/* ── menu ──────────────────────────────────────────────── */
.menu {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 4.5vw, 64px);
  background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.menu__head, .menu__tabs, .menu__panels, .menu .order { max-width: 1280px; margin-left: auto; margin-right: auto; }
.menu__head { margin-bottom: 54px; }
.menu__note { margin-top: 22px; font-size: 12.5px; color: var(--cream-faint); letter-spacing: .06em; }
.menu__note b { color: var(--gold); font-weight: 600; }

.menu__tabs {
  display: flex; flex-wrap: wrap; gap: 2px;
  border: 1px solid var(--line); width: max-content; max-width: 100%;
  margin-bottom: 60px; background: rgba(241,232,212,.02);
}
.menu__tab {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  padding: 15px 24px; color: var(--cream-dim);
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  transition: background .35s, color .35s;
}
.menu__tab:hover { color: var(--cream); }
.menu__tab.is-active { background: var(--gold); color: var(--ink); }

.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: panelIn .6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 90px); }
.menu__group h3 {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--gold-soft);
}
.menu__group h3 i { font-style: normal; font-size: .62em; color: var(--cream-faint); margin-left: 10px; }
.menu__group h3:not(:first-child) { margin-top: 44px; }
.menu__group dl > div {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(241,232,212,.07);
}
.menu__group dt { font-size: 14.5px; font-weight: 500; letter-spacing: .04em; }
.menu__group dt span { display: block; margin-top: 3px; font-size: 12px; font-weight: 300; color: var(--cream-faint); letter-spacing: .02em; }
.menu__group dd {
  margin-left: auto; white-space: nowrap;
  font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold);
}
.menu__group dd::before { content: "$"; font-size: .72em; margin-right: 2px; }
/* dotted leader */
.menu__group dl > div { position: relative; }
.menu__group dl > div::after {
  content: ""; order: 2; flex: 1; border-bottom: 1px dotted rgba(241,232,212,.18);
  transform: translateY(-5px);
}
.menu__group dt { order: 1; } .menu__group dd { order: 3; }

/* ── pantry ────────────────────────────────────────────── */
.pantry { padding: clamp(80px, 10vw, 150px) clamp(24px, 4.5vw, 64px); }
.pantry__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.pantry__copy .btn { margin-top: 34px; }
.pantry__photos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 34px); align-items: start; }
.pantry__photos .frame img { aspect-ratio: 3/3.9; }
.pantry__photos .frame:nth-child(2) { margin-top: 60px; }

/* ── room ──────────────────────────────────────────────── */
.room {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 4.5vw, 64px);
  background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.room__head { max-width: 1280px; margin: 0 auto clamp(34px, 4vw, 54px); }
.room__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px); align-items: stretch;
}
.room__grid .frame {
  cursor: zoom-in;
  display: flex; flex-direction: column;
  min-width: 0; margin: 0;
  transition: transform .6s var(--ease), border-color .45s var(--ease);
}
.room__grid .frame:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.room__grid .frame img { flex: 1 1 0; min-height: 0; height: 0; aspect-ratio: auto; }
.room__grid .frame:nth-child(1) { grid-column: span 7; height: clamp(360px, 38vw, 500px); }
.room__grid .frame:nth-child(2) { grid-column: span 5; height: clamp(360px, 38vw, 500px); }
.room__grid .frame:nth-child(n+3) { grid-column: span 4; height: clamp(250px, 25vw, 330px); }
.room__grid .frame figcaption {
  flex: none; min-height: 42px; padding: 11px 4px 9px;
  align-items: center;
}

/* ── visit ─────────────────────────────────────────────── */
.visit {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 4.5vw, 64px);
  padding-bottom: clamp(54px, 6vw, 88px);
}
.visit__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.visit__photo img { aspect-ratio: 4/3.4; }
.visit__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 44px;
}
.visit__card { background: var(--ink); padding: 28px 26px; }
.visit__card h4 {
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.visit__card p { font-size: 14.5px; font-weight: 300; color: var(--cream); line-height: 1.65; }
.visit__card a:not(.link-reel) { border-bottom: 1px solid var(--gold-soft); transition: color .3s, border-color .3s; }
.visit__link { display: inline-block; margin-top: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.visit__link.link-reel { display: inline-grid; }
span.visit__link { color: var(--cream-faint); }
.visit__hours { grid-column: span 2; }
.visit__card h4 em {
  font-style: normal; float: right; letter-spacing: .16em;
  color: var(--cream-faint); font-size: 9.5px;
}
.visit__hours dl > div.is-today dt,
.visit__hours dl > div.is-today dd { color: var(--gold); }
.visit__card--wide { grid-column: span 2; }
.visit__card--wide p { max-width: 50ch; }
.visit__hours dl { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 30px; }
.visit__hours dl > div { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(241,232,212,.07); font-size: 13px; }
.visit__hours dt { color: var(--cream-dim); font-weight: 300; }
.visit__hours dd { color: var(--cream); font-weight: 500; letter-spacing: .06em; }

/* ── footer ────────────────────────────────────────────── */
.footer {
  padding: clamp(40px, 4.5vw, 58px) clamp(24px, 4.5vw, 64px) 24px;
  border-top: 1px solid var(--line); position: relative;
}
.footer__row {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 36px 56px;
}
.footer__identity { display: flex; align-items: center; gap: 24px; min-width: 0; }
.footer__brand { flex: none; font-family: var(--serif); font-size: 24px; line-height: 1; }
.footer__brand em { font-style: italic; font-weight: 300; color: var(--gold); }
.footer__row p {
  margin: 0; padding-left: 24px; border-left: 1px solid var(--line);
  font-size: 11px; line-height: 1.55; font-weight: 300; color: var(--cream-faint);
}
.footer__row p span { display: block; color: var(--cream-dim); }
.footer__links { display: flex; align-items: center; justify-content: flex-end; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim);
  transition: color .3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1560px; margin: 28px auto 0; padding-top: 17px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 9.5px; letter-spacing: .12em; color: var(--cream-faint);
}
.footer__top { flex: none; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .17em; }

/* Studio signature, shared with the Lil Honey site. */
.studio-credit { background: #0c0c0c; border-top: 1px solid rgba(227, 192, 120, .28); }
.studio-credit__link {
  width: min(calc(100% - clamp(48px, 9vw, 128px)), 1560px);
  margin-inline: auto; padding-block: 14px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 11px;
  color: rgba(215, 226, 234, .62);
}
.studio-credit__mark {
  width: 24px; height: auto; opacity: .92;
  filter: drop-shadow(0 .5px 1px rgba(53, 35, 30, .22));
  transition: opacity .26s var(--ease);
}
.studio-credit__text { display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 7px; min-width: 0; }
.studio-credit__by { font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.studio-credit__name { color: #d7e2ea; font-size: 12px; font-weight: 700; letter-spacing: .01em; }
.studio-credit__cta {
  margin-left: auto; color: #e3c078; font-size: 10.5px; font-weight: 700;
  white-space: nowrap; border-bottom: 1px solid transparent;
  transition: border-color .26s var(--ease);
}
.studio-credit__link:hover .studio-credit__cta { border-bottom-color: rgba(227, 192, 120, .7); }
.studio-credit__link:hover .studio-credit__mark { opacity: 1; }
.studio-credit__link:focus-visible { outline: 2px solid #e3c078; outline-offset: -2px; }

/* ── lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(20,16,10,.94); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 5vmin;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 86vh; width: auto; height: auto; object-fit: contain;
  border: 1px solid var(--gold-soft); padding: 10px; background: var(--ink-3);
}
.lightbox__close {
  position: absolute; top: 26px; right: 34px;
  background: none; border: 1px solid var(--line); color: var(--cream);
  width: 46px; height: 46px; font-size: 22px; cursor: pointer;
  transition: border-color .3s, color .3s;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* ── mobile quick-actions bar ──────────────────────────── */
.quickbar { display: none; }
@media (max-width: 720px) {
  .quickbar {
    display: flex; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(20, 16, 10, .93);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(110%); transition: transform .5s var(--ease);
  }
  .quickbar.is-up { transform: none; }
  .quickbar__btn {
    flex: 1; text-align: center; padding: 13px 6px;
    border: 1px solid var(--line); color: var(--cream);
    font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  }
  .quickbar__btn--gold { flex: 1.35; background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .footer { padding-bottom: 24px; }
  .studio-credit { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* ── responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; padding-bottom: 20px; }
  .hero__stage { height: clamp(380px, 52vh, 520px); max-width: 640px; }
  .sigs__hint { display: none; }
  .house__grid, .pantry__grid, .visit__grid { grid-template-columns: 1fr; }
  .house__photos { max-width: 560px; }
  .visit__photo { max-width: 560px; }
  .room__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .room__grid .frame:nth-child(1) { grid-column: 1 / -1; height: clamp(340px, 54vw, 500px); }
  .room__grid .frame:nth-child(n+2) { grid-column: span 1; height: clamp(260px, 40vw, 360px); }
}

@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .nav__name { font-size: 18px; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav__burger span { width: 26px; height: 1.5px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s; }
  .nav__burger.is-open span:first-child { transform: translateY(4.2px) rotate(45deg); }
  .nav__burger.is-open span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

  .hero { padding: 120px 20px 0; }
  .hero__meta { flex-wrap: wrap; gap: 14px; }
  .lexicon { gap: 22px 30px; }
  .lexicon li { flex: 1 1 40%; }
  .press { grid-template-columns: 1fr; }
  .menu__tabs { width: 100%; }
  .menu__tab { flex: 1 1 40%; padding: 13px 10px; }
  .menu__cols { grid-template-columns: 1fr; }
  .sig { grid-template-columns: 1fr auto; grid-template-areas: "name price" "desc desc"; row-gap: 6px; }
  .sig__no { display: none; }
  .sig__name { grid-area: name; }
  .sig__price { grid-area: price; }
  .sig__desc { grid-area: desc; }
  .sigview { display: none; }
  .room__grid { grid-template-columns: 1fr; gap: 16px; }
  .room__grid .frame:nth-child(n) { grid-column: 1; height: clamp(250px, 72vw, 340px); }
  .room__grid .frame:nth-child(1) { height: clamp(290px, 82vw, 390px); }
  .visit__cards { grid-template-columns: 1fr; }
  .visit__hours { grid-column: span 1; }
  .visit__hours dl { grid-template-columns: 1fr; }
  .visit__card--wide { grid-column: span 1; }
  .footer__row { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .footer__identity { display: block; }
  .footer__row p { margin-top: 12px; padding-left: 0; border-left: 0; }
  .footer__links { justify-content: flex-start; gap: 14px 22px; }
  .footer__bottom { align-items: flex-start; }
  .footer__bottom p { max-width: 26ch; }
  .studio-credit__link { align-items: flex-start; padding-block: 13px; }
  .studio-credit__cta { margin-left: 35px; flex-basis: 100%; }
  .hero__strip { gap: 10px 18px; font-size: 12px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .order { gap: 10px; }
  .order__label { flex: 1 1 100%; margin-bottom: 4px; }
  .pantry__photos .frame:nth-child(2) { margin-top: 24px; }
  section, .house, .menu, .room, .pantry, .visit, .press { padding-left: 20px; padding-right: 20px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-intro, .hero-frame-intro, .hero__geo, .lexicon li {
    animation: none !important; opacity: 1; transform: none; scale: 1;
  }
  .nav__brand, .nav__links a, .nav__cta, .nav__burger {
    animation: none !important; opacity: 1; transform: none;
  }
  html { scroll-behavior: auto; }
}
