/* ============================================================
   GNEZDO / 둥지 — Restaurant site
   Black + orange palette, refined serif + clean sans
   ============================================================ */

:root {
  --bg: #0a0807;
  --bg-2: #131110;
  --bg-3: #1c1816;
  --line: #2a2522;
  --line-2: #3a342f;
  --ink: #f5ece0;
  --ink-soft: #c9bca9;
  --ink-mute: #8a7e6e;
  --accent: #c99514;       /* Pantone 1245 EC — deep gold */
  --accent-2: #e3b34a;     /* brighter glow tone */
  --accent-deep: #8e6608;  /* darker brown-gold for outlines */
  --gold: #e8d5a8;       /* cream-gold from logo */
  --brown: #5a3b25;      /* sign brown */

  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --kor:  "Noto Serif KR", "Noto Sans KR", serif;

  --maxw: 1320px;
}

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

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ------------ Layout utils ------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }

/* ------------ Typography ------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(56px, 9vw, 140px); line-height: 0.92; font-weight: 500; }
h2 { font-size: clamp(40px, 5vw, 76px); line-height: 1.0; }
h3 { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.15; }

.kor { font-family: var(--kor); font-weight: 400; }

.subtle { color: var(--ink-soft); }
.mute { color: var(--ink-mute); }

/* ------------ Buttons ------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn--solid {
  background: var(--accent);
  color: #1a0e05;
  border-color: var(--accent);
}
.btn--solid:hover { background: var(--accent-2); border-color: var(--accent-2); color: #1a0e05; }
.btn--ghost { background: transparent; }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10, 8, 7, 0.92);
  backdrop-filter: blur(14px);
  padding-top: 14px;
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav__brand {
  display: flex; align-items: center; gap: 14px;
}
.nav__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav__mark svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 12px rgba(232, 144, 40, 0.4));
}
.nav__name {
  display: flex; flex-direction: column; line-height: 1;
}
.nav__name b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.nav__name span {
  font-family: var(--kor);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after {
  content: "";
  position: absolute; left: 50%; bottom: -8px;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ============================================================
   CLOSED BADGE — shown in place of phone when restaurant is shut
   ============================================================ */
.closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--bg-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.2;
}
.closed-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d44e3c;
  box-shadow: 0 0 0 0 rgba(212, 78, 60, 0.6);
  animation: closedPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes closedPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 78, 60, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(212, 78, 60, 0); }
}
.closed-badge__main {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.closed-badge__sub {
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* nav variant: compact, on dark */
.closed-badge--nav .closed-badge__sub { display: none; }

/* block variant: used in contacts list — looks like a small banner */
.closed-badge--block {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(212, 78, 60, 0.06);
  border-color: rgba(212, 78, 60, 0.25);
}
.closed-badge--block .closed-badge__main {
  font-size: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.closed-badge--block .closed-badge__dot {
  position: absolute;
  margin-top: 7px;
}
.closed-badge--block {
  padding-left: 30px;
  position: relative;
}
.closed-badge--block .closed-badge__dot {
  position: absolute;
  left: 14px;
  top: 16px;
}

/* footer variant: minimal, fits in the link list */
.closed-badge--footer {
  padding: 4px 10px;
  font-size: 11px;
  background: transparent;
  border-color: rgba(212, 78, 60, 0.35);
}
.closed-badge--footer .closed-badge__main {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.closed-badge--footer .closed-badge__sub {
  font-size: 11px;
}
.footer__closed { list-style: none; }

/* Sub-bar under nav: address · status · delivery */
.nav__sub {
  margin-top: 14px;
  padding: 10px 0 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: opacity 0.25s, padding 0.25s, margin 0.25s, max-height 0.3s;
  overflow: hidden;
  max-height: 60px;
}
.nav--scrolled .nav__sub {
  margin-top: 10px;
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-top-color: transparent;
}
.nav__sub__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}
a.nav__sub__item:hover { color: var(--accent); }
.nav__sub__item svg { color: var(--accent); }
.nav__sub__dot {
  color: var(--ink-mute);
  opacity: 0.5;
  font-size: 14px;
}
.nav__sub__item--status { color: var(--ink); }
.nav__sub__dot-live {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: livePulse 2.4s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(232, 119, 34, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(232, 119, 34, 0.10), transparent 60%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 220px);
}
.hero__left { position: relative; }
.hero__kor-bg {
  position: absolute;
  top: -120px; left: -40px;
  font-family: var(--kor);
  font-size: 320px;
  line-height: 0.9;
  color: rgba(232, 119, 34, 0.05);
  letter-spacing: -0.04em;
  pointer-events: none;
  font-weight: 700;
  user-select: none;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero h1 {
  margin: 0 0 24px;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--accent);
  font-weight: 400;
}
.hero h1 .ampersand {
  font-family: var(--kor);
  color: var(--accent);
  font-style: normal;
  font-size: 0.6em;
  vertical-align: 0.12em;
  margin-left: 0.05em;
  font-weight: 400;
}
.hero__lede {
  max-width: 540px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 40px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__right {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.hero__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero__right::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,7,0.6));
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  max-width: 80%;
}
.hero__caption small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Solo hero (no right photo) — text on left + logo mark on right */
.hero--solo {
  text-align: left;
}
.hero__solo {
  position: relative;
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__text { max-width: 720px; }
.hero--solo h1 {
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
}
.hero--solo .hero__kor-bg {
  top: -80px;
  left: auto;
  right: -60px;
  font-size: clamp(280px, 38vw, 520px);
  color: rgba(232, 119, 34, 0.06);
}
.hero__brand-mark {
  display: block;
  flex-shrink: 0;
  position: relative;
  animation: heroLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.15s;
}
.hero__brand-mark::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(232, 144, 40, 0.32) 0%, rgba(232, 144, 40, 0.12) 35%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}
.hero__brand-mark img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
@keyframes heroLogoIn {
  0% { opacity: 0; transform: translateY(20px) rotate(-4deg) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

/* Tablet: shrink the logo */
@media (max-width: 1100px) {
  .hero__brand-mark img { width: 320px !important; height: auto !important; }
}
@media (max-width: 900px) {
  .hero__solo {
    gap: 24px;
    min-height: auto;
    align-items: center;
  }
  .hero__brand-mark img { width: 200px !important; height: auto !important; }
}
@media (max-width: 640px) {
  .hero__solo { gap: 16px; }
  .hero__brand-mark img { width: 110px !important; }
  .hero__brand-mark::before {
    inset: -50%;
    background: radial-gradient(circle, rgba(232, 144, 40, 0.5) 0%, rgba(232, 144, 40, 0.2) 30%, transparent 60%);
  }
}
@media (max-width: 380px) {
  .hero__brand-mark img { width: 88px !important; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

/* ============================================================
   MARQUEE / RUNNING STRIP
   ============================================================ */
.strip {
  background: var(--accent);
  color: #1a0e05;
  overflow: hidden;
  border-top: 1px solid #b8590f;
  border-bottom: 1px solid #b8590f;
}
.strip__track {
  display: flex;
  gap: 64px;
  padding: 18px 0;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.strip__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.strip__item::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1a0e05;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT (split: photo + text)
   ============================================================ */
.about {
  background: var(--bg);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about__photo-tag {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 14px;
  background: rgba(10,8,7,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.about__text { max-width: 520px; }
.about__text h2 { margin: 24px 0 28px; }
.about__text h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.about__text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat__lbl {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   PYANSE — timing notice
   ============================================================ */
.pyanse {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.pyanse::before {
  content: "편수";
  position: absolute;
  font-family: var(--kor);
  font-size: clamp(220px, 32vw, 480px);
  color: var(--bg-3);
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  letter-spacing: -0.04em;
}
.pyanse__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pyanse__left h2 {
  margin: 24px 0 32px;
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 0.98;
}
.pyanse__left h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.pyanse__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 18px;
}
.pyanse__lede--strong {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.pyanse__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pyanse__card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 30px;
  transition: border-color 0.25s ease;
}
.pyanse__card:hover { border-color: var(--line-2); }
.pyanse__card--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #c45f15 100%);
  border-color: transparent;
  color: #1a0e05;
}
.pyanse__card__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.pyanse__card__when {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.pyanse__card--accent .pyanse__card__when { color: #1a0e05; }
.pyanse__card__what {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pyanse__card--accent .pyanse__card__what { color: rgba(26,14,5,0.7); }
.pyanse__card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.pyanse__card--accent p { color: #2a1a0a; }

/* order block */
.pyanse__order {
  background: var(--bg-3);
  border: 1px solid var(--accent-deep);
  border-radius: 4px;
  padding: 24px 26px 22px;
  margin-top: 4px;
  position: relative;
}
.pyanse__order::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(201,149,20,0.10), transparent 60%);
}
.pyanse__order__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  position: relative;
}
.pyanse__order__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.pyanse__order__price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.pyanse__order__price small {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.pyanse__stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px;
}
.pyanse__stepper__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.pyanse__stepper__btn:hover {
  background: var(--accent);
  color: #1a0e05;
}
.pyanse__stepper__qty {
  min-width: 36px;
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.pyanse__order__add {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  background: var(--accent);
  color: #1a0e05;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  position: relative;
}
.pyanse__order__add:hover { background: var(--accent-2); }
.pyanse__order__add:active { transform: translateY(1px); }
.pyanse__order__add__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}
.pyanse__order__add .arr {
  display: inline-block;
  transition: transform 0.2s ease;
}
.pyanse__order__add:hover .arr { transform: translateX(4px); }
.pyanse__order__incart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-size: 13px;
  color: var(--ink-soft);
  position: relative;
}
.pyanse__order__incart button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
}
.pyanse__order__incart button:hover { color: var(--accent-2); }

.pyanse__note {
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 0;
  letter-spacing: 0.02em;
}
.pyanse__note .kor {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.sig {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.sig__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.sig__head h2 { max-width: 720px; }
.sig__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.sig__head p { max-width: 360px; color: var(--ink-soft); margin: 0; font-size: 16px; }

.sig__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.dish-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.dish-card__media {
  aspect-ratio: 4/3;
  background: #000;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: block;
  width: 100%;
  border: 0;
}
.dish-card__media--clickable {
  cursor: zoom-in;
}
.dish-card__zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(10, 8, 7, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.85) translateY(-4px);
  transition: opacity 0.2s, transform 0.25s;
  pointer-events: none;
  z-index: 2;
}
.dish-card:hover .dish-card__zoom { opacity: 1; transform: scale(1) translateY(0); }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.dish-card:hover .dish-card__media img { transform: scale(1.06); }

.dish-card__body {
  padding: 28px 24px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: start;
}
.dish-card__name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.1;
}
.dish-card__sub {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  margin-top: -4px;
}
.dish-card__price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.dish-card__price small {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
  margin-right: 8px;
  letter-spacing: 0.1em;
}
.dish-card__desc {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 6px;
}

/* ============================================================
   MENU (interactive tabs)
   ============================================================ */
.menu {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu__head { text-align: center; margin-bottom: 48px; }
.menu__head .eyebrow { justify-content: center; }
.menu__head h2 { margin: 16px 0 0; }
.menu__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.menu__head .kor {
  display: block;
  margin-top: 14px;
  color: var(--ink-mute);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  position: sticky;
  top: 96px;
  z-index: 30;
  background: rgba(23, 24, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.menu__tab {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.menu__tab small {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0;
  text-transform: none;
}
.menu__tab:hover { color: var(--ink); border-color: var(--line-2); }
.menu__tab--active {
  background: var(--accent);
  color: #1a0e05;
  border-color: var(--accent);
}
.menu__tab--active small { color: rgba(26,14,5,0.6); }

.menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.menu-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
  transition: padding 0.25s, background 0.25s;
}
.menu-row:hover { padding-left: 12px; }
.menu-row__thumb {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  position: relative;
  padding: 0;
  display: block;
}
.menu-row__thumb--clickable {
  cursor: zoom-in;
  transition: transform 0.25s, border-color 0.25s;
}
.menu-row__thumb--clickable:hover {
  border-color: var(--accent);
  transform: scale(1.06);
}
.menu-row__thumb--clickable:hover .menu-row__thumb__zoom {
  opacity: 1;
  transform: scale(1);
}
.menu-row__thumb__zoom {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.menu-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-row__thumb--placeholder {
  background:
    repeating-linear-gradient(45deg, var(--bg-3) 0 6px, var(--bg-2) 6px 12px);
  display: grid; place-items: center;
  font-family: var(--kor);
  font-size: 22px;
  color: var(--ink-mute);
}
.menu-row__info { min-width: 0; }
.menu-row__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.menu-row__name .kor {
  font-family: var(--kor);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.menu-row__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.menu-row__price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  white-space: nowrap;
  display: flex; align-items: baseline; gap: 10px;
}
.menu-row__price small {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.menu-row__badge {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 8px;
  vertical-align: middle;
}

.menu__foot {
  text-align: center;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.menu__foot p { color: var(--ink-mute); margin: 0 0 18px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
   VISIT (location + hours)
   ============================================================ */
.visit {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.visit__col {
  padding: 64px 56px;
  border: 1px solid var(--line);
}
.visit__col + .visit__col { border-left: 0; }
.visit__col--orange {
  background: linear-gradient(135deg, var(--accent) 0%, #c45f15 100%);
  color: #1a0e05;
  border: 0;
}
.visit__col--orange .eyebrow { color: #1a0e05; }
.visit__col--orange .eyebrow::before { background: #1a0e05; }
.visit__col h2 { margin: 16px 0 28px; }
.visit__col h2 em { font-style: italic; font-weight: 400; }
.visit__col--orange h2 em { color: #1a0e05; opacity: 0.8; }
.visit__col p { font-size: 17px; line-height: 1.6; margin: 0 0 12px; }
.visit__col--orange p { color: #1a0e05; }

.hours-table {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}
.hours-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 6px;
}
.hours-row span:first-child { letter-spacing: 0.04em; }
.hours-row span + span {
  font-family: var(--serif);
  font-weight: 500;
}
.hours-row--head {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  padding: 0 14px 8px;
  border-radius: 0;
  border-bottom: 1px solid rgba(26, 14, 5, 0.3);
  margin-bottom: 4px;
}
.hours-row--head span + span {
  font-family: var(--sans);
  font-weight: 700;
}
.hours-row--today {
  background: #1a0e05;
  color: var(--accent);
}
.hours-row--today span:first-child::after {
  content: "сегодня";
  display: inline-block;
  margin-left: 10px;
  background: var(--accent);
  color: #1a0e05;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  vertical-align: middle;
}

.visit__contacts { display: grid; gap: 22px; margin-top: 36px; }
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-row span {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}
.visit__col--orange .contact-row { border-bottom-color: rgba(26,14,5,0.18); }
.visit__col--orange .contact-row small { color: rgba(26,14,5,0.65); }

/* Reservation mini-form */
.reserve {
  margin-top: 32px;
  padding: 20px;
  background: rgba(26, 14, 5, 0.12);
  border: 1px solid rgba(26, 14, 5, 0.25);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.reserve label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(26,14,5,0.7);
}
.reserve select, .reserve input {
  font: inherit; font-family: var(--serif); font-size: 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(26,14,5,0.25);
  border-radius: 2px;
  padding: 10px 12px;
  color: #1a0e05;
}
.reserve select:focus, .reserve input:focus { outline: 2px solid #1a0e05; outline-offset: 1px; }
.reserve__btn {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 16px;
  background: #1a0e05;
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.reserve__btn:hover { background: #2a1a0c; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.footer__brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer__brand-wrap img {
  filter: drop-shadow(0 0 24px rgba(232, 144, 40, 0.3));
}
.footer h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--ink-soft); font-size: 14px; }
.footer ul a:hover { color: var(--accent); }
.footer__brand {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 12px;
}
.footer__brand .kor { color: var(--accent); margin-left: 10px; font-size: 0.55em; vertical-align: 0.18em; }
.footer__tag { color: var(--ink-soft); font-size: 14px; max-width: 280px; }
.footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   CART
   ============================================================ */
.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a0e05;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}
.nav__cart:hover { background: var(--accent-2); }
.nav__cart svg { width: 16px; height: 16px; }
.nav__cart__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1a0e05;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.nav__cart--empty { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.nav__cart--empty:hover { border-color: var(--accent); color: var(--accent); }
.nav__cart--empty .nav__cart__count { display: none; }

/* Add button on menu rows */
.menu-row { position: relative; }
.menu-row__add {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  color: var(--ink-soft);
  display: grid; place-items: center;
  margin-left: 16px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.menu-row__add:hover { background: var(--accent); color: #1a0e05; border-color: var(--accent); transform: scale(1.05); }
.menu-row__add.in-cart {
  background: var(--accent);
  color: #1a0e05;
  border-color: var(--accent);
}
.menu-row__add .count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: #1a0e05;
  color: var(--accent);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
}

.menu-row__right { display: flex; align-items: center; }

/* "Pop" animation when an item is added */
@keyframes pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
.menu-row__add.pop { animation: pop 0.35s ease; }

/* Stepper (− qty +) when item is in cart on a menu row */
.menu-row__stepper {
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--accent);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--accent);
}
.menu-row__step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a0e05;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s;
}
.menu-row__step:hover { background: rgba(26, 14, 5, 0.12); }
.menu-row__step--minus { font-size: 22px; line-height: 1; }
.menu-row__step__qty {
  min-width: 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: #1a0e05;
  padding: 0 2px;
}
.menu-row__step.pop { animation: pop 0.35s ease; }

.dish-card__cta {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 14px 20px;
  background: var(--accent);
  color: #1a0e05;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.dish-card__cta:hover { background: var(--accent-2); }
.dish-card__cta.in-cart { background: #1a0e05; color: var(--accent); border: 1px solid var(--accent); }

/* Cart drawer */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

.cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 460px; max-width: 100vw;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 101;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -24px 0 60px rgba(0,0,0,0.5);
}
.cart.open { transform: translateX(0); }
.cart__head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.cart__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex; align-items: baseline; gap: 12px;
}
.cart__title .kor { font-size: 13px; color: var(--accent); letter-spacing: 0; text-transform: none; }
.cart__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.cart__close:hover { color: var(--accent); border-color: var(--accent); }
.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}
.cart__empty {
  padding: 80px 20px;
  text-align: center;
  color: var(--ink-mute);
}
.cart__empty .kor {
  font-size: 64px;
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  opacity: 0.4;
  font-weight: 700;
}
.cart__empty p { font-family: var(--serif); font-size: 20px; margin: 0 0 24px; color: var(--ink-soft); }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.cart-item__thumb {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--kor);
  color: var(--ink-mute);
}
.cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 2px;
}
.cart-item__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.cart-item__qty button {
  width: 28px; height: 28px;
  font-size: 16px;
  color: var(--ink-soft);
  display: grid; place-items: center;
}
.cart-item__qty button:hover { color: var(--accent); }
.cart-item__qty span {
  min-width: 26px;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.cart-item__price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}
.cart-item__remove {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  background: none; border: 0; padding: 0;
  font-family: var(--sans);
}
.cart-item__remove:hover { color: var(--accent); }

.cart__foot {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
.cart__delivery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.cart__delivery button {
  padding: 12px 8px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.cart__delivery button small {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
  font-weight: 400;
}
.cart__delivery button:hover { color: var(--ink); border-color: var(--line-2); }
.cart__delivery button.active {
  background: var(--accent);
  color: #1a0e05;
  border-color: var(--accent);
}
.cart__delivery button.active small { color: rgba(26,14,5,0.6); }

/* delivery address (shown only when mode === "delivery") */
.cart__address {
  margin-bottom: 22px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.cart__address__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.cart__address__input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.cart__address__input::placeholder { color: var(--ink-mute); }
.cart__address__input:hover { border-color: var(--ink-mute); }
.cart__address__input:focus {
  outline: none;
  border-color: var(--accent);
}

/* date + time picker */
.cart__when {
  margin-bottom: 22px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.cart__when__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.cart__when__dates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.cart__date {
  padding: 9px 6px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--bg-3);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}
.cart__date:hover { color: var(--ink); border-color: var(--ink-mute); }
.cart__date.active {
  background: var(--accent);
  color: #1a0e05;
  border-color: var(--accent);
}
.cart__when__time {
  position: relative;
}
.cart__time-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 36px 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.cart__time-select:hover { border-color: var(--ink-mute); }
.cart__time-select:focus {
  outline: none;
  border-color: var(--accent);
}
.cart__time-select__caret {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-65%);
  pointer-events: none;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}

.cart__success__when {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: left;
}
.cart__success__when small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.cart__success__when span {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
}

.cart__totals { display: grid; gap: 8px; margin-bottom: 20px; }
.cart__totals .row {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
}
.cart__totals .row--total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
}
.cart__totals .row--total .price { color: var(--accent); }

.cart__checkout {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #1a0e05;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cart__checkout:hover { background: var(--accent-2); }
.cart__checkout:disabled { background: var(--bg-3); color: var(--ink-mute); cursor: not-allowed; }

.cart__success {
  padding: 60px 20px;
  text-align: center;
}
.cart__success__icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a0e05;
  display: grid; place-items: center;
  font-size: 36px;
  font-weight: 700;
}
.cart__success h3 { font-family: var(--serif); font-size: 32px; margin: 0 0 12px; }
.cart__success p { color: var(--ink-soft); margin: 0 0 8px; font-size: 15px; }
.cart__success__order {
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 18px;
}
.cart__success__order small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.cart__success__order span { color: var(--accent); letter-spacing: 0.1em; }

/* Floating cart fab — mobile */
.cart-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  background: var(--accent);
  color: #1a0e05;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,119,34,0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.cart-fab.show { opacity: 1; transform: translateY(0); }
.cart-fab .count {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1a0e05;
  color: var(--accent);
  font-size: 11px;
}

/* Delivery section — three readable cards */
.delivery-modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.delivery-mode {
  padding: 22px 16px;
  background: rgba(255, 248, 235, 0.92);
  border: 1px solid rgba(26, 14, 5, 0.4);
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(26, 14, 5, 0.08);
}
.delivery-mode h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 8px;
  color: #1a0e05;
}
.delivery-mode small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a0e05;
  opacity: 0.85;
}

/* ============================================================
   DISH LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 4, 3, 0.88);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 32px;
  animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 24px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1;
}
.lightbox__close:hover { background: var(--accent); color: #1a0e05; border-color: var(--accent); }

.lightbox__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1100px;
  width: 100%;
  max-height: 88vh;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: lightboxScale 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lightboxScale {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox__media {
  background: #000;
  position: relative;
  min-height: 400px;
  max-height: 88vh;
}
.lightbox__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lightbox__info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.lightbox__info .eyebrow { margin-bottom: 8px; }
.lightbox__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.lightbox__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  margin-top: -6px;
}
.lightbox__kor {
  font-family: var(--kor);
  font-size: 28px;
  color: var(--accent);
}
.lightbox__meta {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.lightbox__weight {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lightbox__price {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--accent);
}
.lightbox__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.lightbox__cta .menu-row__stepper {
  margin-left: 0;
}
.lightbox__cta .menu-row__step {
  width: 44px; height: 44px;
  font-size: 22px;
}
.lightbox__cta .menu-row__step__qty {
  font-size: 22px;
  min-width: 32px;
}

@media (max-width: 800px) {
  .lightbox { padding: 12px; }
  .lightbox__inner {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }
  .lightbox__media { min-height: 240px; max-height: 38vh; }
  .lightbox__info { padding: 28px 24px; }
  .lightbox__price { font-size: 32px; }
  .lightbox__close { top: 16px; right: 16px; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 980px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .closed-badge--nav { display: none; }
  .nav__cart { padding: 10px 14px; font-size: 11px; }
  .nav__cart .nav__cart__label { display: none; }
  .cart { width: 100vw; }
  .cart__delivery { grid-template-columns: 1fr; }
  .delivery-modes { grid-template-columns: 1fr; }
  .hours-row--today span:first-child::after { display: none; }
  .hero { padding-top: 110px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .hero__right { aspect-ratio: 4/3; }
  .hero__kor-bg { font-size: 200px; top: -60px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .pyanse__grid { grid-template-columns: 1fr; gap: 40px; }
  .pyanse::before { font-size: 240px; right: -30px; opacity: 0.4; }
  .sig__row { grid-template-columns: 1fr; }
  .sig__head { grid-template-columns: 1fr; align-items: start; }
  .menu__list { grid-template-columns: 1fr; gap: 0; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__col { padding: 40px 24px; border-left: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .reserve { grid-template-columns: 1fr; }
  .dish-card__body { grid-template-columns: 1fr; }
  .dish-card__price { font-size: 22px; }
}

/* ============================================================
   PHONE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  body { font-size: 15px; }

  /* — NAV — */
  .nav { padding: 12px 0 0; }
  .nav__inner { gap: 10px; }
  .nav__brand { gap: 10px; }
  .nav__mark { width: 38px; height: 38px; }
  .nav__name b { font-size: 17px; letter-spacing: 0.14em; }
  .nav__name span { font-size: 9px; }
  .nav__cart { padding: 9px 12px; }
  .nav__cart svg { width: 14px; height: 14px; }
  .nav__cart__count { min-width: 18px; height: 18px; font-size: 10px; }

  .nav__sub {
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 11px;
    padding: 8px 0 10px;
  }
  .nav__sub__dot { display: none; }
  .nav__sub__item { white-space: normal; }
  .nav__sub__item:nth-child(5) { display: none; } /* hide delivery line, keep address + open */

  /* — HERO — */
  .hero { padding: 100px 0 48px; min-height: auto; }
  .hero__solo {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .hero--solo h1 {
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.0;
  }
  .hero__brand-mark img { width: 110px !important; }
  .hero__lede { font-size: 15px; margin-bottom: 28px; }
  .hero__eyebrow { margin-bottom: 20px; font-size: 10px; letter-spacing: 0.24em; }
  .hero__cta { gap: 8px; flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; padding: 15px 18px; font-size: 11px; }
  .hero__scroll { display: none; }
  .hero--solo .hero__kor-bg {
    font-size: 240px;
    right: -50px;
    top: 40px;
    opacity: 0.7;
  }

  /* — STRIP — */
  .strip__item { font-size: 15px; gap: 32px; }
  .strip__item::after { width: 5px; height: 5px; }
  .strip__track { gap: 32px; padding: 14px 0; }

  /* — ABOUT — */
  .about__photo { aspect-ratio: 4/4; }
  .about__text h2 { font-size: 34px; line-height: 1.05; }
  .stat__num { font-size: 32px; }
  .stat__lbl { font-size: 10px; }
  .about__stats { gap: 16px; }

  /* — PYANSE — */
  .pyanse__left h2 { font-size: 36px; line-height: 1.02; }
  .pyanse__lede { font-size: 16px; }
  .pyanse__lede--strong { font-size: 18px; padding-top: 20px; margin-top: 20px; }
  .pyanse__card { padding: 22px 22px; }
  .pyanse__card__when { font-size: 24px; }
  .pyanse__card p { font-size: 14px; }
  .pyanse__order { padding: 20px 20px 18px; }
  .pyanse__order__top { flex-direction: column; align-items: stretch; gap: 14px; }
  .pyanse__order__price { font-size: 26px; }
  .pyanse__stepper { align-self: flex-start; }
  .pyanse__order__add { padding: 14px 18px; font-size: 12px; }
  .pyanse__order__add__price { font-size: 17px; }
  .pyanse__order__incart { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* — SIGNATURE — */
  .sig__head h2 { font-size: 34px; line-height: 1.05; }
  .sig__head p { font-size: 14px; }
  .sig__row { gap: 18px; }
  .dish-card__body { padding: 22px 20px 20px; gap: 12px 16px; }
  .dish-card__name { font-size: 22px; }
  .dish-card__price { font-size: 22px; }
  .dish-card__cta { padding: 14px 18px; font-size: 11px; }

  /* — MENU — */
  .menu__head h2 { font-size: 34px; line-height: 1.05; }
  .menu__head .kor { font-size: 15px; margin-top: 10px; }
  .menu__tabs {
    gap: 6px;
    margin-bottom: 28px;
    padding: 10px 8px;
    top: 70px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
    gap: 6px;
    flex-shrink: 0;
  }
  .menu__tab small { font-size: 11px; }

  /* menu row: thumb + (name+sub stacked) on row 1; price + stepper on row 2 */
  .menu-row {
    grid-template-columns: 56px 1fr;
    gap: 6px 14px;
    padding: 18px 0;
  }
  .menu-row__thumb {
    width: 56px; height: 56px;
    grid-row: 1 / span 2;
  }
  .menu-row__info { align-self: center; }
  .menu-row__name { font-size: 17px; gap: 8px; }
  .menu-row__name .kor { font-size: 12px; }
  .menu-row__sub { font-size: 13px; }
  .menu-row__right {
    grid-column: 2;
    grid-row: 2;
    justify-content: space-between;
    margin-top: 4px;
  }
  .menu-row__price { font-size: 18px; gap: 8px; }
  .menu-row__price small { font-size: 10px; }
  .menu-row__add { margin-left: 0; width: 34px; height: 34px; font-size: 16px; }
  .menu-row__stepper { margin-left: 0; padding: 2px; }
  .menu-row__step { width: 28px; height: 28px; font-size: 15px; }
  .menu-row__step__qty { font-size: 14px; min-width: 18px; }
  .menu-row__badge { font-size: 8px; padding: 2px 6px; }

  .menu__foot { margin-top: 32px; }
  .menu__foot p { font-size: 11px; }

  /* — DELIVERY — */
  .visit__col { padding: 32px 20px; }
  .visit__col h2 { font-size: 30px; line-height: 1.05; }
  .visit__col p { font-size: 15px; }
  .contact-row { padding: 12px 0; gap: 4px; }
  .contact-row span { font-size: 18px; }
  .hours-row { font-size: 12px; padding: 9px 10px; gap: 6px; }
  .delivery-mode h4 { font-size: 22px; }
  .delivery-mode small { font-size: 11px; }

  /* — FOOTER — */
  .footer { padding: 40px 0 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand-wrap img { width: 120px !important; }
  .footer__brand { font-size: 44px; }
  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 10px;
  }

  /* — CART DRAWER — */
  .cart__head { padding: 18px 20px; }
  .cart__title { font-size: 24px; gap: 10px; }
  .cart__title .kor { font-size: 12px; }
  .cart__body { padding: 4px 20px; }
  .cart__foot { padding: 20px; }
  .cart-item { grid-template-columns: 52px 1fr auto; gap: 12px; padding: 16px 0; }
  .cart-item__thumb { width: 52px; height: 52px; }
  .cart-item__name { font-size: 16px; }
  .cart-item__sub { font-size: 12px; margin-bottom: 8px; }
  .cart-item__price { font-size: 17px; }
  .cart-item__remove { font-size: 9px; }
  .cart__delivery button { font-size: 9px; padding: 10px 6px; }
  .cart__delivery button small { font-size: 11px; }
  .cart__when { padding: 12px; margin-bottom: 16px; }
  .cart__address { padding: 12px; margin-bottom: 16px; }
  .cart__address__input { font-size: 12px; padding: 11px 12px; }
  .cart__when__dates { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .cart__date { font-size: 10px; padding: 8px 4px; }
  .cart__time-select { font-size: 12px; padding: 11px 32px 11px 12px; }
  .cart__totals .row--total { font-size: 24px; padding-top: 12px; }
  .cart__checkout { padding: 16px; font-size: 12px; letter-spacing: 0.2em; }

  /* — LIGHTBOX — */
  .lightbox__name { font-size: 26px; }
  .lightbox__sub { font-size: 17px; }
  .lightbox__kor { font-size: 22px; }
  .lightbox__price { font-size: 28px; }
  .lightbox__info { padding: 22px 20px; gap: 10px; }
  .lightbox__cta .btn { padding: 14px 20px; font-size: 11px; }

  /* — FAB — */
  .cart-fab { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 11px; }

  /* — TWEAKS PANEL — */
  .twk-panel { right: 8px; bottom: 8px; max-width: calc(100vw - 16px); }
}

/* very small */
@media (max-width: 380px) {
  .hero--solo h1 { font-size: 32px !important; }
  .hero__brand-mark img { width: 88px !important; }
  .nav__name b { font-size: 16px; }
  .nav__name span { display: none; }
}
