/* =========================================================
   DANBI 단비 — modern Korean, Koreatown, Los Angeles
   Night-time. Warm walnut dark, cream typewriter type,
   brass & forest-green accents — an after-dark version of
   the printed menu.
   --------------------------------------------------------- */

/* ---------- Menu fonts (self-hosted — drop files in /fonts) ----------
   These match the printed menu. Until each file exists the stack falls
   back to a Google substitute, so nothing breaks. See fonts/FONTS.md. */
@font-face {
  font-family: "BeyondInfinity";   /* the danbi logo + cursive headers */
  src: url("../fonts/beyondinfinity.woff2") format("woff2"),
       url("../fonts/beyondinfinity.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "BMYEONSUNG";       /* 배민 연성체 — Korean handwriting */
  src: url("../fonts/bmyeonsung.woff2") format("woff2"),
       url("../fonts/bmyeonsung.woff") format("woff");
  font-display: swap;
}

:root {
  /* Night palette */
  --bg:        #201712;   /* warm walnut night — base */
  --bg-2:      #281d17;   /* alternating sections */
  --dark:      #160f0b;   /* hero & footer — deepest */
  --dark-2:    #2c211a;   /* placeholder fill */
  --text:      #ece1cd;   /* primary cream type */
  --muted:     #b6a488;   /* muted cream — lifted for legibility on dark */
  --cream:     #efe7d8;   /* cream on dark */
  --accent:    #c89a58;   /* brass */
  --accent-lt: #dcb273;   /* brighter brass — hover / small accents */
  --green:     #3b4c41;   /* forest-green velvet (visible on dark) */
  --green-dk:  #324036;
  --green-lt:  #6f8a74;
  --celadon:   #93a89b;   /* soft sage — Korean accent type */
  --line:      rgba(236,225,205,0.15);
  --line-2:    rgba(236,225,205,0.30);

  /* Type — mirror the menus */
  --wordmark: "BeyondInfinity", "Caveat", "Noto Sans KR", cursive; /* danbi logo — letters only, demo-safe */
  --script: "Caveat", "Noto Sans KR", cursive;  /* decorative cursive — Caveat until licensed BeyondInfinity */
  --serif:  "Fraunces", "Noto Serif KR", Georgia, serif;          /* display headings */
  --mono:   "Courier Prime", "Courier New", ui-monospace, monospace; /* body — menu's Courier (web font first for consistency) */
  --sans:   "Courier Prime", "Courier New", ui-monospace, monospace; /* (alias → mono) */
  --kr:     "BMYEONSUNG", "Noto Sans KR", sans-serif;             /* hangul */

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 999;
  background: var(--cream); color: var(--dark);
  font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .8em 1.4em; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }
.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; }
:focus-visible { outline: 2px solid var(--accent-lt); outline-offset: 3px; }
.nav--solid :focus-visible, .section--alt :focus-visible { outline-color: var(--accent); }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: var(--text); }
.eyebrow {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.han { font-family: var(--kr); }
.script { font-family: var(--script); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--menu { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section[id] { scroll-margin-top: 5.5rem; } /* clear the fixed nav on anchor jumps */
.section--alt { background: var(--bg-2); }
/* drought → bloom: deepest & airiest at the top, warming toward the green bloom */
.section--drought { background: var(--dark); padding-block: clamp(5.5rem, 12vw, 10rem); }
.section--warm { background: #2d2018; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.05em 2em; border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--dark, .btn--cream { background: var(--cream); color: var(--dark); }
.btn--dark:hover, .btn--cream:hover { background: var(--accent-lt); color: var(--dark); transform: translateY(-2px); }
.btn--outline { border-color: var(--line-2); color: var(--cream); }
.btn--outline:hover { background: var(--cream); border-color: var(--cream); color: var(--dark); transform: translateY(-2px); }
.btn--outline-cream { border-color: rgba(239,231,216,0.5); color: var(--cream); }
.btn--outline-cream:hover { background: var(--cream); color: var(--dark); transform: translateY(-2px); }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid var(--accent); color: var(--text);
  transition: gap .3s var(--ease);
}
.textlink:hover { gap: .85em; color: var(--accent-lt); }
.textlink .arrow { transition: transform .3s var(--ease); }
.textlink:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  color: var(--cream);
}
.nav__brand { font-family: var(--wordmark); font-size: 2.1rem; line-height: 1; display: flex; align-items: baseline; gap: .35em; }
.nav__brand .han { font-family: var(--kr); font-size: .8rem; color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: clamp(1.3rem, 2.6vw, 2.4rem); }
.nav__links a:not(.btn) {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  position: relative; padding-block: 3px; opacity: .82; transition: opacity .25s, color .25s;
}
.nav__links a:not(.btn)::after {
  content:""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:not(.btn):hover { opacity: 1; color: var(--accent-lt); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 0.7em 1.4em; background: var(--cream); color: var(--dark) !important; }
.nav__cta:hover { background: var(--accent-lt); }

.nav--solid {
  background: rgba(22,15,11,0.86); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); padding-block: 0.9rem;
}

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 26px; padding: 6px 0; z-index: 110; }
.nav__toggle span { display: block; height: 1.5px; width: 100%; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }

@media (max-width: 800px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; background: var(--dark); color: var(--cream);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    transform: translateY(-100%); transition: transform .5s var(--ease); padding: 2rem;
  }
  .nav__links.open { transform: translateY(0); }
  .nav.menu-open { color: var(--cream); }
  .nav__links a:not(.btn) { font-size: 1rem; letter-spacing: .2em; opacity: 1; }
  body.menu-open { overflow: hidden; }
  .nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--dark); color: var(--cream); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,9,0.22) 0%, rgba(20,14,9,0.28) 48%, rgba(20,14,9,0.54) 100%); }
