/* ============================================================
   Lee's Korean BBQ — Woonamjung
   LUXURY v3 · "TASTYC" NAVY + AMBER
   Deep navy canvas, marigold accent, chunky offset-shadow buttons,
   Playfair Display 900 display type over Josefin Sans.
   ------------------------------------------------------------
   DESIGN TOKENS (the whole system — nothing outside this block)
   ============================================================ */
:root {
  /* --- navy canvas ladder --- */
  --navy-900: #10161f;   /* deepest: hero scrim, footer base, offset shadows */
  --navy-850: #141c28;   /* .alt section bands */
  --navy-800: #1a2331;   /* page canvas */
  --navy-700: #202b3b;   /* cards / panels */
  --navy-650: #273446;   /* raised card top edge */

  /* --- accent: amber / marigold --- */
  --amber:        #f9a826;
  --amber-bright: #ffc05a;
  --amber-deep:   #c97f10;
  --amber-ink:    #16202e;             /* text ON amber */
  --amber-line:   rgba(249, 168, 38, 0.32);
  --amber-faint:  rgba(249, 168, 38, 0.12);

  /* --- neutrals --- */
  --ink:      #ffffff;
  --ink-soft: #e8edf4;
  --muted:    #b8c2d0;   /* 8.78:1 on --navy-800 — the darkest text tone allowed */
  --faint:    #a3aebd;   /* 7.04:1 on --navy-800 — chrome only, never menu copy */
  --line:      rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.06);

  /* --- type --- */
  --display:  "Playfair Display", "Noto Serif KR", Georgia, serif;
  --serif-ko: "Noto Serif KR", "Playfair Display", serif;
  --body:     "Josefin Sans", "Noto Sans KR", -apple-system, "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  --body-ko:  "Noto Sans KR", "Josefin Sans", sans-serif;

  /* --- shape --- */
  --radius: 0px;              /* Tastyc is rectangular — no pills, no soft cards */
  --offset: 7px;              /* hard offset shadow distance */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: clip; }
body {
  background: var(--navy-800);
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
::selection { background: rgba(249, 168, 38, 0.38); color: var(--ink); }

.serif { font-family: var(--display); font-weight: 900; }
strong { font-weight: 600; color: var(--ink); }
.ko { font-family: var(--serif-ko); }

/* ---- the eyebrow: short amber dash, then Josefin 800 / 12px / 2px ---- */
.eyebrow,
.sec-head .kicker,
.hero-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--body);
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber); line-height: 1;
}
.eyebrow::before,
.sec-head .kicker::before,
.hero-kicker::before {
  content: ""; width: 34px; height: 3px; flex: none;
  background: var(--amber);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 22, 31, 0.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease;
}
.site-header.scrolled {
  background: rgba(16, 22, 31, 0.94);
  border-bottom-color: var(--line-soft);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand .brand-name {
  font-family: var(--display); font-weight: 900;
  font-size: 1.24rem; letter-spacing: 0.01em; color: var(--ink);
}
.brand .brand-sub {
  font-size: 10px; font-weight: 800; letter-spacing: 3px; color: var(--amber);
  text-transform: uppercase; white-space: nowrap; margin-top: 5px;
}
@media (max-width: 420px) { .brand .brand-sub { letter-spacing: 1.6px; } }

.main-nav { display: flex; gap: clamp(16px, 2.4vw, 32px); }
.main-nav a, .brand .brand-name, .nav-call { white-space: nowrap; }
.main-nav a {
  position: relative; padding: 6px 0;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.2s ease;
}
/* amber underline — the old site's nav signature */
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 3px; background: var(--amber); transition: right 0.28s ease;
}
.main-nav a:hover { color: var(--amber); }
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--amber); }

.nav-call {
  background: var(--amber); color: var(--amber-ink) !important;
  font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 2px;
  padding: 12px 22px; border-radius: var(--radius); white-space: nowrap;
  font-variant-numeric: tabular-nums;
  box-shadow: 4px 4px 0 0 var(--navy-900);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.nav-call:hover { background: var(--amber-bright); transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--navy-900); }
