:root {
  --bg: #070605;
  --bg-raised: #12100c;
  --bg-plaque: #16130e;
  --ink: #ECBD28;
  --muted: #ECBD28;
  --gold: #ECBD28;
  --gold-bright: #ECBD28;
  --gold-deep: #ECBD28;
  --line: rgba(236, 189, 40, 0.28);
  --kr-red: #cd2e3a;
  --kr-blue: #0047a0;
  --bd-green: #006a4e;
  --bd-red: #f42a41;
  --serif: "Cinzel", "Times New Roman", serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
  text-wrap: pretty;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.06em; line-height: 1.15; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--gold-bright); }

.container { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -48px; z-index: 30; background: var(--gold); color: #1a1408; padding: 8px 14px; font-weight: 600; }
.skip-link:focus { top: 16px; }

.flag-bar { display: grid; grid-template-columns: 1fr 1fr; height: 4px; }
.flag-kr { background: linear-gradient(90deg, #fff 0 34%, var(--kr-red) 34% 67%, var(--kr-blue) 67% 100%); }
.flag-bd { background: linear-gradient(90deg, var(--bd-green) 0 70%, var(--bd-red) 70% 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 6, 5, 0.94);
  border-bottom: 1px solid var(--line);
}
.site-header .container { position: relative; }

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--gold-bright);
  background: #0c0a07;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
  background: #000;
}

.brand-text {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  color: var(--gold-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  color: var(--muted);
}
.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible { color: var(--gold-bright); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 10px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover,
.nav-cta:focus-visible { background: var(--gold); color: #1a1408; }

.nav-toggle { display: none; background: none; border: 0; padding: 12px; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 1.5px; margin: 5px 0; background: var(--gold); }

.hero { background: #000; }
.hero-frame { margin: 0; border-bottom: 1px solid var(--line); background: #000; overflow: hidden; }
.hero-banner {
  width: 100%;
  height: clamp(340px, 38vw, 560px);
  object-fit: cover;
  object-position: center;
  background: #000;
}

.hero-bar {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
}
.hero-bar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
}
.hero-kicker {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button-gold { background: var(--gold); color: #1a1408; }
.button-gold:hover,
.button-gold:focus-visible { background: var(--gold-bright); }
.button-ghost { border-color: var(--gold); color: var(--gold-bright); }
.button-ghost:hover,
.button-ghost:focus-visible { background: var(--gold); color: #1a1408; }

.ribbon {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0c0a07;
}
.ribbon-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  animation: marquee 36s linear infinite;
}
.ribbon-track p { margin: 0; white-space: nowrap; }
.ribbon-track span { color: var(--gold-deep); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 88px 0; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-head { margin-bottom: 36px; }

.story { background: var(--bg); }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.story-plaque {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(236, 189, 40, 0.07), transparent 40%),
    var(--bg-plaque);
  padding: clamp(28px, 5vw, 48px);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.story-plaque::before,
.story-plaque::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}
.story-plaque::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.story-plaque::after { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

.story-claim {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--ink);
}
.story-sub {
  margin: 16px 0 0;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.story-copy p { color: var(--muted); max-width: 42ch; }
.story-copy h2 { margin-bottom: 18px; }
.story-badge {
  width: min(100%, 320px);
  height: auto;
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
  background: #000;
}
.lede, .menu-note, .muted { color: var(--muted); }
.lede { max-width: 52ch; margin: 12px 0 0; }
.menu-note { margin: 28px 0 18px; }
.gold-link { color: var(--gold-bright); border-bottom: 1px solid var(--gold-deep); }
.menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menu-col {
  border: 1px solid var(--line);
  background: var(--bg-plaque);
  padding: 24px;
}
.menu-col h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 16px;
}
.menu-col ul { margin: 0; padding: 0; list-style: none; }
.menu-col li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(236, 189, 40, 0.12);
  color: var(--muted);
}
.menu-col li:last-child { border-bottom: 0; }
.connect-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.connect-poster {
  width: min(100%, 420px);
  height: auto;
  aspect-ratio: 906 / 1280;
  object-fit: contain;
  background: #000;
  border: 1px solid var(--line);
  justify-self: center;
}
.connect-grid p { color: var(--muted); max-width: 46ch; }

.menu-section { background: var(--bg-raised); border-block: 1px solid var(--line); }
.menu-frame {
  border: 1px solid var(--line);
  background: var(--bg-plaque);
  padding: 48px 28px;
  text-align: center;
}
.menu-empty p { margin: 10px auto 0; max-width: 46ch; color: var(--muted); }
.menu-empty h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gold-bright);
  margin: 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}
.menu-card {
  border: 1px solid var(--line);
  background: #100e0a;
  padding: 22px;
}
.menu-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: var(--gold-bright);
}
.menu-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.menu-card__meta {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.visit { background: var(--bg); }
.visit-plaque {
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 48px);
  background: var(--bg-plaque);
}
.visit-dl {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.visit-dl dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.visit-dl dd { margin: 0; color: var(--muted); }

.order { background: var(--bg-raised); border-top: 1px solid var(--line); }
.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.order-copy p { color: var(--muted); max-width: 46ch; }
.order-copy .button { margin-top: 8px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #050403;
}
.footer-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  color: var(--muted);
  font-size: 13px;
}
.to-top { color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }

[aria-disabled="true"] { pointer-events: none; opacity: 0.45; }

a:focus-visible,
button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

@media (max-width: 960px) {
  .menu-cols { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1080px); }
  .nav-wrap { min-height: 64px; }
  .brand-logo { width: 40px; height: 40px; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    padding: 12px 16px 20px;
    background: #0c0a07;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { min-height: 44px; display: flex; align-items: center; }
  .nav-cta { justify-content: center; }
  .nav-toggle { display: block; }
  .hero-bar-inner,
  .story-grid,
  .visit-dl,
  .order-row,
  .menu-cols,
  .connect-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-banner {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    aspect-ratio: 906 / 1280;
    object-fit: contain;
  }
  .hero-bar-inner { padding-block: 16px; gap: 14px; }
  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }
  .hero-actions { width: 100%; }
  .hero-actions .button,
  .visit-plaque .button,
  .connect-grid .button,
  .menu-section .button { width: 100%; }
  .story-badge { width: min(72vw, 260px); }
  .connect-poster { width: 100%; max-width: none; }
  .ribbon-track {
    animation: none;
    width: auto;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-inline: 12px;
  }
  .ribbon-track p:nth-of-type(n+4),
  .ribbon-track span:nth-of-type(n+4) { display: none; }
  .section { padding: 48px 0; }
  h2 { font-size: clamp(1.4rem, 7.2vw, 2.1rem); letter-spacing: 0.03em; }
  .visit-plaque { padding: 22px 18px; }
  .visit-dl dd { overflow-wrap: anywhere; }
  .footer-wrap { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


/* Ordering UI — same black/gold language as the public site */
.plain-button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }
.table-banner { display: inline-block; background: var(--gold); color: #1a1408; padding: 7px 10px; margin: 0 0 10px; font-weight: 700; letter-spacing: .05em; }
.add-button, .remove-button, .icon-button { border: 0; cursor: pointer; }
.add-button { background: var(--gold); color: #1a1408; padding: 8px 12px; font-weight: 700; min-height: 40px; }
.add-button:hover { background: #f0d45a; }
.cart-fab { position: fixed; bottom: 20px; right: 20px; z-index: 8; background: var(--gold); color: #1a1408; border: 0; min-height: 52px; padding: 0 18px; font-weight: 700; cursor: pointer; }
.cart-fab span { background: #1a1408; color: var(--gold); padding: 1px 7px; margin-left: 7px; }
.dialog { border: 1px solid var(--line); width: min(620px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; color: var(--ink); background: var(--bg-plaque); }
.dialog-wide { width: min(760px, calc(100% - 28px)); }
.dialog::backdrop { background: rgba(0, 0, 0, .72); }
.dialog-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.dialog-head h2 { font: 500 28px/1.1 var(--serif); margin: 0; color: var(--gold); }
.icon-button { width: 44px; height: 44px; font-size: 30px; background: transparent; color: var(--gold); }
.cart-items { padding: 8px 26px; max-height: 46vh; overflow: auto; }
.cart-row { display: grid; grid-template-columns: minmax(0,1fr) auto auto auto; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row small { display: block; color: var(--muted); opacity: .8; }
.quantity { display: flex; align-items: center; border: 1px solid var(--line); }
.quantity button { width: 32px; height: 32px; background: transparent; border: 0; cursor: pointer; font-size: 18px; color: var(--gold); }
.quantity span { min-width: 25px; text-align: center; }
.remove-button { color: var(--gold); background: transparent; font-size: 23px; }
.cart-total, .cart-actions, .checkout-summary { display: flex; justify-content: space-between; gap: 16px; padding: 18px 26px; flex-wrap: wrap; }
.cart-actions { border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 26px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { display: grid; gap: 6px; font-size: 13px; }
.form-grid input, .form-grid textarea, #table-fields textarea { background: #100e0a; border: 1px solid var(--line); color: var(--ink); padding: 10px 12px; font: inherit; }
#table-fields { padding: 18px 26px; }
.form-error { margin: 12px 26px 0; color: #ffb4a8; }
.form-hint { padding: 0 26px 12px; }
.bank-details { border: 1px solid var(--line); padding: 12px; }
.empty-state { color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-card { border: 1px solid var(--line); background: var(--bg-plaque); padding: 22px; display: flex; flex-direction: column; }
.menu-card__art { height: 115px; margin: -22px -22px 18px; background: var(--card-color, #1a1408); }
.menu-card h3 { font-family: var(--serif); font-size: 1.2rem; margin: 0; color: var(--gold); }
.menu-card p { margin: 10px 0 0; }
.menu-card__meta { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; border-bottom: 1px solid var(--gold); }
.confirmation-number { font-family: var(--serif); font-size: 1.3rem; }
@media (max-width: 960px) { .menu-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: auto; } }
@media (max-width: 600px) {
  .cart-row { grid-template-columns: 1fr auto auto; }
  .cart-actions { flex-direction: column; }
  .cart-actions .button { width: 100%; }
  .dialog { width: 100%; max-height: 100vh; }
  .cart-fab { bottom: 14px; right: 14px; }
}