.hero__inner { position: relative; z-index: 1; width: 100%; text-align: center; padding-top: 4rem; }
.hero__eyebrow { color: var(--accent-lt); display: inline-block; margin-bottom: 1.4rem; }
.hero h1 { font-family: var(--wordmark); font-size: clamp(5rem, 18.5vw, 13rem); font-weight: 400; font-synthesis: none; line-height: .9; letter-spacing: 0; text-shadow: 0 3px 40px rgba(0,0,0,0.5); }
.hero__eyebrow, .hero__headline, .hero__tag, .hero__scroll, .hero__meta { text-shadow: 0 2px 26px rgba(0,0,0,0.55); }
.hero h1 .han { font-family: var(--kr); font-weight: 300; color: var(--accent-lt); font-size: 0.18em; vertical-align: middle; margin-left: 0.3em; }
.hero__headline { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.55rem, 3.8vw, 2.5rem); color: var(--cream); margin-top: 1.1rem; line-height: 1.1; }
.hero__tag { max-width: 46ch; margin: 1rem auto 0; font-size: 1rem; color: rgba(239,231,216,0.82); }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.hero__scroll { position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.6rem; z-index: 1; font-family: var(--mono); font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; opacity: .55; }

/* ---------- Section heading ---------- */
.head { max-width: 60ch; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.head .eyebrow { display: block; margin-bottom: 1.1rem; }
.head h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 300; }
.head p { color: var(--muted); margin-top: 1.1rem; font-size: 1rem; }
.center { text-align: center; }
.center .head { margin-inline: auto; }

/* ---------- Story ---------- */
.story-solo { max-width: 60ch; }
.story__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.story__body p.lead { font-family: var(--serif); font-weight: 300; font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.4; color: var(--text); }
.story__body .eyebrow { display: block; margin-bottom: 1.3rem; }
.story__body .textlink { margin-top: .8rem; }


/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.visit__media { position: relative; overflow: hidden; min-height: clamp(420px, 56vh, 720px); }
.visit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visit__body { padding: clamp(2.6rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem); }
#visit { padding-block: 0; }
.info dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.info dd { color: var(--muted); margin: .35rem 0 1.3rem; }
.info dd strong { color: var(--text); font-weight: 700; }
.visit__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }

/* ---------- Events form (forest-green banquette) ---------- */
.section--green { background: var(--green); color: var(--cream); }
.events__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.events__intro p { color: rgba(239,231,216,0.8); margin-bottom: 1rem; max-width: 42ch; }
.events__intro p.lead { font-family: var(--serif); font-weight: 300; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4; color: var(--cream); }
.events__intro .eyebrow { display: block; margin-bottom: 1.2rem; color: var(--accent-lt); }
.events__intro a.textlink { color: var(--cream); border-color: var(--accent-lt); }
.events__email { margin-top: 1.1rem; font-size: .92rem; color: rgba(239,231,216,0.8); }
.events__email a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent-lt); }
.events__email a:hover { color: var(--accent-lt); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: rgba(239,231,216,0.72); }
.field label .req { color: var(--accent-lt); }
.field input, .field select, .field textarea {
  font-family: var(--mono); font-size: .95rem; color: var(--cream);
  background: rgba(239,231,216,0.07); border: 1px solid rgba(239,231,216,0.26); border-radius: 0;
  padding: .8em .9em; transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field select option { color: #2b2520; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-lt); box-shadow: 0 0 0 3px rgba(220,178,115,0.20);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(239,231,216,0.42); }
.field.error input, .field.error select, .field.error textarea { border-color: var(--accent-lt); }
.field__err { font-family: var(--mono); font-size: .72rem; color: var(--accent-lt); display: none; }
.field.error .field__err { display: block; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 1.8rem; flex-wrap: wrap; }
.form-foot .note { font-family: var(--mono); font-size: .78rem; color: rgba(239,231,216,0.72); max-width: 34ch; }
.form-success { display: none; padding: 1rem 0; }
.form-success.show { display: block; animation: rise .6s var(--ease); }
.form-success .mark { font-family: var(--kr); color: var(--accent-lt); font-size: 3.2rem; line-height: 1; margin-bottom: .5rem; }
.form-error { padding: 1rem 0; }
.form-error p { color: var(--cream); max-width: 42ch; }
.form-error a, .form-foot .note a { color: var(--accent-lt); text-decoration: underline; text-underline-offset: 3px; }
.form-success h3 { font-size: 1.8rem; font-weight: 300; margin-bottom: .6rem; color: var(--cream); }
.form-success p { color: rgba(239,231,216,0.8); max-width: 42ch; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--cream); padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer__brand { font-family: var(--wordmark); font-size: 2.6rem; line-height: 1; display: flex; align-items: baseline; gap: .35em; }
.footer__brand .han { font-family: var(--kr); font-size: .9rem; color: var(--accent); }
.footer__brand + p { color: rgba(239,231,216,0.6); margin-top: 1rem; max-width: 32ch; font-size: .9rem; }
.footer h4 { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(239,231,216,0.5); margin-bottom: 1rem; font-weight: 700; }
.footer a { display: block; color: rgba(239,231,216,0.82); padding: .28rem 0; font-size: .9rem; transition: color .2s; }
.footer a:hover { color: var(--accent-lt); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: .76rem; color: rgba(239,231,216,0.5); }

/* ---------- Page hero (menu) ---------- */
.page-hero { padding: clamp(8rem, 16vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem); }
.menu-meta { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.menu-meta .right { text-align: right; }
.page-hero h1 { font-family: var(--serif); font-style: italic; font-size: clamp(2.6rem, 8vw, 5rem); font-weight: 300; }
.page-hero h1 .han { font-style: normal; color: var(--accent); font-weight: 300; font-size: .4em; margin-left: .2em; }
.page-hero p { color: var(--muted); max-width: 56ch; margin-top: 1.2rem; font-size: 1rem; }

/* ---------- Menu ---------- */

.menu-section { padding-block: clamp(2.5rem, 5vw, 3.8rem); border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.menu-section:first-of-type { border-top: none; }
.menu-section__head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.6rem; }
.menu-section__head h2 { font-family: var(--serif); font-style: italic; text-transform: lowercase; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 400; }
.menu-section__head .han { font-family: var(--kr); color: var(--muted); font-size: .9rem; }
.menu-sub { font-family: var(--script); font-size: 1.3rem; line-height: 1; color: var(--accent-lt); margin: 2rem 0 1rem; }
.menu-sub:first-of-type { margin-top: .3rem; }
.menu-sub .note { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--muted); margin-left: .4em; }

.menu-list { display: grid; grid-template-columns: 1fr; }
.m-item { display: grid; grid-template-columns: 1fr auto; gap: .15rem 1rem; padding: 1rem 0; border-bottom: 1px dotted var(--line); align-items: baseline; }
.m-item__name { font-family: var(--mono); font-weight: 700; font-size: 1rem; letter-spacing: .01em; }
.m-item__name .han { font-family: var(--kr); font-weight: 400; font-size: .78rem; color: var(--muted); margin-left: .5em; }
.m-item__price { font-family: var(--mono); font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.m-item__price--split { font-size: .92rem; }
.m-item__desc { grid-column: 1 / -1; font-family: var(--mono); font-style: italic; font-size: .95rem; color: #d0c1a6; max-width: 60ch; margin-top: .25rem; line-height: 1.5; }
.menu-note { font-family: var(--mono); font-size: .78rem; color: var(--muted); font-style: italic; margin-top: 1.4rem; }

/* ruled double-line box — like the printed menu */
.menu-callout {
  position: relative; padding: 1.3rem 1.5rem; margin-top: 1.5rem;
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  border: 1px solid var(--accent);
  box-shadow: inset 0 0 0 3px var(--bg), inset 0 0 0 4px rgba(200,154,88,0.45);
}
.menu-callout .pill { font-family: var(--mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--accent); }
.menu-callout p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; flex: 1; min-width: 14rem; color: var(--text); }

/* ---------- Real images in slots ---------- */
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__media::after { z-index: 1; }
.hero__inner { z-index: 2; }


/* ---------- Drinks feature (split) ---------- */
.feature { padding-block: clamp(3.6rem, 7.5vw, 6.5rem); }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.feature__media { position: relative; overflow: hidden; background: var(--dark-2); min-height: clamp(420px, 60vh, 760px); }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.feature__body { padding: clamp(2.6rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem); }
.feature__body .eyebrow { display: block; margin-bottom: 1.1rem; }
.feature__body h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 300; }
.feature__body p { color: var(--muted); margin: 1.1rem 0; max-width: 44ch; }
.feature__body .textlink { margin-top: .4rem; }

/* ---------- Caption overlay (on room images) ---------- */

/* ---------- Menu food band ---------- */
.menu-shot { margin: clamp(2.8rem, 5.5vw, 4.5rem) 0 0; }
.menu-shot img { display: block; width: 100%; height: clamp(340px, 50vh, 540px); object-fit: cover; }
.menu-shot figcaption { max-width: 820px; margin-inline: auto; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--muted); padding: .85rem var(--gutter) 0; }
.menu-shot figcaption .han { color: var(--celadon); }
.menu-break { position: relative; overflow: hidden; max-width: 820px; margin: clamp(1.6rem, 4vw, 3.2rem) auto; }
.menu-break img { display: block; width: 100%; height: clamp(300px, 40vh, 420px); object-fit: cover; }
.menu-break figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.6rem, 5vw, 3rem) var(--gutter) clamp(1.3rem, 3vw, 2rem); display: flex; flex-direction: column; gap: .25rem; background: linear-gradient(0deg, rgba(20,14,9,0.78) 0%, rgba(20,14,9,0.30) 55%, rgba(20,14,9,0) 100%); }
.menu-break__kr { font-family: var(--kr); color: var(--celadon); font-size: clamp(.9rem, 2vw, 1.05rem); }
.menu-break__t { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 4vw, 2.6rem); font-weight: 400; color: var(--cream); line-height: 1.05; }
.menu-break__sub { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-lt); margin-top: .35rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .feature__media img, .food-duo .shot img, .atmos img { transition: none; }
  .food-duo figure:hover .shot img, .atmos:hover img { transform: none; }
}