@media (max-width: 1040px) {
  .main-nav a { font-size: 11px; letter-spacing: 1.5px; }
  .site-header .wrap { gap: 12px; }
  .nav-call { padding: 11px 16px; letter-spacing: 1.5px; }
}
@media (max-width: 860px) { .brand .brand-name { font-size: 1.1rem; } .brand .brand-sub { letter-spacing: 2px; } }
@media (max-width: 760px) { .main-nav { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  filter: saturate(0.78) contrast(1.06) brightness(0.82);
  transform-origin: 60% 40%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero img.hero-bg { animation: slowburn 28s ease-out both; }
}
@keyframes slowburn { from { transform: scale(1.12); } to { transform: scale(1.0); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 90% at 28% 42%, rgba(16, 22, 31, 0.34), rgba(16, 22, 31, 0.80) 78%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.66) 0%, rgba(20, 28, 40, 0.38) 40%, var(--navy-800) 100%);
}
/* drifting ember specks, now amber */
.hero::before {
  content: ""; position: absolute; inset: -10% 0 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 22% 78%, rgba(255, 192, 90, 0.55), transparent 65%),
    radial-gradient(1.6px 1.6px at 64% 34%, rgba(255, 192, 90, 0.40), transparent 65%),
    radial-gradient(1.4px 1.4px at 84% 62%, rgba(249, 168, 38, 0.45), transparent 65%),
    radial-gradient(2.4px 2.4px at 41% 12%, rgba(249, 168, 38, 0.30), transparent 65%),
    radial-gradient(1.8px 1.8px at 8% 30%, rgba(255, 192, 90, 0.35), transparent 65%);
  background-size: 290px 340px, 380px 460px, 330px 390px, 420px 520px, 360px 430px;
  opacity: 0.5;
}
@media (prefers-reduced-motion: no-preference) { .hero::before { animation: embers 26s linear infinite; } }
@keyframes embers {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 26px -340px, -34px -460px, 20px -390px, -28px -520px, 36px -430px; }
}
.hero-inner { padding: 150px 0 120px; max-width: 720px; }
.hero-kicker { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1.06;
  letter-spacing: -0.01em; color: var(--ink);
}
.hero h1 .ko {
  display: block; font-size: 0.34em; color: var(--amber);
  margin-bottom: 18px; font-weight: 700; letter-spacing: 0.1em;
}
.hero p.lede {
  margin-top: 26px; font-size: 1.12rem; font-weight: 300;
  color: #d5dde8; max-width: 48ch; line-height: 1.8;
}
.hero-cta { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-facts {
  margin-top: 54px; display: flex; flex-wrap: wrap; gap: 12px 34px;
  font-size: 0.92rem; color: var(--muted); font-weight: 300;
}
.hero-facts span { display: inline-flex; align-items: center; gap: 11px; }
.hero-facts span::before { content: ""; width: 14px; height: 3px; background: var(--amber); flex: none; }

/* ---------- buttons : chunky, rectangular, hard offset shadow ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 17px 38px; border-radius: var(--radius); border: 0;
  font-family: var(--body); font-weight: 800; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--amber); color: var(--amber-ink);
  box-shadow: var(--offset) var(--offset) 0 0 var(--navy-900);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: -30%; width: 34%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg) translateX(-260%); pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .btn-primary::after { animation: cta-sheen 4.4s ease-in-out infinite; }
}
@keyframes cta-sheen {
  0%, 55%   { transform: skewX(-18deg) translateX(-260%); }
  80%, 100% { transform: skewX(-18deg) translateX(560%); }
}
.btn-primary:hover { background: var(--amber-bright); transform: translate(3px, 3px); box-shadow: 4px 4px 0 0 var(--navy-900); }
.btn-primary:active { transform: translate(var(--offset), var(--offset)); box-shadow: 0 0 0 0 var(--navy-900); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.30), var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.75);
}
.btn-ghost:hover {
  color: var(--amber);
  box-shadow: inset 0 0 0 2px var(--amber), 4px 4px 0 0 rgba(16, 22, 31, 0.75);
  transform: translate(3px, 3px);
}

/* ---------- section scaffolding ---------- */
section { padding: 104px 0; position: relative; }
.alt { background: var(--navy-850); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sec-head { margin-bottom: 60px; text-align: center; }
.sec-head .kicker { margin-bottom: 20px; }
.sec-head h2 {
  font-family: var(--display); font-size: clamp(2.1rem, 4.6vw, 3.1rem); font-weight: 900;
  color: var(--ink); line-height: 1.12; letter-spacing: -0.005em;
}
.sec-head h2 .ko {
  display: block; color: var(--amber); font-weight: 700;
  /* Hangul tracking kept modest (legibility pass); text-indent cancels the
     trailing letter-space so the word optically centres on the rule below */
  margin: 12px 0 0; font-size: 0.36em; letter-spacing: 0.14em; text-indent: 0.14em;
}
.sec-head p { color: var(--muted); margin: 22px auto 0; max-width: 58ch; font-size: 1.02rem; font-weight: 300; }
.sec-head h2::after {
  content: ""; display: block; width: 48px; height: 3px; margin: 26px auto 0;
  background: var(--amber);
}

/* ---------- menu : legibility-first ---------- */
#menu .wrap { max-width: 920px; }
.menu-group { margin-bottom: 84px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-head {
  display: flex; align-items: baseline; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 42px; position: relative; text-align: center;
}
.menu-group-head::before, .menu-group-head::after {
  content: ""; flex: 1; align-self: center; height: 2px; min-width: 24px;
  background: linear-gradient(90deg, transparent, var(--amber-line));
}
.menu-group-head::after { background: linear-gradient(90deg, var(--amber-line), transparent); }
.menu-group-head h3 {
  font-family: var(--display); font-size: 1.75rem; font-weight: 900;
  color: var(--ink); letter-spacing: 0;
}
.menu-group-head .ko {
  font-family: var(--body-ko); color: var(--amber);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em;
}
.menu-group-head .note { width: 100%; text-align: center; font-size: 0.9rem; color: var(--muted); }

.dishes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 60px; }
@media (max-width: 760px) { .dishes { grid-template-columns: 1fr; gap: 26px; } }
.dishes > li { padding: 10px 12px; margin: -10px -12px; border-radius: var(--radius); transition: background 0.3s ease; }
.dishes > li:hover { background: var(--amber-faint); }
/* `last baseline` puts the dot-leader + price on the ENGLISH dish-name line
   (the last line of .dish-name) rather than the Korean line above it. */
.dish-line { display: flex; align-items: baseline; align-items: last baseline; gap: 12px; }
/* item name: Josefin 600 @ 1.12rem, pure white — 15.8:1 on navy */
.dish-name {
  font-family: var(--body); font-weight: 600; font-size: 1.12rem;
  color: var(--ink); letter-spacing: 0.01em; line-height: 1.35;
}
.dish-name .ko {
  display: block; font-family: var(--body-ko); color: var(--amber);
  font-weight: 500; margin: 0 0 3px; font-size: 0.95rem; letter-spacing: 0.04em;
}
.dish-dots {
  flex: 1; border-bottom: 2px dotted var(--amber-line);
  transform: translateY(-5px); min-width: 22px;
}
.dish-price {
  font-family: var(--body); font-weight: 700; color: var(--amber);
  white-space: nowrap; font-variant-numeric: tabular-nums;
  font-size: 1.08rem; letter-spacing: 0.02em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.dishes > li:hover .dish-price { color: var(--amber-bright); text-shadow: 0 0 18px rgba(249, 168, 38, 0.4); }
/* description: weight 400 (never 300) @ 0.98rem, --muted — 8.78:1 on navy */
.dish-desc {
  font-family: var(--body); font-weight: 400; font-style: normal;
  color: var(--muted); margin-top: 7px; max-width: 52ch;
  font-size: 0.98rem; line-height: 1.7;
}
.dish-list { font-family: var(--body); font-weight: 400; font-size: 0.98rem; color: var(--muted); margin-top: 10px; line-height: 1.8; }
.dish-list strong { color: var(--ink); font-weight: 600; }
.menu-fineprint { margin-top: 10px; font-size: 0.92rem; color: var(--faint); }

/* set / combo cards */
.set-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.set-card {
  background: var(--navy-700);
  border: 0; border-top: 3px solid var(--amber); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 13px;
  position: relative; box-shadow: var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.55);
}
.set-card h4 {
  font-family: var(--display); font-size: 1.45rem; font-weight: 900; color: var(--ink);
}
.set-card h4 .ko { display: block; font-family: var(--body-ko); color: var(--amber); font-weight: 700; margin: 0 0 5px; font-size: 0.68em; letter-spacing: 0.03em; }
.set-card .set-price {
  font-family: var(--display); font-size: 2.1rem; font-weight: 900; color: var(--amber);
}
.set-card .set-sub { font-size: 0.94rem; font-weight: 400; color: var(--muted); line-height: 1.65; }
.set-card ul { list-style: none; font-size: 0.98rem; font-weight: 400; color: var(--muted); }
.set-card ul li { padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.set-card ul li:last-child { border-bottom: 0; }
.set-card ul li .ko { font-family: var(--body-ko); color: var(--amber); margin-right: 9px; font-size: 0.88em; font-weight: 500; }
.set-card .tag {
  align-self: flex-start; font-family: var(--body);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber-ink); background: var(--amber); border-radius: var(--radius); padding: 6px 12px;
}

/* ---------- AYCE ---------- */
.ayce-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; align-items: stretch; }
.ayce-card {
  position: relative; background: var(--navy-700);
  border: 0; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.6), inset 0 3px 0 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ayce-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 18px 0 0 rgba(16, 22, 31, 0.7), 0 0 44px -18px rgba(249, 168, 38, 0.45);
}
.ayce-card::before {
  content: ""; position: absolute; top: -60%; bottom: -60%; left: -10%; width: 42%;
  z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 192, 90, 0.12), transparent);
  transform: rotate(16deg) translateX(-300%);
}
@media (prefers-reduced-motion: no-preference) {
  .ayce-card::before { animation: card-glint 8s ease-in-out infinite; }
  .ayce-card { animation: card-float 5.2s ease-in-out infinite alternate; }
  .ayce-card:nth-child(2) { animation-delay: -1.7s, 0.9s; }
  .ayce-card:nth-child(3) { animation-delay: -3.4s, 1.8s; }
  .ayce-card:nth-child(2)::before { animation-delay: 0.9s; }
  .ayce-card:nth-child(3)::before { animation-delay: 1.8s; }
}
@keyframes card-float { from { translate: 0 0; } to { translate: 0 -7px; } }
@keyframes card-glint {
  0%, 62%   { transform: rotate(16deg) translateX(-300%); }
  86%, 100% { transform: rotate(16deg) translateX(560%); }
}
.ayce-card img {
  height: 150px; width: 100%; object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.62);
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}
.ayce-card .ayce-body {
  padding: 6px 28px 30px; display: flex; flex-direction: column; gap: 9px; flex: 1; text-align: center;
}
.ayce-card h4 {
  font-family: var(--body); font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--amber);
}
.ayce-card h4::after {
  content: ""; display: block; width: 34px; height: 3px; margin: 14px auto 6px; background: var(--amber);
}
.ayce-card .ayce-price {
  font-family: var(--display); font-size: 2.8rem; font-weight: 900; color: var(--ink); line-height: 1.05;
}
.ayce-card .ayce-price small {
  font-size: 11px; color: var(--muted); font-weight: 800; font-family: var(--body);
  letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 8px;
}
.ayce-card .kids { font-size: 0.98rem; font-weight: 400; color: var(--muted); }
.ayce-card .ayce-link {
  margin-top: auto; padding-top: 22px; font-family: var(--body);
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber); transition: color 0.2s ease;
}
.ayce-card .ayce-link:hover { color: var(--amber-bright); }
.ayce-card.featured { box-shadow: var(--offset) var(--offset) 0 0 var(--amber), inset 0 3px 0 0 rgba(255, 255, 255, 0.05); }
.ayce-card.featured:hover { box-shadow: 12px 18px 0 0 var(--amber-deep), 0 0 44px -18px rgba(249, 168, 38, 0.5); }

.ayce-rules {
  margin-top: 48px; background: var(--navy-700);
  border: 0; border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 30px 34px;
}
.ayce-rules h4 {
  display: flex; width: fit-content; align-items: center; gap: 14px;
  font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
}
.ayce-rules h4::before { content: ""; width: 34px; height: 3px; background: var(--amber); flex: none; }
.ayce-rules ul { list-style: none; font-size: 0.98rem; font-weight: 400; color: var(--muted); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; }
@media (max-width: 700px) { .ayce-rules ul { grid-template-columns: 1fr; } }
.ayce-rules li { display: flex; align-items: baseline; gap: 12px; }
.ayce-rules li::before { content: ""; width: 10px; height: 3px; background: var(--amber); flex: none; transform: translateY(-4px); }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid img {
  border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; width: 100%;
  filter: saturate(0.82) contrast(1.06) brightness(0.86);
  transition: filter 0.35s ease;
}
.gallery-grid figure:hover img { filter: saturate(1) contrast(1.04) brightness(1); }
.gallery-grid figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:first-child img { height: 100%; aspect-ratio: auto; }
figure { position: relative; }
figcaption {
  position: absolute; left: 0; bottom: 14px;
  font-family: var(--body); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  background: var(--amber); color: var(--amber-ink);
  padding: 7px 14px; border-radius: var(--radius);
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:first-child { grid-column: span 2; grid-row: auto; }
}

/* ---------- about / testimonials ---------- */
#about .sec-head { text-align: left; }
#about .sec-head h2::after { margin-left: 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-grid figure { position: relative; }
.about-grid img { border-radius: var(--radius); filter: saturate(0.88) contrast(1.05) brightness(0.92); }
.about-grid figure::after {
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 3px solid var(--amber); border-radius: var(--radius); z-index: -1;
}
.about-copy p { color: var(--muted); margin-top: 20px; font-size: 1.04rem; font-weight: 300; line-height: 1.8; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 76px; }
.quote {
  background: var(--navy-700); border: 0; border-top: 3px solid var(--amber); border-radius: var(--radius);
  padding: 34px 30px 30px; position: relative;
  box-shadow: var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.55);
}
.quote::before {
  content: "\201C"; position: absolute; top: 10px; left: 22px;
  font-family: var(--display); font-weight: 900; font-size: 3.8rem; line-height: 1;
  color: rgba(249, 168, 38, 0.30);
}
.quote h5 {
  font-family: var(--display); font-weight: 900; color: var(--amber);
  font-size: 1.22rem; margin-bottom: 14px; padding-top: 16px;
}
.quote p { font-size: 0.98rem; font-weight: 400; color: var(--muted); line-height: 1.75; }
.quote cite {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; font-style: normal;
  font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
}

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }
.visit-card {
  background: var(--navy-700); border: 0; border-top: 3px solid var(--amber);
  border-radius: var(--radius); padding: 38px 36px; position: relative;
  box-shadow: var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.55);
}
.visit-card h3 {
  font-family: var(--display); font-size: 1.5rem; font-weight: 900; margin-bottom: 24px;
  color: var(--ink); position: relative; padding-bottom: 18px;
}
.visit-card h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--amber), rgba(249, 168, 38, 0.06));
  transform-origin: left center;
}
.visit-card h3 .ko { font-family: var(--body-ko); color: var(--amber); font-weight: 700; margin-left: 12px; font-size: 0.64em; letter-spacing: 0.05em; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
.hours-table td { padding: 14px 0; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-weight: 400; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:last-child {
  text-align: right; color: var(--ink); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.hours-note { margin-top: 18px; color: var(--muted); font-weight: 400; font-size: 0.96rem; }
.visit-card .big-phone {
  font-family: var(--display); font-size: 2.1rem; font-weight: 900; color: var(--amber);
  display: inline-block; margin: 8px 0 16px;
  font-variant-numeric: tabular-nums; transition: color 0.2s ease;
}
.visit-card .big-phone:hover { color: var(--amber-bright); }
.visit-card address { font-style: normal; color: var(--muted); line-height: 1.75; font-size: 1rem; font-weight: 400; }
.visit-card address a:hover { color: var(--amber); }
.visit-links { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: transparent; box-shadow: inset 0 0 0 2px var(--line); border-radius: var(--radius);
  padding: 11px 20px; font-family: var(--body);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft);
  transition: box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.chip:hover { background: var(--amber); color: var(--amber-ink); box-shadow: inset 0 0 0 2px var(--amber); }

/* ---------- dark Vegas map ---------- */
.map-band {
  position: relative; margin-top: 0; overflow: hidden; width: 100%;
  border-radius: 0; background: var(--navy-850);
  height: 460px; isolation: isolate;
}
@media (max-width: 760px) { .map-band { height: 320px; } }
.map-band > picture, .map-band > picture > img { display: block; width: 100%; height: 100%; }
.map-band > img, .map-band > picture > img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  /* pull the basemap's blue back toward the page navy so it sits in the palette */
  filter: saturate(0.62) brightness(0.86) contrast(1.04);
}
/* gradient fades top/bottom into the navy canvas */
.map-band::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg,
    var(--navy-800) 0%, rgba(26, 35, 49, 0.5) 9%, rgba(26, 35, 49, 0) 22%,
    rgba(26, 35, 49, 0) 58%, rgba(26, 35, 49, 0) 100%);
}
/* glowing amber pin, dead centre = 6820 Spring Mountain Rd */
.map-pin {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(249, 168, 38, 0.22), 0 0 30px 8px rgba(249, 168, 38, 0.55);
}
.map-pin::after {
  content: ""; position: absolute; inset: -11px; border-radius: 50%;
  border: 2px solid var(--amber); opacity: 0.8;
}
@media (prefers-reduced-motion: no-preference) {
  .map-pin::after { animation: pin-pulse 2.8s ease-out infinite; }
}
@keyframes pin-pulse {
  0%   { transform: scale(0.55); opacity: 0.85; }
  70%  { transform: scale(2.2);  opacity: 0; }
  100% { transform: scale(2.2);  opacity: 0; }
}
.map-actions { position: absolute; left: max(20px, calc((100% - 1120px) / 2 + 20px)); bottom: 30px; z-index: 4; }
@media (max-width: 760px) { .map-actions { left: 50%; transform: translateX(-50%); bottom: 34px; } }
.map-credit {
  position: absolute; right: max(14px, calc((100% - 1120px) / 2 + 20px)); bottom: 10px; z-index: 4;
  font-family: var(--body); font-size: 11px; font-weight: 400; letter-spacing: 0.02em;
  color: var(--faint);
}
@media (max-width: 760px) { .map-credit { right: 50%; transform: translateX(50%); bottom: 8px; } }