/* ---------- Bilingual section marker (magazine + duality) ---------- */
.sect-label { display: flex; align-items: baseline; gap: .65rem; flex-wrap: wrap; margin-bottom: clamp(1.1rem, 2.6vw, 1.6rem); }
.sect-label .idx { font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--accent); }
.sect-label .kr { font-family: var(--kr); font-weight: 400; line-height: 1; font-size: clamp(1.2rem, 2.3vw, 1.6rem); color: var(--cream); }
.sect-label .en { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: .92rem; color: var(--muted); }
.sect-label .en::before { content: "·"; margin-right: .55rem; color: var(--line-2); }
.section--green .sect-label .en { color: rgba(239,231,216,0.72); }

/* ---------- Color & texture (dynamism) ---------- */
/* Quartzite gradient — gold · green · cream, from the veined stone */
/* quiet warm wash — mostly cream with a soft brass fade, no spectrum */
.grad-text {
  background: linear-gradient(100deg, var(--cream) 55%, #cba771 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* subtle film grain so the darks read rich, not flat */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* warm pool-of-light glow on key dark sections */
.glow { position: relative; }
.glow > * { position: relative; z-index: 1; }
.glow::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 22% 18%, rgba(200,154,88,0.13), transparent 60%);
}



/* dish / feature media color hints before photos land */
.t-green { background: linear-gradient(135deg, #2c3b31, #1a231d) !important; }

/* ---------- Audit follow-ups ---------- */
/* readable serif for running prose — mono stays on the menu, labels & UI */
.hero__tag, .story__body p, .head p, .feature__body p, .events__intro p, .faq__a {
  font-family: var(--serif); font-weight: 300; line-height: 1.55; letter-spacing: 0;
}
.story__body p, .events__intro p { font-size: 1.06rem; }
.head p, .feature__body p { font-size: 1.04rem; }
.hero__tag { font-size: 1.12rem; }

/* hero hours + tap-to-call */
.hero__meta { margin-top: 1.5rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; color: rgba(239,231,216,0.82); display: flex; gap: .4rem 1rem; justify-content: center; flex-wrap: wrap; }
.hero__meta a { color: var(--cream); border-bottom: 1px solid var(--accent-lt); padding-bottom: 1px; }
.hero__meta .sep { color: var(--accent-lt); }


/* FAQ */
.faq { border-top: 1px solid var(--line); margin-top: clamp(1.5rem,3vw,2.2rem); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--serif); font-weight: 400; font-size: clamp(1.08rem, 2.2vw, 1.32rem); color: var(--cream); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 1.25rem; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { color: var(--muted); padding: 0 0 1.3rem; max-width: 62ch; }
.faq__a a { color: var(--accent-lt); border-bottom: 1px solid var(--accent-lt); }

/* sticky menu jump-bar */
.menu-jump { position: sticky; top: 56px; z-index: 40; background: rgba(40,29,23,0.94); backdrop-filter: blur(12px); border-block: 1px solid var(--line); margin: 0 0 clamp(1.6rem, 3.5vw, 2.6rem); }
.menu-jump__row { display: flex; align-items: center; gap: 1.2rem; max-width: 1100px; margin-inline: auto; padding: .7rem var(--gutter); }
.menu-jump__inner { display: flex; gap: clamp(.7rem, 1.7vw, 1.35rem); overflow-x: auto; flex: 1; min-width: 0; scrollbar-width: none; padding-right: .35rem; }
.menu-jump__cta { flex-shrink: 0; font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); border: 1px solid var(--accent); padding: .55em 1.1em; white-space: nowrap; transition: background .25s var(--ease), color .25s var(--ease); }
.menu-jump__cta:hover { background: var(--accent); color: var(--dark); }
.menu-jump__inner::-webkit-scrollbar { display: none; }
.menu-tab { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--muted); white-space: nowrap; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.menu-tab:hover { color: var(--cream); }
.menu-tab.active { color: var(--cream); border-color: var(--accent); }

/* ---------- Food: signature dish + duo (captions below, no prices) ---------- */
.food-duo { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); }
.food-duo figure { margin: 0; }
.food-duo .shot { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--dark-2); }
.food-duo .shot img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.food-duo figure:hover .shot img { transform: scale(1.05); }
.food-cap { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; margin-top: 1rem; }
.food-cap h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.7vw, 1.75rem); color: var(--cream); }
.food-cap .han { font-family: var(--kr); color: var(--celadon); font-size: .82rem; }
.food-desc { font-family: var(--serif); font-weight: 300; font-style: italic; color: var(--muted); margin-top: .45rem; font-size: 1.04rem; line-height: 1.5; max-width: 54ch; }
@media (max-width: 640px) { .food-duo { grid-template-columns: 1fr; } }