/* ---------- footer ---------- */
footer {
  position: relative; isolation: isolate;
  border-top: 3px solid var(--amber);
  padding: 96px 0 48px;
  background:
    linear-gradient(180deg, rgba(16, 22, 31, 0.955) 0%, rgba(16, 22, 31, 0.985) 70%, var(--navy-900) 100%),
    url("../img/spread.jpg") center 40% / cover no-repeat;
  color: var(--faint);
}
.foot-orn { position: absolute; top: 0; left: 0; right: 0; height: 0; text-align: center; }
.foot-orn span {
  display: inline-block; transform: translateY(-50%);
  background: var(--amber); color: var(--amber-ink);
  font-size: 0.6rem; line-height: 1; padding: 6px 20px;
}
.foot-mark { text-align: center; margin-bottom: 66px; }
.foot-mark .foot-ko {
  display: block; font-family: var(--serif-ko); color: var(--amber); font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.2rem); letter-spacing: 0.32em; text-indent: 0.32em; margin-bottom: 20px;
}
.foot-mark .foot-name {
  display: block; font-family: var(--display); color: var(--ink); font-weight: 900;
  font-size: clamp(2.3rem, 7.4vw, 5rem); line-height: 1.05; letter-spacing: -0.01em;
}
.foot-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 52px 8px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 42px; text-align: center; padding: 44px 0; } }
.foot-col h5 {
  /* must stay block-level: an inline-flex h5 lets .foot-addr flow onto the
     same line and wrap around the eyebrow dash */
  display: flex; align-items: center; gap: 14px;
  font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 20px;
}
.foot-col h5::before { content: ""; width: 34px; height: 3px; background: var(--amber); flex: none; }
@media (max-width: 760px) { .foot-col h5 { justify-content: center; } }
.foot-col { font-size: 1rem; font-weight: 300; line-height: 1.8; }
.foot-addr { color: var(--ink-soft); display: inline-block; transition: color 0.2s ease; }
.foot-addr:hover { color: var(--amber); }
.foot-hours { margin-top: 12px; color: var(--muted); font-size: 0.94rem; font-variant-numeric: tabular-nums; }
.foot-phone {
  display: inline-block; font-family: var(--display); color: var(--amber);
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 900;
  font-variant-numeric: tabular-nums; transition: color 0.2s ease;
}
.foot-phone:hover { color: var(--amber-bright); }
.foot-social { list-style: none; }
.foot-social li { padding: 3px 0; }
.foot-social a {
  font-family: var(--body); color: var(--muted);
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s ease, letter-spacing 0.25s ease;
}
.foot-social a:hover { color: var(--amber); letter-spacing: 3px; }
.foot-signoff {
  text-align: center; margin: 58px 0 50px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.foot-signoff .ko {
  color: var(--amber); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.3em; text-indent: 0.3em;
}
.foot-signoff-en {
  font-family: var(--display); font-weight: 400; font-style: italic;
  color: var(--ink-soft); font-size: 1.15rem;
}
.foot-legal {
  display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line-soft); padding-top: 26px;
  font-size: 0.84rem; font-weight: 300; color: var(--faint);
}
footer a { font-variant-numeric: tabular-nums; }
.foot-legal a:hover { color: var(--amber); }

/* ---------- sticky mobile call bar ---------- */
.call-bar { display: none; }
@media (max-width: 760px) {
  .call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--amber); color: var(--amber-ink);
    font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 2px;
    text-transform: uppercase;
    justify-content: center; align-items: center; gap: 8px;
    padding: 16px 10px calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 -14px 40px -14px rgba(249, 168, 38, 0.5);
    font-variant-numeric: tabular-nums;
  }
  body { padding-bottom: 64px; }
  section { padding: 76px 0; }
  .hero-inner { padding: 110px 0 84px; }
  .sec-head { margin-bottom: 44px; }
  .menu-group { margin-bottom: 64px; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .map-actions .btn { width: auto; }
}

/* ---------- staggered scroll-reveal (unchanged behaviour) ---------- */
.anim .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim .reveal.in { opacity: 1; transform: none; }

.anim .sec-head.reveal h2::after { transform: scaleX(0); transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s; }
.anim .sec-head.reveal.in h2::after { transform: scaleX(1); }
.anim .sec-head.reveal .kicker { letter-spacing: 0.5px; transition: letter-spacing 1.3s cubic-bezier(0.22, 1, 0.36, 1); }
.anim .sec-head.reveal.in .kicker { letter-spacing: 2px; }
.anim .menu-group-head.reveal::before,
.anim .menu-group-head.reveal::after { transform: scaleX(0); transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s; }
.anim .menu-group-head.reveal::before { transform-origin: right center; }
.anim .menu-group-head.reveal::after { transform-origin: left center; }
.anim .menu-group-head.reveal.in::before,
.anim .menu-group-head.reveal.in::after { transform: scaleX(1); }
.anim .dishes > li.reveal .dish-dots {
  transform: translateY(-5px) scaleX(0); transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: inherit;
}
.anim .dishes > li.reveal.in .dish-dots { transform: translateY(-5px) scaleX(1); }
.anim .visit-card.reveal h3::after { transform: scaleX(0); transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s; }
.anim .visit-card.reveal.in h3::after { transform: scaleX(1); }
.anim footer .wrap.reveal .foot-ko { letter-spacing: 0.14em; text-indent: 0.14em; transition: letter-spacing 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, text-indent 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s; }
.anim footer .wrap.reveal.in .foot-ko { letter-spacing: 0.32em; text-indent: 0.32em; }
/* map band reveal */
.anim .map-band.reveal { opacity: 0; transform: translateY(26px); }
.anim .map-band.reveal.in { opacity: 1; transform: none; }

/* ---------- dish photo buttons + lightbox ---------- */
.dishes > li.has-photo { display: flex; gap: 18px; align-items: flex-start; }
.dish-body { flex: 1; min-width: 0; }
.dish-photo { flex: none; display: block; width: 104px; height: 104px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: 4px 4px 0 var(--navy-900); cursor: zoom-in; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dish-photo:hover img, .dish-photo:focus-visible img { transform: scale(1.08); }
@media (max-width: 520px) { .dishes > li.has-photo { gap: 12px; } .dish-photo { width: 80px; height: 80px; } }
.gallery-grid img, .ayce-link { cursor: zoom-in; }
.lb {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 14, 20, 0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 56px 64px; animation: lbIn 0.25s ease;
}
.lb[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-fig { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-fig img { max-width: 100%; max-height: calc(100vh - 150px); width: auto; height: auto; box-shadow: 8px 8px 0 var(--navy-900); border: 1px solid var(--line); background: #fff; }
.lb-fig figcaption { position: static; background: none; padding: 0; box-shadow: none; color: var(--ink); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; text-align: center; }
.lb-close, .lb-nav {
  position: absolute; background: var(--amber); color: var(--amber-ink); border: 0; cursor: pointer;
  font-family: var(--body); font-weight: 600; line-height: 1; box-shadow: 4px 4px 0 var(--navy-900);
}
.lb-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 28px; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 44px; height: 56px; font-size: 34px; }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-close:hover, .lb-nav:hover { background: var(--amber-bright); }
.lb.single .lb-nav { display: none; }
@media (max-width: 640px) { .lb { padding: 64px 12px 24px; } .lb-nav { top: auto; bottom: 12px; transform: none; } }

/* ---------- footer social icons ---------- */
.foot-icons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.foot-icon {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); border: 1px solid var(--amber-line); background: var(--navy-800);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.foot-icon:hover, .foot-icon:focus-visible {
  color: var(--amber-ink); background: var(--amber); border-color: var(--amber);
  transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--navy-900);
}
@media (max-width: 800px) { .foot-icons { justify-content: center; } }
/* set-meal / BBQ combo photo across the top of the card */
.set-card .set-photo { width: 100%; height: auto; aspect-ratio: 3 / 2; margin: 0 0 18px; box-shadow: none; border: 0; }

/* ---------- beverages: photo, name + price on one row, one item per line ---------- */
.bev-grid { grid-template-columns: repeat(2, 1fr); }
.bev-card { gap: 0; }
.bev-card .set-photo.bev-photo { aspect-ratio: 16 / 7; margin: 0 0 22px; }
.bev-card .bev-photo img { object-fit: contain; padding: 8px 0; }
.bev-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.bev-head h4 { margin: 0; }
.bev-head .set-price { margin: 0; font-size: 1.5rem; white-space: nowrap; }
.bev-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.bev-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); font-weight: 400; font-size: 0.98rem; }
.bev-strong li { font-weight: 600; }
.bev-size { color: var(--amber); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.bev-size.ko { font-family: var(--body-ko); font-size: 0.86rem; letter-spacing: 0.02em; text-transform: none; font-weight: 500; }
.bev-sub { margin: 20px 0 10px; color: var(--amber); font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.bev-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.bev-chips li { padding: 5px 12px; border: 1px solid var(--amber-line); color: var(--ink-soft); font-size: 0.85rem; }
.bev-note { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 760px) { .bev-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .bev-list { grid-template-columns: 1fr; } }

/* full-bleed map: section above loses its bottom padding, map runs edge to edge into the footer */
#visit { padding-bottom: 0; }
.map-band { margin-top: 96px; }

/* soju flavor tags: real breathing room */
.bev-card .bev-chips { gap: 10px; }
.bev-card .bev-chips li { padding: 9px 18px; line-height: 1.2; border: 1px solid var(--amber-line); font-size: 0.9rem; letter-spacing: 0.02em; }
.foot-credit { opacity: 0.75; }
.foot-credit { opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.foot-credit strong { font-weight: 600; color: inherit; }
.foot-credit:hover, .foot-credit:focus-visible { opacity: 1; color: var(--amber); }

/* ============================================================
   PRESS PAGE
   ============================================================ */
.press-page { display: block; }
.press-hero { padding: 150px 0 40px; text-align: center; background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.press-hero .kicker { margin-bottom: 18px; }
.press-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; color: var(--ink); }
.press-hero h1 .ko { display: block; margin-top: 12px; font-family: var(--serif-ko); font-size: 0.34em; font-weight: 500; color: var(--amber); letter-spacing: 0.1em; }
.press-hero p { max-width: 58ch; margin: 22px auto 0; color: var(--muted); }
.press-sec { padding: 84px 0; }
.press-grid { display: grid; gap: 28px; }
.press-grid.two { grid-template-columns: repeat(2, 1fr); }
.press-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .press-grid.three { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .press-grid.two { grid-template-columns: 1fr; } }
.press-card {
  background: var(--navy-700); border-top: 3px solid var(--amber);
  box-shadow: var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.55); display: flex; flex-direction: column;
}
.press-body, .press-text { padding: 26px 28px 30px; }
.press-text { gap: 10px; transition: transform 0.2s, box-shadow 0.2s; }
.press-text:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 0 var(--navy-900); }
.press-card h3 { font-family: var(--display); font-weight: 900; font-size: 1.35rem; line-height: 1.25; color: var(--ink); margin: 10px 0 8px; }
.press-card p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.press-src { color: var(--amber) !important; font-weight: 800; font-size: 0.75rem !important; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.press-tag { align-self: flex-start; font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber-ink); background: var(--amber); padding: 5px 11px; }
.press-body .press-tag { display: inline-block; }
.press-link { margin-top: auto; padding-top: 14px; color: var(--amber); font-weight: 800; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; }
.press-card:hover .press-link, .press-link:hover { color: var(--amber-bright); }
.yt, .press-card iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #000; }
.yt { position: relative; padding: 0; cursor: pointer; overflow: hidden; }
.yt img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.yt:hover img { transform: scale(1.04); }
.yt-play { position: absolute; left: 50%; top: 50%; width: 76px; height: 54px; margin: -27px 0 0 -38px; background: var(--amber); box-shadow: 4px 4px 0 var(--navy-900); }
.yt-play::after { content: ""; position: absolute; left: 50%; top: 50%; margin: -11px 0 0 -7px; border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent var(--amber-ink); }
.press-grid.print { max-width: 860px; margin: 0 auto; }
.press-print { display: block; background: #fff; border: 1px solid var(--line); box-shadow: var(--offset) var(--offset) 0 0 rgba(16, 22, 31, 0.55); cursor: zoom-in; overflow: hidden; }
.press-print img { width: 100%; height: auto; transition: transform 0.5s ease; }
.press-print:hover img { transform: scale(1.03); }
.press-contact { text-align: center; }
.press-contact h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); margin: 16px 0 0; }
.press-contact h2 .ko { display: block; margin-top: 8px; font-size: 0.4em; color: var(--amber); font-family: var(--serif-ko); letter-spacing: 0.1em; font-weight: 500; }
.press-contact p { color: var(--muted); margin: 18px auto 0; }
.press-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.press-hero .kicker, .press-contact .kicker { display: inline-flex; align-items: center; gap: 14px; font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); line-height: 1; }
.press-hero .kicker::before, .press-contact .kicker::before { content: ""; width: 34px; height: 3px; flex: none; background: var(--amber); }
.main-nav a.active { color: var(--amber); }

/* ---------- share row ---------- */
.foot-share { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; padding: 34px 0 0; position: relative; }
.foot-share-label { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); }
.foot-share .foot-icons { margin: 0; justify-content: center; }
.foot-share button.foot-icon { cursor: pointer; font: inherit; }
.foot-share .foot-icon[hidden] { display: none; }
.share-toast { flex-basis: 100%; text-align: center; min-height: 1.4em; font-size: 0.85rem; color: var(--amber-bright); opacity: 0; transition: opacity 0.25s; }
.share-toast.on { opacity: 1; }

/* ============================================================
   PRESS v2 — cinematic hero, press-release feature, video hierarchy
   ============================================================ */
.press-hero-v {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 620px; height: 100svh; max-height: 860px; display: flex; align-items: center;
}
.press-hero-v .ph-poster, .press-hero-v .ph-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; z-index: -2;
}
.press-hero-v .ph-poster { filter: saturate(0.9) brightness(0.9); animation: phDrift 28s ease-in-out infinite alternate; }
.press-hero-v.has-video .ph-poster { animation: none; }
.press-hero-v .ph-video { z-index: -2; opacity: 0; transition: opacity 1.2s ease; }
.press-hero-v.has-video .ph-video { opacity: 1; }
@keyframes phDrift { from { transform: scale(1.02); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .press-hero-v .ph-poster { animation: none; } }
.press-hero-v::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(78% 88% at 26% 46%, rgba(16, 22, 31, 0.34), rgba(16, 22, 31, 0.62) 76%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.60) 0%, rgba(20, 28, 40, 0.16) 42%, var(--navy-800) 100%);
}
.ph-inner { padding: 170px 20px 120px; max-width: 1120px; width: 100%; }
.ph-inner .kicker {
  display: inline-flex; align-items: center; gap: 14px; font-family: var(--body); font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--amber); line-height: 1; margin-bottom: 22px;
}
.ph-inner .kicker::before { content: ""; width: 34px; height: 3px; flex: none; background: var(--amber); }
.ph-inner h1 { font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1.06; color: var(--ink); max-width: 720px; }
.ph-inner h1 .ko { display: block; font-family: var(--serif-ko); font-size: 0.34em; font-weight: 500; color: var(--amber); letter-spacing: 0.06em; margin-bottom: 14px; line-height: 1.4; }
.ph-lede { max-width: 54ch; margin-top: 24px; color: var(--ink-soft); font-size: 1.05rem; }
.ph-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 34px; }
.ph-facts li { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); }
.ph-facts li::before { content: ""; width: 18px; height: 3px; background: var(--amber); }
.ph-pause {
  position: absolute; right: max(20px, calc((100% - 1120px) / 2 + 20px)); bottom: 34px; width: 44px; height: 44px;
  background: rgba(16, 22, 31, 0.55); border: 1px solid var(--amber-line); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ph-pause[hidden] { display: none; }
.ph-pause:hover, .ph-pause:focus-visible { box-shadow: 4px 4px 0 var(--navy-900); transform: translate(-2px, -2px); }
.ph-pause span { width: 12px; height: 14px; border-left: 4px solid var(--amber); border-right: 4px solid var(--amber); }
.ph-pause[aria-pressed="true"] span { width: 0; height: 0; border: 0; border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent var(--amber); }
@media (max-width: 720px) { .press-hero-v { height: 85svh; min-height: 540px; } .ph-inner { padding: 130px 20px 80px; } }

/* press release feature */
.pr-sec { padding: 96px 0; }
.pr-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 56px; align-items: start; }
@media (max-width: 900px) { .pr-grid { grid-template-columns: 1fr; gap: 36px; } .pr-photo { order: -1; } }
.pr-copy .kicker { display: inline-flex; align-items: center; gap: 14px; font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); line-height: 1; }
.pr-copy .kicker::before { content: ""; width: 34px; height: 3px; flex: none; background: var(--amber); }
.pr-copy h2 { font-family: var(--display); font-weight: 900; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); margin: 20px 0 16px; }
.pr-dateline { font-size: 13px !important; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--faint) !important; margin-bottom: 22px; }
.pr-copy p { font-size: 1.02rem; line-height: 1.8; color: var(--muted); max-width: 62ch; margin-bottom: 18px; }
.pr-cta { margin-top: 30px; }
.pr-photo { margin: 0; position: sticky; top: 110px; border-top: 3px solid var(--amber); box-shadow: var(--offset) var(--offset) 0 0 var(--navy-900); }
.pr-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 42% 50%; display: block; }
@media (max-width: 900px) { .pr-photo { position: static; } .pr-photo img { aspect-ratio: 3 / 2; } }
.pr-quote { border-left: 3px solid var(--amber); padding: 6px 0 6px 30px; margin: 56px 0 0; font-family: var(--display); font-weight: 400; font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.45; color: var(--ink); max-width: 40ch; }
.pr-quote cite { display: block; margin-top: 18px; font-family: var(--body); font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); }
.pr-synd { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: baseline; }
.pr-synd h4 { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); flex: none; }
.pr-synd ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 34px; }
.pr-synd li { font-family: var(--display); font-weight: 900; font-size: 1.05rem; color: var(--ink-soft); opacity: 0.82; }