/* full-bleed atmosphere image (interiors) */
.atmos { position: relative; overflow: hidden; }
.atmos img { display: block; width: 100%; height: clamp(340px, 44vw, 640px); object-fit: cover; transition: transform 2s var(--ease); }
.atmos--food img { height: clamp(400px, 48vw, 700px); object-position: center; }
.atmos--uni { margin-bottom: clamp(2.4rem, 4.5vw, 3.6rem); }
.atmos--uni img { height: clamp(600px, 66vw, 1008px); object-position: center; }
.atmos:hover img { transform: scale(1.04); }
.atmos figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(2rem, 5vw, 3rem) var(--gutter) clamp(1.1rem, 2.5vw, 1.6rem); font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--cream); background: linear-gradient(0deg, rgba(20,14,9,0.72), rgba(20,14,9,0)); }
.atmos figcaption .han { color: var(--celadon); margin-right: .45em; }

/* story chef credit (byline, not prose) */


/* ---------- Drink finder ---------- */
.picker { max-width: 660px; }
.picker [hidden] { display: none !important; }
.picker__progress { font-family: var(--mono); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.picker__step, .picker__result { animation: rise .5s var(--ease); }
.picker__q { font-family: var(--serif); font-weight: 300; font-size: clamp(1.4rem, 3.2vw, 2.1rem); color: var(--cream); margin-bottom: 1.3rem; }
.picker__opts { display: flex; flex-wrap: wrap; gap: .7rem; }
.picker__opts button { font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream); border: 1px solid var(--line-2); padding: .95em 1.5em; transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease); }
.picker__opts button:hover, .picker__opts button:focus-visible { background: var(--cream); color: var(--dark); border-color: var(--cream); transform: translateY(-2px); }
.picker__result .eyebrow { display: block; margin-bottom: 1rem; }
.picker__name { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 5.2vw, 3.1rem); color: var(--cream); line-height: 1; }
.picker__line { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--accent-lt); font-size: clamp(1.1rem, 2.4vw, 1.45rem); margin: 1rem 0 .4rem; }
.picker__desc { color: var(--muted); max-width: 46ch; }
.picker__price { font-family: var(--mono); font-weight: 700; color: var(--accent); margin-top: .6rem; }
.picker__foot { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; margin-top: 1.9rem; }
.picker__again { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--accent); padding-bottom: 3px; }
.picker__again:hover { color: var(--accent-lt); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .visit__grid, .events__grid, .feature__grid { grid-template-columns: 1fr; }
  .feature__media, .visit__media { min-height: 58vw; }
  .feature__media { order: -1; }
  .feature__body, .visit__body { padding: clamp(2rem, 8vw, 3rem) var(--gutter); }
  .menu-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .hero__actions, .visit__actions { width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Print (menu prints clean on white) ---------- */
@media print {
  .skip-link, .nav, .menu-jump, .hero__scroll, .picker, #drink-finder, .footer, .btn, .menu-section.center { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .page-hero { padding-top: 1rem; }
  .menu-section, .section--alt, .section { background: #fff !important; }
  .menu-section__head h2, .m-item__name, .m-item__price, .menu-sub, .menu-callout p, .menu-meta, .page-hero h1 { color: #111 !important; }
  .grad-text { -webkit-text-fill-color: #111 !important; color: #111 !important; background: none !important; }
  .m-item__desc, .menu-note, .m-item__name .han, .menu-section__head .han, .page-hero p { color: #555 !important; }
  .m-item { border-bottom: 1px dotted #bbb !important; }
  .menu-callout { border: 1px solid #aaa !important; box-shadow: none !important; }
  a { color: #111 !important; }
}