/* videos: featured + rail */
.vid-feature { margin-bottom: 28px; }
.vid-feature .press-body { padding: 26px 32px 30px; }
.vid-feature h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.vid-feature .yt, .vid-feature iframe { aspect-ratio: 16 / 9; }
.vid-rail .press-card h3 { font-size: 1.2rem; }
.vid-rail.press-grid.three { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .vid-rail.press-grid.three { grid-template-columns: 1fr; } }
.promo-vid { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; object-fit: cover; }

/* shared hero background video (assets/js/hero-video.js) */
.hv { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; z-index: -2;
  opacity: 0; transition: opacity 1.2s ease; filter: saturate(0.9) contrast(1.04) brightness(0.9); }
.has-video > .hv { opacity: 1; }
.hero.has-video img.hero-bg { animation: none; }
.hero .ph-pause { z-index: 3; bottom: 34px; }
@media (max-width: 760px) { .hero .ph-pause { bottom: 84px; } }
.foot-seal { display: block; width: 190px; height: auto; margin: 0 auto 26px; opacity: 0.95; }
@media (max-width: 760px) { .foot-seal { width: 150px; } }

/* ---------- share menu (button + popover) ---------- */
.share-wrap { position: relative; display: inline-block; }
.share-btn { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.share-pop {
  position: absolute; top: calc(100% + 12px); left: 0; z-index: 70; width: max-content; max-width: min(92vw, 340px);
  display: flex; flex-wrap: wrap; gap: 10px; padding: 16px; background: var(--navy-700);
  border-top: 3px solid var(--amber); box-shadow: var(--offset) var(--offset) 0 0 var(--navy-900);
}
.share-pop[hidden] { display: none; }
.share-wrap.up .share-pop { top: auto; bottom: calc(100% + 12px); }
.share-pop .share-toast { flex-basis: 100%; text-align: center; min-height: 1.4em; font-size: 0.85rem; color: var(--amber-bright); opacity: 0; transition: opacity 0.25s; }
.share-pop .share-toast.on { opacity: 1; }
.share-pop button.foot-icon { cursor: pointer; font: inherit; }
.map-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ph-share { margin-top: 28px; }
.pr-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 760px) { .map-actions { justify-content: center; } .share-wrap.up .share-pop { left: 50%; transform: translateX(-50%); } }

/* ---------- A.Y.C.E. rules v2: illustration + numbered tiles ---------- */
.rules-v2 { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr); gap: 20px 44px; align-items: center; padding: 38px 40px; overflow: visible; }
.rules-v2 .rules-art { width: 100%; max-width: 380px; height: auto; margin: -8px auto; filter: drop-shadow(0 18px 24px rgba(10, 14, 20, 0.45)); }
.rules-v2 h4 { margin-bottom: 22px; }
.rules-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; counter-reset: none; }
.rules-grid li { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--line); }
.rules-grid li::before { content: none !important; }
.rule-n { grid-row: 1 / span 2; font-family: var(--display); font-weight: 900; font-size: 1.6rem; line-height: 1; color: var(--amber); min-width: 2ch; }
.rule-t { font-family: var(--display); font-weight: 900; font-size: 1.15rem; line-height: 1.2; color: var(--ink); }
.rule-d { grid-column: 2; margin-top: 4px; font-size: 0.93rem; font-weight: 400; line-height: 1.55; color: var(--muted); }
@media (max-width: 900px) { .rules-v2 { grid-template-columns: 1fr; padding: 30px 26px; } .rules-v2 .rules-art { max-width: 260px; margin-bottom: 0; } }
@media (max-width: 620px) { .rules-grid { grid-template-columns: 1fr; } }

/* ============ menu photos: designer ruling — square corners, whole dish visible, 3:2 frame ============ */
.dish-photo, .dish-tile { flex: none; display: block; width: 144px; height: 96px; }
.dish-photo { padding: 5px; background: #fff; }
.dish-photo img { object-fit: contain; }
.dish-photo:hover img, .dish-photo:focus-visible img { transform: scale(1.06); }
.dish-tile { overflow: hidden; border: 1px solid var(--line); box-shadow: 4px 4px 0 var(--navy-900); background: var(--navy-900); }
.dish-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dishes > li.has-photo { align-items: center; }
@media (max-width: 1000px) { .dishes { grid-template-columns: 1fr; gap: 26px; } }
@media (max-width: 520px) { .dish-photo, .dish-tile { width: 96px; height: 64px; } .dish-photo { padding: 3px; } }
.set-card .set-photo { border: 1px solid var(--line); box-shadow: 4px 4px 0 var(--navy-900); aspect-ratio: 3 / 2; }
.set-card .set-tile { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; margin: 0 0 18px; border: 1px solid var(--line); box-shadow: 4px 4px 0 var(--navy-900); }
/* rules panel: lattice logo art (portrait) */
.rules-v2 .rules-art { max-width: 200px; filter: none; margin: 0 auto; opacity: 0.95; }
/* about callout: bibimbap illustration */
.about-callout { display: flex; align-items: center; gap: 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-callout img { width: 132px; height: auto; flex: none; filter: drop-shadow(0 12px 16px rgba(10,14,20,.45)); transition: transform 0.35s ease; }
.about-callout:hover img { transform: rotate(-6deg) scale(1.05); }
.about-callout span { color: var(--muted); font-size: 0.98rem; line-height: 1.5; }
.about-callout strong { display: block; font-family: var(--display); font-weight: 900; font-size: 1.3rem; color: var(--ink); margin-bottom: 4px; }
.about-callout em { font-style: normal; color: var(--amber); }

.dish-photo { padding: 0; }
.dish-photo img { object-fit: contain; background: #fff; }
@media (max-width: 520px) { .dish-photo { padding: 0; } }

/* food photos: square frame, whole dish visible (user call) — designed BBQ tiles stay 3:2 */
.dish-photo { width: 112px; height: 112px; padding: 0; }
.dish-photo img { object-fit: contain; }
@media (max-width: 520px) { .dish-photo { width: 88px; height: 88px; } }

/* ============ menu jump pills ============ */
#menu .menu-group { scroll-margin-top: 150px; }
.menu-pills {
  position: sticky; top: 76px; z-index: 40; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
  margin: 0 -20px 44px; padding: 12px 20px; background: rgba(26, 35, 49, 0.94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft);
}
.menu-pills::-webkit-scrollbar { display: none; }
.menu-pills a {
  flex: none; display: inline-flex; align-items: baseline; gap: 8px; padding: 9px 16px; white-space: nowrap;
  border: 1px solid var(--amber-line); color: var(--ink-soft); font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu-pills a em { font-style: normal; font-family: var(--body-ko); font-weight: 500; letter-spacing: 0.02em; text-transform: none; font-size: 0.86rem; color: var(--amber); }
.menu-pills a:hover, .menu-pills a.active { background: var(--amber); border-color: var(--amber); color: var(--amber-ink); }
.menu-pills a:hover em, .menu-pills a.active em { color: var(--amber-ink); }
@media (min-width: 1000px) { .menu-pills { justify-content: center; } }

/* ============ A.Y.C.E. menu dialogs ============ */
.am { position: fixed; inset: 0; z-index: 180; display: flex; align-items: center; justify-content: center; padding: 24px; }
.am[hidden] { display: none; }
.am-backdrop { position: absolute; inset: 0; background: rgba(10, 14, 20, 0.86); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.am-panel {
  position: relative; width: min(980px, 100%); max-height: min(92vh, 100%); display: flex; flex-direction: column;
  background: var(--navy-700); border-top: 4px solid var(--amber); box-shadow: 10px 10px 0 var(--navy-900);
}
.am-head { position: relative; padding: 26px 34px 0; border-bottom: 1px solid var(--line); background: var(--navy-650); flex: none; }
.am-tier { display: flex; align-items: center; gap: 22px; padding-right: 56px; }
.am-letter { font-family: var(--display); font-weight: 900; font-size: 4.2rem; line-height: 0.9; color: var(--amber); }
.am-head h3 { font-family: var(--display); font-weight: 900; font-size: 1.7rem; color: var(--ink); line-height: 1.1; }
.am-price { margin-top: 6px; font-weight: 700; color: var(--amber); font-size: 1.25rem; }
.am-price small { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.am-price span { margin-left: 16px; font-weight: 400; color: var(--ink-soft); font-size: 0.95rem; }
.am-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 0; background: var(--amber); color: var(--amber-ink); font-size: 26px; line-height: 1; cursor: pointer; box-shadow: 3px 3px 0 var(--navy-900); }
.am-close:hover { background: var(--amber-bright); }
.am-pills { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin: 20px -34px 0; padding: 0 34px 16px; }
.am-pills::-webkit-scrollbar { display: none; }
.am-pills a { flex: none; padding: 8px 14px; border: 1px solid var(--amber-line); color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.am-pills a:hover, .am-pills a.active { background: var(--amber); border-color: var(--amber); color: var(--amber-ink); }
.am-body { overflow-y: auto; padding: 8px 34px 34px; -webkit-overflow-scrolling: touch; }
.am-sec { padding-top: 28px; }
.am-sec h4 { display: flex; align-items: baseline; gap: 14px; padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 900; font-size: 1.45rem; color: var(--ink); }
.am-sec h4 em { font-style: normal; font-family: var(--body-ko); font-weight: 500; font-size: 0.72em; color: var(--amber); letter-spacing: 0.02em; }
.am-sec h5 { margin: 20px 0 6px; font-size: 12px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--amber); }
.am-sec h5 small { font-weight: 600; color: var(--muted); letter-spacing: 1px; }
.am-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.am-list li { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.am-ko { font-family: var(--body-ko); font-weight: 600; color: var(--amber-bright); font-size: 0.98rem; letter-spacing: 0.005em; }
.am-en { font-weight: 400; color: var(--ink); font-size: 1rem; }
.am-list .am-en { flex: 1 1 auto; }
.am-tag { font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--amber-line); color: var(--amber); white-space: nowrap; }
.am-tag.hot { color: #ff8a6b; border-color: rgba(255, 138, 107, 0.45); }
.am-sauces { list-style: none; counter-reset: s; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.am-sauces li { counter-increment: s; display: flex; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.am-sauces li::before { content: counter(s); font-family: var(--display); font-weight: 900; color: var(--amber); min-width: 1.2ch; }
.am-note { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }
.am-sec.has-cab { position: relative; }
.am-cab { position: absolute; right: 0; top: 22px; width: 56px; height: auto; }
.am-legal { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.78rem; line-height: 1.6; }
@media (max-width: 720px) {
  .am { padding: 0; align-items: flex-end; }
  .am-panel { max-height: 94vh; }
  .am-head { padding: 20px 20px 0; } .am-pills { margin: 16px -20px 0; padding: 0 20px 14px; }
  .am-body { padding: 4px 20px 28px; }
  .am-list, .am-sauces { grid-template-columns: 1fr; }
  .am-letter { font-size: 3.2rem; } .am-head h3 { font-size: 1.3rem; }
  .am-price span { display: block; margin: 4px 0 0; }
}
/* rules panel: Certified Angus Beef badge */
.rules-v2 .rules-art { max-width: 190px; }

/* ============ one hero height for every page (press-page proportions) ============ */
.hero, .press-hero-v { min-height: clamp(620px, 100svh, 860px); height: auto; max-height: none; display: flex; align-items: center; }
.hero > .wrap { width: 100%; }
.hero-inner { padding-top: 150px; padding-bottom: 110px; }
@media (max-width: 720px) { .hero, .press-hero-v { min-height: clamp(540px, 88svh, 860px); } }
.am .am-sec { padding: 26px 0 0; }

/* A.Y.C.E. card buttons (real <button>s now): reset browser default so they match the design */
button.ayce-link { appearance: none; -webkit-appearance: none; background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; cursor: pointer; width: 100%; text-align: center; font: inherit; }
.ayce-card button.ayce-link { margin-top: auto; padding: 18px 0 2px; font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); line-height: 1.4; }
.ayce-card button.ayce-link:hover, .ayce-card button.ayce-link:focus-visible { color: var(--amber-bright); }
/* rules panel art stack: Angus badge on top, Woonamjung lattice below */
.rules-art-stack { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.rules-v2 .rules-cab { max-width: 150px; height: auto; }
.rules-v2 .rules-lattice { max-width: 110px; height: auto; opacity: 0.95; }
/* dialog: food photos beside items, printed-menu link */
.am-list li.has-th { display: grid; grid-template-columns: 56px 1fr auto; column-gap: 14px; align-items: center; }
.am-th { width: 56px; height: 56px; background: #fff; box-shadow: 3px 3px 0 var(--navy-900); display: block; grid-row: 1 / span 2; }
.am-list li.has-th .am-ko { grid-column: 2; grid-row: 1; align-self: end; }
.am-list li.has-th .am-en { grid-column: 2; grid-row: 2; align-self: start; }
.am-list li.has-th .am-tag { grid-column: 3; grid-row: 1 / span 2; }
.am-print { margin-top: 26px; text-align: center; }
.am-print a { display: inline-block; padding: 12px 20px; border: 1px solid var(--amber-line); color: var(--amber); font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.am-print a:hover { background: var(--amber); color: var(--amber-ink); }

/* ============ jump pills: everything visible at once — wrap, centered, no side-scrolling ============ */
.menu-pills {
  position: static; top: auto; overflow: visible; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 48px; padding: 0 0 28px; background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom: 1px solid var(--line-soft);
}
.menu-pills a { padding: 9px 14px; }
@media (max-width: 600px) { .menu-pills { gap: 8px; } .menu-pills a { padding: 8px 12px; font-size: 11px; letter-spacing: 1.3px; } .menu-pills a em { font-size: 0.8rem; } }
.am-pills { flex-wrap: wrap; overflow: visible; margin: 18px 0 0; padding: 0 0 16px; gap: 8px; }
@media (max-width: 720px) { .am-pills { margin: 14px 0 0; padding: 0 0 12px; } .am-pills a { padding: 7px 11px; } }
.set-card .tag.tag-wide { align-self: stretch; }

/* ================= launch fixes (designer walk-through) ================= */
/* 1. menu rows must never push prices off the edge */
.dishes > li { min-width: 0; }
.dish-line { flex-wrap: wrap; row-gap: 2px; }
.dish-name { min-width: 0; overflow-wrap: anywhere; }
.dish-price { flex: none; }
.dish-body { min-width: 0; }
/* 3. visible keyboard focus everywhere */
:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--amber-bright); outline-offset: 3px; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--amber); color: var(--amber-ink); padding: 12px 18px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 12px; }
.skip-link:focus { top: 12px; }
/* 4. mobile navigation */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--amber-line); background: transparent; cursor: pointer; flex: none; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--amber); transition: transform 0.2s, opacity 0.2s, top 0.2s; }
.nav-toggle span:nth-child(1) { top: 15px; } .nav-toggle span:nth-child(2) { top: 22px; } .nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.mobile-nav { display: none; }
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-header .wrap { gap: 10px; }
  .nav-call { display: none; }
  .brand { margin-right: auto; }
  .mobile-nav:not([hidden]) { display: flex; flex-direction: column; background: rgba(16, 22, 31, 0.98); border-top: 1px solid var(--line-soft); border-bottom: 3px solid var(--amber); }
  .mobile-nav a { padding: 18px 20px; font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line-soft); min-height: 56px; display: flex; align-items: center; }
  .mobile-nav a:hover, .mobile-nav a:active { background: var(--amber); color: var(--amber-ink); }
}
/* 5. call bar: SVG phone, not an emoji */
.call-bar { display: none; }
@media (max-width: 760px) { .call-bar { display: flex; align-items: center; justify-content: center; gap: 10px; } }
/* 6. press promo video: same facade as the YouTube cards */
.yt.promo { position: relative; }
.promo-vid { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }
/* 7. gallery: last photo spans two columns so row three has no hole */

@media (max-width: 720px) { .gallery-grid figure:last-child:nth-child(5) { grid-column: auto; } }
/* 8. Hangul: minimal tracking everywhere (wide tracking splits syllables) */
.ko, .menu-group-head .ko, .sec-head h2 .ko, .sec-head h1 .ko, .brand-sub .ko, .hero h1 .ko, .ph-inner h1 .ko, .visit-card h3 .ko,
.set-card h4 .ko, .foot-signoff .ko, .foot-mark .foot-ko, .menu-pills a em, .press-contact h2 .ko, .press-hero h1 .ko { letter-spacing: 0.02em; text-indent: 0; }
.anim footer .wrap.reveal .foot-ko, .anim footer .wrap.reveal.in .foot-ko { letter-spacing: 0.02em; text-indent: 0; transition: opacity 1.2s ease; }
.brand-sub .ko { font-size: 0.94em; }
/* 9. tap targets */
.ayce-card button.ayce-link { min-height: 48px; }
.foot-credit { display: inline-flex; align-items: center; min-height: 44px; }
.brand { min-height: 44px; justify-content: center; }
.chip, .btn { min-height: 44px; }
/* 11. the whole A.Y.C.E. card opens its menu */
.ayce-card { cursor: pointer; }
.gallery-grid img { cursor: zoom-in; }
/* 12. headings moved to h3: keep the same look */
.quote h3 { font-family: var(--display); font-weight: 900; }
.foot-col h3 { display: flex; align-items: center; gap: 14px; font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.foot-col h3::before { content: ""; width: 34px; height: 3px; background: var(--amber); flex: none; }
@media (max-width: 760px) { .foot-col h3 { justify-content: center; } }
/* 13. one hero rhythm on both pages */
.ph-inner { padding: 150px 20px 110px; }
.quote h3 { color: var(--amber); font-size: 1.22rem; margin-bottom: 14px; padding-top: 16px; }
/* "Try the bibimbap" lands with the hot-stone and regular bibimbap rows both on screen */
#dish-bibimbap { scroll-margin-top: 250px; }
@media (max-width: 1000px) { #dish-bibimbap { scroll-margin-top: 130px; } }
.foot-credit { gap: 0.32em; }

/* dish photos: back to the first-import look — the old site's own hand-centred crops, filling the square.
   Long-board dishes (marked .wide) show the whole picture instead of being cropped. */
.dish-photo { width: 112px; height: 112px; padding: 0; background: #fff; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.dish-photo.wide img { object-fit: contain; }
@media (max-width: 520px) { .dish-photo { width: 88px; height: 88px; } }
/* menu intro on one line on desktop */
#menu .sec-head p { max-width: none; white-space: normal; }
@media (min-width: 1000px) { #menu .sec-head p { white-space: nowrap; } }
.press-grid.print.six { grid-template-columns: repeat(3, 1fr); max-width: 1000px; gap: 22px; }
@media (max-width: 720px) { .press-grid.print.six { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.dish-photo.wide img { filter: brightness(1.04) contrast(1.02); }

/* match the first-import look: every food photo fills a 104px square (BBQ tiles keep their own 3:2 frame) */
.dish-photo { width: 104px; height: 104px; padding: 0; overflow: hidden; }
.dish-photo img, .dish-photo.wide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; filter: none; }
@media (max-width: 520px) { .dish-photo { width: 80px; height: 80px; } }
.set-card .tag .tag-rice { display: inline-block; vertical-align: -3px; margin-right: 8px; }
.set-card .tag.tag-wide { line-height: 1.9; }
.bev-photo-static { display: block; width: 100%; aspect-ratio: 16 / 7; margin: 0 0 22px; background: #fff; border: 1px solid var(--line); box-shadow: 4px 4px 0 var(--navy-900); cursor: default; }
.bev-photo-static img { width: 100%; height: 100%; object-fit: contain; padding: 8px 0; }

/* gallery: 6 photos = big feature (2x2) + 2 stacked, then a clean row of 3 — no holes */
.gallery-grid figure:last-child:nth-child(6) { grid-column: auto; }
.gallery-grid figure { align-self: start; }
.gallery-grid figure:first-child { align-self: stretch; }

/* shown only when the owners have hidden prices (server-injected) */
.price-banner { background: var(--amber); color: var(--amber-ink); text-align: center; padding: 12px 20px; font-size: 0.95rem; font-weight: 600; position: relative; z-index: 60; }
.price-banner a { color: inherit; font-weight: 800; text-decoration: underline; }
html[data-prices="hidden"] .site-header { top: 0; }
html[data-prices="hidden"] .dish-dots, html[data-prices="hidden"] .am-price { display: none; }

/* mobile polish: directions button on one line; gallery's last photo spans the row (no orphan) */
.map-actions .btn { white-space: nowrap; line-height: 1.2; }
@media (max-width: 720px) {
  .gallery-grid figure:last-child:nth-child(6) { grid-column: span 2; }
  .gallery-grid figure:last-child:nth-child(6) img { aspect-ratio: 16 / 9; }
}

/* tighter description line spacing on menu items */
.dish-desc { line-height: 1.4; margin-top: 4px; }

/* menu rows: price always stays on the name's line; long names wrap inside their own column */
.dish-line { flex-wrap: nowrap; }
.dish-name { flex: 0 1 auto; min-width: 0; overflow-wrap: break-word; }
.dish-dots { min-width: 10px; }
.dish-price { flex: none; margin-left: auto; }
/* Korean sub-label in the contact heading stays on one line */
.visit-card h3 .ko { white-space: nowrap; }
/* scroll-to-top */
.to-top { position: fixed; right: 18px; bottom: 22px; z-index: 90; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--amber); color: var(--amber-ink); border: 0; cursor: pointer; box-shadow: 4px 4px 0 var(--navy-900); transition: transform .15s, background .2s; }
.to-top[hidden] { display: none; }
.to-top:hover { background: var(--amber-bright); transform: translateY(-2px); }
@media (max-width: 760px) { .to-top { bottom: 84px; right: 14px; } }
@media (max-width: 520px) { .visit-card h3 { font-size: 1.32rem; } .visit-card h3 .ko { margin-left: 8px; font-size: 0.7em; } }

/* two-size prices (M / L, S / L): on small phones sit on their own line, flush right, like every other price */
@media (max-width: 479px) {
  .dish-line:has(.dish-price-multi) { flex-wrap: wrap; }
  .dish-line:has(.dish-price-multi) .dish-dots { display: none; }
  .dish-price-multi { flex-basis: 100%; text-align: right; margin-left: 0; }
}
