/* Designed and built by the Ordernised dev team · ordernised.com */
:root {

  --paper:        #ffffff;
  --cream:        #fbf5ea;
  --sky-tint:     #eaf6fc;
  --mustard-tint: #fff5d6;

  --ink:      #15120e;
  --mute:     #57504a;
  --hairline: #e3ddd2;

  --sky:     #9ed8f3;
  --coral:   #ef5a2a;
  --mustard: #f2c230;
  --chilli:  #e0301e;

  --cobalt:      #1d5fae;
  --coral-ink:   #c2410c;
  --mustard-ink: #9a6400;

  --on-photo:      #f6f0e4;
  --on-photo-soft: #f0e9da;
  --photo-cta:     #f2c230;
  --photo-cta-lit: #ffe066;
  --photo-ink:     #1e1813;

  --ko: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;

  --zh: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;

  --display: "Noto Serif KR", Georgia, "Times New Roman", serif;

  --mark: "Jost", "Futura", sans-serif;

  --script: "Yellowtail", "Brush Script MT", "Segoe Script", cursive;

  --shell: min(1280px, 90vw);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --seam: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;

  scroll-padding-top: 6.5rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ko);

  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1 { font-family: var(--display); font-weight: 400; margin: 0; line-height: 1.16; }

h2, h3 { font-family: var(--ko); font-weight: 700; margin: 0; line-height: 1.12; letter-spacing: -0.03em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(242, 194, 48, 0.6);
}
.site-header:not(.is-stuck) :focus-visible, .hero :focus-visible { outline-color: var(--photo-cta-lit); }

[lang|="ko"] {
  font-family: var(--ko);
  font-weight: 500;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}
[lang|="zh"] {
  font-family: var(--zh);
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

html[lang|="zh"] { word-break: normal; }

html[lang|="ko"] h2, html[lang|="ko"] :is(.step, .fact) h3 { font-family: var(--ko); letter-spacing: -0.01em; }
html[lang|="zh"] h2, html[lang|="zh"] :is(.step, .fact) h3 { font-family: var(--zh); font-weight: 700; letter-spacing: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; position: relative; }
.section-head h2, .split-head h2, .visit-lead h2, .award h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-top: 0.9rem;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
html[lang|="ko"] :is(.section-head, .split-head, .visit-lead, .award) h2 { letter-spacing: -0.02em; }
html[lang|="zh"] :is(.section-head, .split-head, .visit-lead, .award) h2 { letter-spacing: 0; }

.eyebrow {
  font-family: var(--mark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  align-items: baseline;
  gap: 0.8em;
}

.eyebrow .ko {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cobalt);
  letter-spacing: 0;
}

.section-head { margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem); max-width: 52ch; }
.lede { margin-top: 1.2rem; color: var(--mute); font-size: 1.06rem; max-width: 52ch; }

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--mark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { background: var(--coral); border-color: var(--ink); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--mustard); color: var(--ink); }

.on-dark .btn { background: var(--photo-cta); border-color: var(--photo-cta); color: var(--photo-ink); }
.on-dark .btn:hover { background: var(--photo-cta-lit); border-color: var(--photo-cta-lit); color: var(--photo-ink); }
.on-dark .btn-ghost { background: transparent; color: var(--on-photo-soft); border-color: rgba(240, 233, 218, 0.45); }
.on-dark .btn-ghost:hover { background: var(--on-photo); color: var(--photo-ink); border-color: var(--on-photo); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.1rem 0;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hairline);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  gap: 2rem;
}
.wordmark { grid-column: 1; justify-self: start; }
.nav { grid-column: 2; }
.header-cta { grid-column: 3; justify-self: end; }

.wordmark img { height: clamp(76px, 7.4vw, 104px); width: auto; transition: height 0.4s var(--ease); }
.is-stuck .wordmark img { height: clamp(50px, 4.8vw, 62px); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.2rem); }
.nav-cta { display: none; }

html[lang|="ko"] .nav a, html[lang|="ko"] .btn,
html[lang|="zh"] .nav a, html[lang|="zh"] .btn { font-family: var(--ko); letter-spacing: 0.02em; }
html[lang|="zh"] .nav a, html[lang|="zh"] .btn { font-family: var(--zh); }

html[lang|="ko"] .eyebrow { font-family: var(--ko); letter-spacing: 0.04em; }
html[lang|="zh"] .eyebrow { font-family: var(--zh); letter-spacing: 0.04em; }
html[lang|="ko"] .eyebrow .ko, html[lang|="zh"] .eyebrow .ko { letter-spacing: 0; }

.nav a:not(.btn) {
  font-family: var(--mark);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 0.4em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.nav a:not(.btn):hover { border-bottom-color: var(--coral); }

.site-header:not(.is-stuck) .nav a:not(.btn) { color: var(--on-photo); }
.site-header:not(.is-stuck) .nav a:not(.btn):hover { border-bottom-color: var(--photo-cta); }
.site-header:not(.is-stuck) .wordmark img { filter: invert(1) sepia(0.18); }
.site-header:not(.is-stuck) .header-cta .btn { background: var(--photo-cta); border-color: var(--photo-cta); color: var(--photo-ink); }
.site-header:not(.is-stuck) .header-cta .btn:hover { background: var(--photo-cta-lit); border-color: var(--photo-cta-lit); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-cta .btn { padding: 0.8em 1.5em; font-size: 0.72rem; }

.nav-toggle {
  display: none; position: relative; width: 46px; height: 46px; padding: 0;
  border: 0; border-radius: 50%; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(242, 194, 48, 0.6); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; height: 4px; border-radius: 4px;
  transform-origin: 50% 50%;
}
.nav-toggle span { position: relative; width: 20px; background: linear-gradient(90deg, #f7a23a, #ef5a2a, #f7a23a); animation: flick-mid 1.9s ease-in-out infinite; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%;
  transition: transform 0.35s var(--ease), width 0.35s var(--ease), top 0.35s var(--ease), background 0.35s var(--ease);
}
.nav-toggle span::before { top: -8px; width: 11px; margin-left: -5.5px; background: linear-gradient(90deg, #ffd24a, #ffe98a, #ffd24a); animation: flick-tip 1.3s ease-in-out infinite 0.2s; }
.nav-toggle span::after { top: 8px; width: 28px; margin-left: -14px; background: linear-gradient(90deg, #e0301e, #ef5a2a, #e0301e); animation: flick-base 2.4s ease-in-out infinite 0.5s; }

.nav-toggle::after {
  content: ""; position: absolute; left: 50%; top: 9px;
  width: 4px; height: 4px; margin-left: -2px; border-radius: 50%;
  background: #ffd24a; box-shadow: 0 0 6px 1px rgba(247, 162, 58, 0.8);
  opacity: 0; pointer-events: none;
  animation: spark 2.8s ease-out infinite 1s;
}
@keyframes flick-tip { 0%, 100% { transform: scaleX(1) translateY(0); } 40% { transform: scaleX(0.6) translateY(-1px); } 70% { transform: scaleX(0.85); } }
@keyframes flick-mid { 0%, 100% { transform: scaleX(1); } 45% { transform: scaleX(0.82); } 75% { transform: scaleX(0.95); } }
@keyframes flick-base { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(0.9); } }
@keyframes spark {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(4px, -14px) scale(0.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after, .nav-toggle::after { animation: none; }
}

.nav-open .open-now { color: var(--mute) !important; }
.nav-open .lang { border-color: var(--mute) !important; }

.nav-open .lang { color: var(--ink) !important; }
.nav-open .nav-toggle span { background: transparent; animation: none; }
.nav-open .nav-toggle::after { animation: none; opacity: 0; }
.nav-open .nav-toggle span::before,
.nav-open .nav-toggle span::after { width: 24px; margin-left: -12px; top: 0; animation: none; background: var(--ink); }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: rotate(-45deg); }
.nav-open .wordmark img { filter: none !important; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 8.5rem;
  color: var(--on-photo);
  text-align: center;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(14, 12, 9, 0.74) 0%, rgba(14, 12, 9, 0.6) 55%, rgba(14, 12, 9, 0.36) 100%),
    linear-gradient(to bottom, rgba(14, 12, 9, 0.5) 0%, rgba(14, 12, 9, 0) 22%, rgba(14, 12, 9, 0) 72%, rgba(14, 12, 9, 0.7) 100%);
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(2rem, 6vh, 4rem);
}

.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem 0.55rem 0.8rem;
  font-family: var(--mark);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-photo);
  background: rgba(14, 12, 9, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 194, 48, 0.55);
  border-radius: 999px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.hero-award::before {
  content: "\2B50";
  content: "\2B50" / "";
  flex: none;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0;
}
.hero-award:hover { border-color: var(--photo-cta); background: rgba(14, 12, 9, 0.6); }
html[lang|="ko"] .hero-award, html[lang|="zh"] .hero-award { font-family: var(--ko); letter-spacing: 0.04em; font-size: 0.86rem; }
html[lang|="zh"] .hero-award { font-family: var(--zh); }

.hero h1 {
  margin-top: clamp(1.4rem, 3vh, 2rem);
  font-family: var(--ko);
  font-weight: 700;
  font-size: clamp(2.9rem, 9.4vw, 8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--on-photo);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(14, 12, 9, 0.35);
}
html[lang|="ko"] .hero h1 { letter-spacing: -0.03em; line-height: 1.15; }
html[lang|="zh"] .hero h1 { font-family: var(--zh); font-weight: 800; letter-spacing: 0.01em; line-height: 1.18; }
.hero-lede {
  margin-top: clamp(1.3rem, 3vh, 2rem);
  font-family: var(--ko);

  max-width: 46em;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: rgba(246, 240, 228, 0.9);
}
html[lang|="zh"] .hero-lede { font-family: var(--zh); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero .hero-actions { justify-content: center; }

.award { background: var(--paper); overflow: hidden; }
.aw-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 7vw, 6rem); align-items: center; }

.aw-judge { margin-top: clamp(2.2rem, 4vw, 3rem); padding-left: 1.1rem; border-left: 4px solid var(--sky); }

.aw-judge:has(.judge-face) {
  display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 1.2rem; align-items: center;
  padding-left: 0; border-left: 0;
}
.judge-face {
  grid-row: 1 / span 2;
  width: clamp(4.5rem, 7vw, 5.6rem); height: clamp(4.5rem, 7vw, 5.6rem);
  border-radius: 50%; object-fit: cover; object-position: 50% 22%;
  border: var(--seam) solid var(--ink);
  box-shadow: 4px 4px 0 var(--sky);
}
.aw-judge blockquote { margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; }
.aw-judge figcaption { margin-top: 0.6rem; font-family: var(--mark); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
html[lang|="ko"] .aw-judge figcaption, html[lang|="zh"] .aw-judge figcaption { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.84rem; }

.aw-stage { position: relative; justify-self: end; width: min(100%, 480px); margin: 2.5rem 1rem 4.5rem 2.5rem; }
.aw-photo img { width: 100%; border: var(--seam) solid var(--ink); box-shadow: 14px 14px 0 var(--mustard); }
.seal-btn {
  position: absolute; z-index: 2; top: -3.2rem; left: -3.2rem;
  width: clamp(7.5rem, 11vw, 9.5rem);
  padding: 0; border: 0; background: none; border-radius: 50%; cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.seal-btn:hover { transform: scale(1.06) rotate(-4deg); }
.seal-btn:active { transform: scale(0.94); }
.seal-btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(242, 194, 48, 0.6); }
.aw-seal { display: block; width: 100%; height: auto; overflow: visible; }
.seal-bg { fill: var(--mustard); stroke: var(--ink); stroke-width: 3; }
.seal-core { fill: var(--ink); stroke: var(--ink); stroke-width: 2.5; }
.aw-seal text { font-family: var(--mark); font-weight: 500; font-size: 15px; fill: var(--ink); }

.aw-seal .seal-no { font-family: var(--ko); font-weight: 900; font-size: 46px; letter-spacing: -1.5px; fill: var(--mustard); }
.aw-seal .seal-no-sm { font-size: 26px; letter-spacing: -0.5px; }
.seal-spin { transform-origin: 100px 100px; animation: seal-turn 28s linear infinite; }
@keyframes seal-turn { to { transform: rotate(360deg); } }

.aw-reel {
  position: absolute; left: -2rem; bottom: -3.2rem;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.55rem 1.3rem 0.55rem 0.55rem;
  font: inherit; text-align: left; color: var(--ink);
  background: var(--paper);
  border: var(--seam) solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-2deg);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.aw-reel:hover { transform: rotate(0deg) translate(-2px, -2px); box-shadow: 9px 9px 0 var(--coral); }
.reel-thumb { position: relative; flex: none; width: 7.5rem; aspect-ratio: 16 / 9; overflow: hidden; border: 1.5px solid var(--ink); }
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.reel-play {
  position: absolute; inset: 0; margin: auto; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--mustard); border: var(--seam) solid var(--ink);
  transition: transform 0.3s var(--ease);
}
.reel-play::after { content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%); border-left: 11px solid var(--ink); border-block: 7px solid transparent; }
.aw-reel:hover .reel-play { transform: scale(1.12); }
.reel-text { display: flex; flex-direction: column; gap: 0.15rem; }
.reel-text b { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.reel-len { font-family: var(--mark); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
html[lang|="ko"] .reel-len, html[lang|="zh"] .reel-len { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.8rem; }

.film-dialog {
  width: min(94vw, 1080px); padding: 0; overflow: visible;
  background: var(--paper);
  border: var(--seam) solid var(--ink);
  box-shadow: 14px 14px 0 var(--mustard);
}
.film-dialog::backdrop { background: rgba(14, 12, 9, 0.82); backdrop-filter: blur(4px); }
.film-dialog[open] { animation: film-in 0.35s var(--ease); }
@keyframes film-in { from { opacity: 0; transform: translateY(14px) scale(0.98); } }
.film-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.8rem 0.7rem 1.2rem; border-bottom: var(--seam) solid var(--ink); }
.film-title { font-family: var(--mark); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
.film-title b { color: var(--ink); letter-spacing: 0.2em; }
html[lang|="ko"] .film-title, html[lang|="zh"] .film-title { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.86rem; }
.film-close {
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  font-size: 1.4rem; line-height: 1; color: var(--ink);
  background: var(--mustard); border: var(--seam) solid var(--ink); cursor: pointer;
  transition: transform 0.2s var(--ease);
}
.film-close:hover { transform: rotate(90deg); }

.player { position: relative; background: #0e0c09; line-height: 0; }
.player video { display: block; width: 100%; height: auto; cursor: pointer; }
.player:fullscreen { display: flex; align-items: center; }
.player:fullscreen video { max-height: 100vh; }
.pl-big {
  position: absolute; inset: 0; margin: auto;
  width: clamp(4.2rem, 9vw, 6rem); height: clamp(4.2rem, 9vw, 6rem); border-radius: 50%;
  background: var(--mustard); border: 3px solid var(--ink); cursor: pointer;
  box-shadow: 6px 6px 0 var(--coral);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.pl-big span { position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%); border-left: 1.35rem solid var(--ink); border-block: 0.85rem solid transparent; }
.pl-big:hover { transform: scale(1.06); }
.player.is-playing .pl-big { opacity: 0; pointer-events: none; transform: scale(0.8); }
.pl-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 0.8rem;
  padding: 2.4rem 1rem 0.85rem;
  line-height: 1.2;
  background: linear-gradient(to bottom, rgba(14, 12, 9, 0), rgba(14, 12, 9, 0.85));
  color: #f6f0e4;
  transition: opacity 0.35s var(--ease);
}
.player.is-playing.is-idle .pl-bar { opacity: 0; }
.player.is-playing.is-idle { cursor: none; }
.pl-btn {
  flex: none; width: 2.3rem; height: 2.3rem; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent; border: 1.5px solid rgba(246, 240, 228, 0.45); color: inherit; cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pl-btn:hover { background: var(--mustard); border-color: var(--mustard); color: var(--ink); }
.i-play { width: 0; height: 0; margin-left: 3px; border-left: 10px solid currentColor; border-block: 6px solid transparent; }
.player.is-playing .i-play { width: 10px; height: 12px; margin: 0; border: 0; border-inline: 3.5px solid currentColor; }
.i-vol { width: 14px; height: 12px; background: currentColor; clip-path: polygon(0 30%, 30% 30%, 65% 0, 65% 100%, 30% 70%, 0 70%); position: relative; }
.player.is-muted .i-vol { clip-path: polygon(0 30%, 30% 30%, 65% 0, 65% 100%, 30% 70%, 0 70%); opacity: 0.45; }
.i-full { width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 2px; clip-path: polygon(0 0, 40% 0, 40% 15%, 15% 15%, 15% 40%, 0 40%, 0 60%, 15% 60%, 15% 85%, 40% 85%, 40% 100%, 60% 100%, 60% 85%, 85% 85%, 85% 60%, 100% 60%, 100% 40%, 85% 40%, 85% 15%, 60% 15%, 60% 0, 100% 0, 100% 100%, 0 100%); }
.pl-time { flex: none; font-family: var(--mark); font-size: 0.8rem; letter-spacing: 0.06em; font-variant-numeric: tabular-nums; }
.pl-seek {
  --p: 0%;
  flex: 1; min-width: 0; height: 6px; margin: 0;
  appearance: none; -webkit-appearance: none;
  background: linear-gradient(to right, var(--coral) var(--p), rgba(246, 240, 228, 0.28) var(--p));
  border-radius: 999px; cursor: pointer;
}
.pl-seek::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--mustard); border: 2px solid var(--ink); }
.pl-seek::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--mustard); border: 2px solid var(--ink); }
.pl-seek:focus-visible { outline: 2px solid var(--mustard); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) { .seal-spin { animation: none; } }
.judge { grid-area: judge; justify-self: end; max-width: 26rem; }

.judge blockquote {
  position: relative;
  margin: 0;
  padding: 1.1rem 1.35rem 1.2rem;
  background: var(--sky);
  border: var(--seam) solid var(--ink);
  border-radius: 22px;
  font-family: var(--mark);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.45;
  color: var(--ink);
}
.judge blockquote::after {
  content: "";
  position: absolute;
  left: 2.2rem; bottom: -15px;
  width: 26px; height: 26px;
  background: var(--sky);
  border-right: var(--seam) solid var(--ink);
  border-bottom: var(--seam) solid var(--ink);
  transform: skewX(-28deg) rotate(45deg);
  border-bottom-right-radius: 3px;
}
.judge figcaption {
  margin: 1.35rem 0 0 1.1rem;
  font-family: var(--mark);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
html[lang|="ko"] .judge figcaption, html[lang|="zh"] .judge figcaption { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.86rem; }
html[lang|="zh"] .judge figcaption { font-family: var(--zh); }

.press {
  background-color: var(--sky-tint);
  background-image: radial-gradient(rgba(29, 95, 174, 0.16) 1.2px, transparent 1.4px);
  background-size: 14px 14px;
  overflow: hidden;
}
.press-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.clip {
  position: relative;
  padding: clamp(1.6rem, 3.4vw, 2.6rem) clamp(1.5rem, 3.4vw, 2.8rem) clamp(1.4rem, 3vw, 2.2rem);
  background: var(--paper);
  border: var(--seam) solid var(--ink);
  box-shadow: 10px 10px 0 var(--mustard);
  transform: rotate(-1.2deg);
}
.clip-mast {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding-bottom: 0.8rem; border-bottom: 3px double var(--ink);
  font-family: var(--mark); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
}

.clip-paper { display: block; height: clamp(1.5rem, 2.6vw, 2rem); width: auto; }
.clip-head { margin-top: 1.2rem; font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; }
.clip-quote { margin: 1rem 0 0; font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; font-weight: 500; letter-spacing: -0.01em; }
.clip-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.8rem 1.5rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--hairline); }
.clip-by { font-weight: 700; }
.clip-by::before { content: "\2014\00a0"; color: var(--mute); }
.clip-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  font-family: var(--mark); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  border: var(--seam) solid var(--ink); border-radius: 999px;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.clip-link:hover { background: var(--mustard); transform: translate(-1px, -1px); }
html[lang|="ko"] .clip-link, html[lang|="zh"] .clip-link { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.86rem; }
.press-photo { position: relative; justify-self: center; width: min(100%, 400px); transform: rotate(2.5deg); }
.press-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 8px solid var(--paper); outline: var(--seam) solid var(--ink); box-shadow: 10px 10px 0 var(--coral); }

.press-photo::before {
  content: ""; position: absolute; z-index: 1; top: -14px; left: 50%;
  width: 110px; height: 30px; transform: translateX(-50%) rotate(-4deg);
  background: rgba(242, 194, 48, 0.75);
  border-left: 1px dashed rgba(21, 18, 14, 0.25); border-right: 1px dashed rgba(21, 18, 14, 0.25);
}

@media (max-width: 1000px) {
  .aw-grid, .press-grid { grid-template-columns: minmax(0, 1fr); }
  .aw-stage { justify-self: center; margin: 3.5rem 1rem 4rem 2rem; }
  .press-photo { width: min(100%, 340px); margin-top: 1rem; }
  .clip { transform: rotate(-0.8deg); }
}
@media (max-width: 560px) {
  .seal-btn { width: 6.2rem; top: -2.6rem; left: -1.6rem; }
  .aw-stage { margin: 3rem 0.6rem 4.5rem 0.6rem; }
  .aw-reel { left: -0.4rem; right: 1rem; bottom: -3.6rem; }
  .reel-thumb { width: 5.6rem; }
  .pl-time { display: none; }
  .pl-bar { gap: 0.55rem; padding-inline: 0.7rem; }
}

.record { background: var(--paper); padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.record-entry {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) minmax(0, 0.62fr);
  column-gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
}
.record-when {
  padding-top: 0.5rem;
  font-family: var(--mark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
}
.record-when .yr {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--ko);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.record blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.9vw, 2.1rem);
  line-height: 1.42;
  max-width: 34ch;
  text-wrap: balance;
}
.record .attrib {
  margin-top: 1.6rem;
  font-family: var(--mark);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.record-entry img {
  align-self: center;
  width: clamp(200px, 22vw, 290px);
  aspect-ratio: 1;
  object-fit: cover;
  border: var(--seam) solid var(--ink);
  box-shadow: 10px 10px 0 var(--sky);
}
html[lang|="ko"] .record-when { font-family: var(--ko); font-size: 0.82rem; letter-spacing: 0.04em; }
html[lang|="zh"] .record-when { font-family: var(--zh); font-size: 0.82rem; letter-spacing: 0.04em; }

.howto { background: var(--sky-tint); }
.howto-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(2rem, 3.5vw, 2.8rem);
}
.howto-head .lede { margin-top: 0; padding-bottom: 0.4rem; }
.howto-title { margin-top: 1rem; }
.howto-title img { width: min(100%, 330px); }

.howto-tr:empty { display: none; }
.howto-tr { display: block; margin-top: 0.7rem; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }

.comic {
  --g: clamp(12px, 1.4vw, 18px);
  --h: calc((100cqw - 2 * var(--g)) / 2.9491);
  container-type: inline-size;
  display: grid;
  gap: var(--g);
  max-width: 1180px;
  margin-inline: auto;
}
.comic-row { display: flex; align-items: flex-start; gap: var(--g); }

.panel { flex: var(--r) 1 0%; min-width: 0; }
.panel img { width: 100%; height: var(--h); object-fit: cover; }
.p-charcoal { --r: 1.1529; }
.p-sides    { --r: 0.6744; }
.p-bbq      { --r: 2.3118; }
.p-cook     { --r: 1.1218; }
.p-meokja   { --r: 0.6070; }

.panel figcaption {
  margin-top: 0.7rem;
  padding: 0.65rem 0.95rem 0.7rem;
  background: var(--paper);
  border: var(--seam) solid var(--ink);
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.panel figcaption b { font-weight: 700; }
@media (min-width: 761px) {
  html[lang="en-GB"] .panel figcaption { display: none; }
}

html[lang="en-GB"] .panel figcaption.cap-tr-only { display: none; }

.grill { background: var(--paper); }
.grill-top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.grill-top img { width: 100%; height: 100%; min-height: 320px; aspect-ratio: auto; object-fit: cover; border: var(--seam) solid var(--ink); }

.grill .split-head h2::after {
  content: "";
  display: block;
  width: 3.2em;
  height: 0.16em;
  margin-top: 0.4em;
  background: var(--ink);
}

.script-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.8rem;
  margin-bottom: 1.1rem;
}
.script-head .script { font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--coral); -webkit-text-stroke: 0.6px var(--ink); padding-right: 0.1em; }
.script-head .ko, .script-head .zh { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.script-head .zh { font-weight: 700; }

.jogakbo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--seam);
  background: var(--ink);
  border: var(--seam) solid var(--ink);
}
.patch {
  background: var(--paper);
  padding: clamp(1.3rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 170px;
  transition: background-color 0.4s var(--ease);
}
.patch:hover { background: var(--sky-tint); }
.patch.w2 { grid-column: span 2; }
.patch.h2 { grid-row: span 2; }

.patch.is-mustard { background: var(--mustard); }
.patch.is-mustard:hover { background: #f6cf55; }
.patch.is-cobalt { background: var(--cobalt); color: var(--paper); }
.patch.is-cobalt:hover { background: #1a5498; }
.patch.is-coral { background: var(--coral); }
.patch.is-coral:hover { background: #f26b3f; }
.jogakbo.platters { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cut-ko {
  font-family: var(--ko);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.cut-en { display: block; font-family: var(--mark); font-weight: 500; font-size: 1.04rem; margin-top: 0.35rem; }
.cut-zh { display: block; font-size: 0.9rem; color: var(--mute); margin-top: 0.15rem; }
.cut-note { display: block; font-size: 0.92rem; color: var(--mute); margin-top: 0.5rem; line-height: 1.55; }
.is-mustard .cut-zh, .is-mustard .cut-note,
.is-coral .cut-zh, .is-coral .cut-note { color: var(--ink); }
.is-cobalt .cut-ko, .is-cobalt .cut-zh, .is-cobalt .cut-note { color: var(--paper); }
.cut-price {
  font-family: var(--mark);
  font-weight: 500;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
}

.heat {
  display: inline-block;
  width: calc(var(--n, 1) * 0.95em);
  height: 1em;
  margin-left: 0.2em;
  vertical-align: -0.14em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 20'%3E%3Cpath d='M13.6 5.1c-1.5-.3-2.5.6-2.9 2-.8 3.4-3.4 7-8.5 9.4-.6.3-.4 1.2.3 1.2 6.6.1 12-4 12.8-9.8.2-1.5-.4-2.6-1.7-2.8z' fill='%23e0301e' stroke='%2315120e' stroke-width='1.1' stroke-linejoin='round'/%3E%3Cpath d='M13.2 5.2c.1-1.3.9-2.4 2.3-3' fill='none' stroke='%2315120e' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") left center / 0.95em 1em repeat-x;
  forced-color-adjust: none;
}
.heat.x1 { --n: 1; }
.heat.x2 { --n: 2; }
.heat.x3 { --n: 3; }

.cut-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.cut-col,
.cut-group,
.cut {
  display: grid;
  grid-template-columns: fit-content(12em) minmax(0, 1fr) auto;
  column-gap: 1.25rem;
}
.cut-col { align-content: start; }
@supports (grid-template-columns: subgrid) {
  .cut-group, .cut { grid-template-columns: subgrid; }
}
.cut-group, .cut, .cut-group h3 { grid-column: 1 / -1; }
.cut-group + .cut-group { margin-top: clamp(2.4rem, 5vw, 3.4rem); }

.cut-group h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.8em;
  font-family: var(--mark);
  padding-bottom: 0.6rem;
  border-bottom: var(--seam) solid var(--ink);
}
.cut-group h3 .script { font-size: clamp(2rem, 3.2vw, 2.5rem); padding-right: 0.08em; }
.cut-group h3 .ko {
  font-family: var(--ko);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
.g1 h3 .script { color: var(--coral-ink); }
.g2 h3 .script { color: var(--mustard-ink); }
.g3 h3 .script { color: var(--mustard-ink); }
.g4 h3 .script { color: var(--cobalt); }

.g4 h3 .script {
  padding-bottom: 0.32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Cpath d='M0 4c3 0 3-3 6-3s3 3 6 3 3-3 6-3 3 3 6 3' fill='none' stroke='%231d5fae' stroke-width='2'/%3E%3C/svg%3E") left bottom / 24px 8px repeat-x;
}
.cut {
  align-items: baseline;
  row-gap: 0.15rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--hairline);
}
.cut .cut-ko { font-size: 1.05rem; line-height: 1.35; grid-column: 1; grid-row: 1; }

.cut-names { display: contents; }
.cut .cut-en { grid-column: 2; grid-row: 1; margin-top: 0; line-height: 1.35; }
.cut .cut-zh { grid-column: 1; grid-row: 2; margin-top: 0; line-height: 1.5; }
.cut .cut-note { grid-column: 2; grid-row: 2; margin-top: 0; font-size: 0.86rem; line-height: 1.5; max-width: 46ch; }
.cut .cut-price { grid-column: 3; grid-row: 1; font-size: 1.05rem; }
.patch .cut-note { display: block; margin-top: 0.5rem; font-size: 0.84rem; line-height: 1.5; }

.note-dinein {
  margin-top: 1.4rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--coral);
  font-size: 0.97rem;
  color: var(--ink);
}

#kitchen { background: var(--cream); }

.section-head h2.banner {
  display: inline-block;
  padding: 0.35em 0.55em 0.4em;
  background: var(--paper);
  border-top: 0.2em solid var(--ink);
  border-bottom: var(--seam) solid var(--ink);
  font-style: italic;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
}

html[lang|="ko"] h2.banner, html[lang|="zh"] h2.banner { font-style: normal; }
.note-veg {
  margin-bottom: 1.6rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--cobalt);
  font-size: 0.99rem;
  color: var(--mute);
  max-width: 62ch;
}

.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--seam); background: var(--ink); border: var(--seam) solid var(--ink); }

.dish { background: var(--paper); display: flex; flex-direction: column; }
.dish img { width: 100%; aspect-ratio: 1; object-fit: cover; border-bottom: var(--seam) solid var(--ink); }
.dish-body { padding: 1.1rem 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.dish .ko { display: block; font-size: 1.05rem; font-weight: 700; color: var(--cobalt); }
.dish h3 { font-size: 1.1rem; font-weight: 700; margin-top: 0.15rem; }
.dish .sub { display: block; font-size: 0.88rem; color: var(--mute); margin-top: 0.4rem; line-height: 1.5; }
.dish .price { display: block; margin-top: auto; padding-top: 0.7rem; font-family: var(--mark); font-weight: 500; font-variant-numeric: tabular-nums; }

.chicken-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.chicken-grid img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

.kfc-frame { position: relative; margin: 0 0 16px 16px; }
.kfc-frame::before {
  content: "";
  position: absolute;
  inset: 16px 16px -16px -16px;
  background: repeating-linear-gradient(-45deg, var(--coral) 0 9px, var(--mustard) 9px 18px);
  border: var(--seam) solid var(--ink);
}
.kfc-frame img { position: relative; border: var(--seam) solid var(--ink); }
.flavours { margin-top: 1.8rem; border-top: var(--seam) solid var(--ink); }
.flavour {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--hairline);
  font-family: var(--mark); font-weight: 500; font-size: 1.08rem;
}
.flavour .price { font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.flavour b { font-weight: 500; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.step h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--mute); font-size: 0.99rem; }

.step-n {
  display: block;
  margin-bottom: 0.7rem;
  font-family: var(--ko);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@supports (-webkit-text-stroke: 1px black) {
  .step-n { color: var(--sky-tint); -webkit-text-stroke: 3px var(--ink); paint-order: stroke fill; }
}

.bar { background: var(--mustard-tint); }
.bar .eyebrow .ko { color: var(--cobalt); }

.softs { margin-top: clamp(2rem, 4vw, 3rem); }
.soft-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--seam);
  margin-top: 1.1rem;
  background: var(--ink);
  border: var(--seam) solid var(--ink);
}
.soft-row li {
  background: var(--paper);
  padding: 0.95rem 1.2rem;
  font-size: 0.97rem;
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  white-space: nowrap;
}
.soft-row b { font-family: var(--ko); font-weight: 700; color: var(--cobalt); }
.soft-row i { margin-left: auto; padding-left: 0.6em; font-style: normal; color: var(--mute); font-family: var(--mark); font-variant-numeric: tabular-nums; }

#table { background: var(--sky-tint); }

.open-now[hidden] { display: none; }
.open-now {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--mark);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--mute);
}

.open-now::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--chilli);
  box-shadow: 0 0 0 3px rgba(224, 48, 30, 0.2);
}
.open-now.is-open::before { background: var(--mustard); box-shadow: 0 0 0 1px var(--ink), 0 0 0 4px rgba(242, 194, 48, 0.3); }
.site-header:not(.is-stuck) .open-now { color: rgba(246, 240, 228, 0.85); }
.site-header:not(.is-stuck) .open-now.is-open::before { box-shadow: 0 0 0 3px rgba(255, 224, 102, 0.22); }

.lang { display: inline-flex; align-items: center; }
.lang button {
  font-family: var(--mark);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7em 0.55em;
  background: transparent;
  border: 0;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  text-decoration: underline 2px transparent;
  text-underline-offset: 0.55em;
  transition: opacity 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.lang button:hover { opacity: 1; }
.lang button[aria-pressed="true"] { opacity: 1; text-decoration-color: var(--coral); }
.site-header:not(.is-stuck) .lang { color: var(--on-photo); }
.site-header:not(.is-stuck) .lang button[aria-pressed="true"] { text-decoration-color: var(--photo-cta); }

.lang button[lang] { letter-spacing: 0; font-family: var(--ko); font-weight: 500; font-size: 0.78rem; }
.lang button[lang="zh-Hant"] { font-family: var(--zh); }

.visit { background: var(--cream); }

.visit-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.visit-lead h2 { font-family: var(--ko); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; }
html[lang|="zh"] .visit-lead h2 { font-family: var(--zh); letter-spacing: 0; line-height: 1.2; }
.visit-book { margin-top: 1.4rem; color: var(--mute); font-size: 1.08rem; max-width: 44ch; }
.visit-book b { color: var(--ink); }
.visit-lead .hero-actions { margin-top: 2rem; }

.visit-card {
  background: var(--paper);
  border: var(--seam) solid var(--ink);
  box-shadow: 10px 10px 0 var(--mustard);
  margin: 0 10px 10px 0;
}
.vc-row { padding: clamp(1.3rem, 2.4vw, 1.8rem) clamp(1.3rem, 2.6vw, 2rem); }
.vc-row + .vc-row { border-top: 1px solid var(--hairline); }
.visit-card h3 {
  font-family: var(--mark); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--coral-ink); margin-bottom: 0.75rem;
}
html[lang|="ko"] .visit-card h3, html[lang|="zh"] .visit-card h3 { font-family: var(--ko); letter-spacing: 0.04em; font-size: 0.84rem; }
.vc-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.4rem 1rem; margin-bottom: 0.75rem; }
.vc-head h3 { margin-bottom: 0; }
.vc-head .open-now { color: var(--ink); font-size: 0.66rem; }
.hours div {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.5rem 0;
  font-size: 1.12rem;
}
.hours div + div { border-top: 1px dashed var(--hairline); }
.hours span:first-child { color: var(--mute); }
.hours span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.vc-big { font-size: 1.12rem; line-height: 1.55; }
.vc-link {
  display: inline-block; margin-top: 0.7rem;
  font-family: var(--mark); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: var(--seam) solid var(--sky);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.vc-link:hover { color: var(--cobalt); border-bottom-color: var(--cobalt); }
.vc-contact { display: grid; gap: 0.35rem; }
.vc-contact a { font-size: 1.08rem; border-bottom: 1px solid transparent; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.vc-contact a:hover { color: var(--cobalt); border-bottom-color: var(--cobalt); }

.visit-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: var(--seam) solid var(--ink);
}
.note h3 {
  font-family: var(--ko); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.5rem;
}
html[lang|="zh"] .note h3 { font-family: var(--zh); }
.note p { color: var(--mute); font-size: 0.98rem; line-height: 1.65; }

.site-footer { background: var(--paper); color: var(--ink); padding: clamp(2.5rem, 5vw, 4rem) 0 1.6rem; }
.skyline { width: min(1100px, 100%); margin-inline: auto; border-bottom: 3px solid var(--ink); }

.ft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.4rem, 5vw, 3.6rem) 0 clamp(2rem, 4vw, 3rem);
}
.ft-mark { height: 84px; width: auto; }
.ft-tag { margin-top: 1rem; max-width: 30ch; color: var(--mute); }
.ft-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.ft-cta .btn { padding: 0.85em 1.5em; font-size: 0.72rem; }
.ft-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.ft-social a {
  display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: var(--seam) solid var(--ink); background: var(--paper);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ft-social a:hover { background: var(--mustard); transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--ink); }
.ft-social svg { width: 1.2rem; height: 1.2rem; fill: none; stroke: var(--ink); stroke-width: 1.8; }
.ft-social .dot, .ft-social .fill { fill: var(--ink); stroke: none; }
.ft-col h3 {
  margin-bottom: 1rem;
  font-family: var(--mark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral-ink);
}
html[lang|="ko"] .ft-col h3, html[lang|="zh"] .ft-col h3 { font-family: var(--ko); letter-spacing: 0.04em; font-size: 0.84rem; }
.ft-col ul { display: grid; gap: 0.55rem; }
.ft-col address { font-style: normal; line-height: 1.6; margin-bottom: 0.9rem; }
.ft-col a { border-bottom: 1px solid transparent; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.ft-col a:hover { color: var(--cobalt); border-bottom-color: var(--cobalt); }
.ft-hours { margin: 0; display: grid; gap: 0.55rem; }
.ft-hours div { display: flex; justify-content: space-between; gap: 1rem; max-width: 14rem; padding-bottom: 0.55rem; border-bottom: 1px dashed var(--hairline); }
.ft-hours dt { color: var(--mute); }
.ft-hours dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.ft-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem 1.5rem;
  padding-top: 1.4rem; border-top: 1px solid var(--hairline);
  font-size: 0.84rem; color: var(--mute);
}
.ft-bottom a { color: var(--ink); border-bottom: var(--seam) solid var(--sky); }
.ft-bottom a:hover { color: var(--cobalt); border-bottom-color: var(--cobalt); }
.ft-award { display: inline-flex; align-items: center; gap: 0.45rem; }
.ft-award::before {
  content: ""; width: 0.8rem; height: 0.8rem; background: var(--coral);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@media (max-width: 1000px) {
  .ft-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .ft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2.2rem; }
  .ft-grid > .ft-col:last-child { grid-column: 1 / -1; }
  .ft-cta .btn { flex: 1; justify-content: center; white-space: nowrap; padding-inline: 0.8em; letter-spacing: 0.1em; }
  .ft-col { min-width: 0; }
  .ft-col a { overflow-wrap: anywhere; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (max-width: 1240px) { .open-now { font-size: 0.62rem; letter-spacing: 0.08em; } }

@media (max-width: 1199px) {
  .cut-cols { grid-template-columns: fit-content(12em) minmax(0, 1fr) auto; column-gap: 1.25rem; }
  .cut-col { display: contents; }
  .cut-group:not(.g1) { margin-top: clamp(2.4rem, 5vw, 3.4rem); }
  .g1 { order: 1; } .g2 { order: 2; } .g3 { order: 3; } .g4 { order: 4; }
}
@media (max-width: 1000px) {
  .jogakbo, .jogakbo.platters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .patch.w2 { grid-column: span 2; }
  .patch.h2 { grid-row: auto; }
  .soft-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grill-top, .chicken-grid { grid-template-columns: 1fr; }

  .visit-top { grid-template-columns: minmax(0, 1fr); }
  .visit-notes { grid-template-columns: minmax(0, 1fr); gap: 1.6rem; }
  .chicken-grid img { aspect-ratio: 16 / 10; }

  .howto-head { grid-template-columns: minmax(0, 1fr); align-items: start; }

  .record-entry { grid-template-columns: minmax(0, 1fr); }
  .record-when { display: flex; align-items: baseline; gap: 0.9em; padding-top: 0; margin-bottom: 1rem; }
  .record-when .yr { display: inline; margin: 0; font-size: 1.3rem; }
  .record-entry img { width: calc(100% - 10px); aspect-ratio: 16 / 10; margin-top: 2rem; }
  .nav {
    position: fixed; inset: 0 0 auto;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 6.5rem 8vw 2.5rem;
    background: var(--paper);
    border-bottom: var(--seam) solid var(--ink);
    transform: translateY(-101%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0.5s var(--ease);
    z-index: -1;
  }

  .nav a:not(.btn),
  .site-header:not(.is-stuck) .nav a:not(.btn) {
    display: flex; align-items: center; gap: 1rem;
    width: 100%; padding: 0.85rem 0;
    color: var(--ink);
    font-family: var(--ko); font-size: 1.3rem; font-weight: 700;
    letter-spacing: -0.02em; text-transform: none;
    border-bottom: 1px solid var(--hairline);
    opacity: 0; transform: translateX(-14px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s var(--ease);
  }
  .nav a:not(.btn)::after { content: "\2192"; margin-left: auto; font-weight: 400; color: var(--mute); transition: transform 0.25s var(--ease); }
  .nav a:not(.btn):hover::after { transform: translateX(4px); color: var(--ink); }
  .nav a[aria-current="page"]:not(.btn) { border-bottom-color: var(--hairline); }
  .nav a .nav-ic {
    display: grid; place-items: center; flex: none;
    width: 2.9rem; height: 2.9rem; border-radius: 50%;
    background: var(--paper); border: var(--seam) solid var(--ink);
    box-shadow: 3px 3px 0 var(--mustard);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }

  .nav-ic svg { width: 1.7rem; height: 1.7rem; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .nav-ic .fw { fill: var(--paper); }
  .nav-ic .fc { fill: var(--coral); }
  .nav-ic .fy { fill: var(--mustard); }
  .nav a[aria-current="page"] .nav-ic { background: var(--mustard); box-shadow: 3px 3px 0 var(--coral); }
  .nav a:not(.btn):hover .nav-ic { transform: rotate(-8deg) translate(-1px, -1px); box-shadow: 5px 5px 0 var(--mustard); }

  body.nav-open .site-header .nav a:not(.btn) { opacity: 1; transform: none; }
  .nav-open .nav a:nth-child(1) { transition-delay: 0.08s; }
  .nav-open .nav a:nth-child(2) { transition-delay: 0.13s; }
  .nav-open .nav a:nth-child(3) { transition-delay: 0.18s; }
  .nav-open .nav a:nth-child(4) { transition-delay: 0.23s; }
  .nav-open .nav a:nth-child(5) { transition-delay: 0.28s; }
  html[lang|="zh"] .nav a:not(.btn) { font-family: var(--zh); letter-spacing: 0; }
  .nav-open .nav { transform: none; visibility: visible; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }

  .nav-cta { display: flex; gap: 0.6rem; padding-top: 1.2rem; width: 100%; }
  .nav-cta .btn { flex: 1; justify-content: center; padding: 1em 0.6em; letter-spacing: 0.1em; white-space: nowrap; }
}

@media (max-width: 760px) {
  .dishes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dish-body { padding: 0.9rem 1rem 1.1rem; }

  .comic { display: flex; flex-direction: column; }
  .comic-row { display: contents; }
  .panel { flex: none; width: 100%; }
  .panel img { height: auto; }
  .p-charcoal { order: 1; } .p-sides { order: 2; } .p-bbq { order: 3; }
  .p-cook { order: 4; } .p-meokja { order: 5; }
  .p-sides { width: 62%; }
  .p-meokja { width: 80%; }
  .p-meokja { align-self: flex-end; }
}
@media (max-width: 620px) {

  .cut-cols { display: flex; flex-direction: column; align-items: stretch; }
  .cut-group { display: block; }
  .cut { grid-template-columns: minmax(0, 1fr) auto; column-gap: 1rem; row-gap: 0.1rem; }
  .cut .cut-ko { grid-column: 1; grid-row: 1; }
  .cut .cut-price { grid-column: 2; grid-row: 1; }
  .cut-names { display: block; grid-column: 1 / -1; grid-row: 2; line-height: 1.4; }
  .cut .cut-en, .cut .cut-zh { display: inline; }
  .cut .cut-zh { margin-left: 0.4em; }
  .cut .cut-note { grid-column: 1 / -1; grid-row: 3; }

  .patch { flex-direction: row; align-items: flex-start; min-height: 0; padding: 1.15rem 1.2rem 1.25rem; gap: 1rem; }
  .patch > div { flex: 1; min-width: 0; }
  .patch .cut-ko { display: block; font-size: 1.2rem; }
  .patch .cut-en, .patch .cut-zh { display: inline; }
  .patch .cut-zh { margin-left: 0.4em; }

  .cut .cut-zh, .patch .cut-zh { white-space: nowrap; }
  .patch .cut-note { margin-top: 0.35rem; }
  .soft-row { grid-template-columns: 1fr; }

  .lang button { padding: 0.7em 0.62em; font-size: 0.64rem; }
  .lang button[lang] { font-size: 0.72rem; }
  .header-cta { gap: 0.5rem; }
  body { font-size: 16px; }
  .jogakbo, .jogakbo.platters { grid-template-columns: 1fr; }
  .patch.w2 { grid-column: auto; }
  .hero-award { font-size: 0.62rem; letter-spacing: 0.14em; }
  .hero .hero-actions { flex-direction: column; align-items: stretch; width: min(100%, 20rem); }
  .hero .hero-actions .btn { justify-content: center; }
  .kfc-frame { margin: 0 0 12px 12px; }
  .kfc-frame::before { inset: 12px 12px -12px -12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

.nav-ic { display: none; }

.nav a[aria-current="page"]:not(.btn) { border-bottom-color: var(--coral); }

.page-head {
  background: var(--cream);
  padding: clamp(8.5rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
  border-bottom: var(--seam) solid var(--ink);
}

.page-head h1 {
  margin-top: 1rem;
  font-family: var(--ko);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
html[lang|="ko"] .page-head h1 { letter-spacing: -0.03em; line-height: 1.15; }
html[lang|="zh"] .page-head h1 { font-family: var(--zh); letter-spacing: 0; line-height: 1.2; }
.page-head .lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.page-head .hero-actions { margin-top: 2rem; }
.page-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}
.page-head-split .lede { margin: 0; color: var(--ink); }

.page-menu { --hdr: 76px; --bar: 112px; }
html:has(.page-menu) { scroll-padding-top: calc(var(--hdr, 76px) + var(--bar, 112px) + 0.5rem); }
.menu-bar {
  position: sticky;
  top: var(--hdr);
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: var(--seam) solid var(--ink);
}
.menu-tabs { border-bottom: 1px solid var(--hairline); }
.menu-tabs-inner {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar { display: none; }
.menu-tabs a {
  flex: none;
  padding: 1.05rem 0 0.95rem;
  font-family: var(--mark);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.menu-tabs a:hover, .menu-tabs a.is-here { border-bottom-color: var(--coral); }
html[lang|="ko"] .menu-tabs a, html[lang|="zh"] .menu-tabs a { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.86rem; }
html[lang|="zh"] .menu-tabs a { font-family: var(--zh); }

.explore { background: var(--cream); border-bottom: var(--seam) solid var(--ink); }
.explore-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.explore-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 0.9rem; letter-spacing: -0.025em; }
html[lang|="ko"] .explore-head h2 { letter-spacing: -0.02em; }
.explore-more, .doors-dots { display: none; }
.doors { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 20px); }
.door a {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: var(--seam) solid var(--ink);
  background: var(--ink);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

@media (hover: hover) {
  .door a:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--mustard); }
  }
.door img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.door a:hover img { transform: scale(1.04); }
.door a::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, rgba(14, 12, 9, 0), rgba(14, 12, 9, 0.78));
}
.door-label {
  position: absolute;
  z-index: 1;
  left: 1.1rem; right: 1.1rem; bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--on-photo);
  font-family: var(--ko);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}
.door-label .ko { color: var(--photo-cta); font-size: 0.85em; }
.door-label::after { content: "\2192"; margin-left: auto; font-weight: 500; }
html[lang|="ko"] .door-label, html[lang|="zh"] .door-label { font-family: var(--ko); }

.door-bar a { background: var(--mustard); }
.door-bar a::after { display: none; }
.door-type {
  position: absolute;
  inset: 0 0 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--ink);
}
.door-type .ko { font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 800; line-height: 1; }
.door-type .script { font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--coral); -webkit-text-stroke: 0.6px var(--ink); }
.door-bar .door-label { color: var(--ink); }
.door-bar .door-label .ko { color: var(--ink); }

.teaser { background: var(--mustard-tint); }
.teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.teaser h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 0.9rem; letter-spacing: -0.025em; text-wrap: balance; }
html[lang|="ko"] .teaser h2 { letter-spacing: -0.02em; }
.teaser .judge { justify-self: start; max-width: 28rem; margin: 2rem 0 2.2rem; }
.teaser-img {
  width: calc(100% - 12px);
  max-width: 460px;
  justify-self: end;
  border: var(--seam) solid var(--ink);
  box-shadow: 12px 12px 0 var(--coral);
}

.cta-band { background: var(--cream); text-align: center; border-top: var(--seam) solid var(--ink); }
.page-about .cta-band { background: var(--sky-tint); }
.page-about .record { background: var(--cream); }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.03em; text-wrap: balance; }
html[lang|="ko"] .cta-inner h2 { letter-spacing: -0.02em; }
.cta-where { margin-top: 1.2rem; color: var(--mute); }
.cta-where a { color: var(--ink); border-bottom: var(--seam) solid var(--sky); }
.cta-where a:hover { color: var(--cobalt); border-bottom-color: var(--cobalt); }
.cta-inner .hero-actions { justify-content: center; }

@media (max-width: 1000px) {
  .doors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teaser-grid, .page-head-split { grid-template-columns: minmax(0, 1fr); }
  .teaser-img { justify-self: start; }
}
@media (max-width: 620px) {
  .door-label { left: 0.8rem; right: 0.8rem; bottom: 0.7rem; font-size: 0.98rem; }
  .door-label .ko { display: none; }
  .door-type .ko { font-size: 2.6rem; }
  .door-type .script { font-size: 1.7rem; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.msec.is-cream { background: var(--cream); }
.msec .section-head { max-width: 60ch; }

.mf-inner { display: flex; align-items: center; gap: 0.6rem 1rem; padding-block: 0.7rem; flex-wrap: wrap; }
.mf-search {
  position: relative; flex: 0 1 17rem; min-width: 12rem;
  display: flex; align-items: center;
}
.mf-search svg { position: absolute; left: 0.8rem; width: 16px; height: 16px; color: var(--mute); pointer-events: none; }
.mf-search input {
  width: 100%;
  padding: 0.62rem 0.9rem 0.62rem 2.3rem;
  font: inherit; font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  outline: none;
}
.mf-search input:focus-visible { box-shadow: 0 0 0 4px rgba(242, 194, 48, 0.55); }
.mf-chips { display: flex; gap: 0.45rem; overflow-x: auto; scrollbar-width: none; flex: 1 1 auto; }
.mf-chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  padding: 0.5rem 0.95rem;
  font-family: var(--mark); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--hairline);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
html[lang|="ko"] .chip, html[lang|="zh"] .chip { font-family: var(--ko); letter-spacing: 0; }
.mf-count { flex: none; font-size: 0.85rem; color: var(--mute); white-space: nowrap; }
.mf-count:empty { display: none; }
.mf-empty { text-align: center; padding: clamp(4rem, 10vw, 7rem) 0; }
.mf-empty p { font-size: 1.2rem; margin-bottom: 1.4rem; }
.menu-tabs a.is-empty { display: none; }
[data-group].is-hidden, [data-item].is-hidden { display: none !important; }

.mi-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 5vw, 4.5rem); border-top: var(--seam) solid var(--ink); }
.mi-list.one { grid-template-columns: minmax(0, 1fr); }
.mi-list.three { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: clamp(1.5rem, 3.5vw, 3rem); }
.mi { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--hairline); }
.mi-img {
  flex: none; width: 76px; height: 76px; object-fit: cover;
  border: var(--seam) solid var(--ink);
  box-shadow: 4px 4px 0 var(--mustard);
}
.mi-body { flex: 1; min-width: 0; }
.mi-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.mi-en { margin: 0; font-family: var(--ko); font-weight: 700; font-size: 1.06rem; line-height: 1.35; letter-spacing: -0.01em; }
.mi-price, .mg-row .mi-price {
  flex: none;
  font-family: var(--mark); font-weight: 500; font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.mi-price.is-two { display: flex; gap: 0.9rem; }
.mi-price small { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-right: 0.25rem; }
.mi-cjk { margin-top: 0.15rem; font-size: 0.9rem; color: var(--mute); }
.mi-cjk span + span { margin-left: 0.45rem; }
.mi-desc { margin-top: 0.3rem; font-size: 0.9rem; line-height: 1.55; color: var(--mute); max-width: 52ch; }
.mi-tags { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 0.3rem; margin-top: 0.45rem; }
.mi-sm { padding: 0.75rem 0; }
.mi-sm .mi-en { font-size: 0.98rem; }
.mi-sm .mi-img { width: 56px; height: 56px; box-shadow: 3px 3px 0 var(--mustard); }

.cut .mi-tags, .patch .mi-tags { display: inline-flex; margin: 0 0 0 0.4rem; vertical-align: 0.1em; }
.patch .mi-tags { margin: 0.4rem 0 0; display: flex; }

.tag {
  display: inline-block;
  padding: 0.12rem 0.4rem;
  font-family: var(--mark); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em;
  line-height: 1.3;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}
.t-v, .t-vo { color: var(--cobalt); }
.t-df { color: var(--mute); }
.t-gf { color: var(--mustard-ink); }
.t-new { color: var(--paper); background: var(--coral-ink); border-color: var(--coral-ink); }
.is-mustard .tag:not(.t-new), .is-cobalt .tag:not(.t-new), .is-coral .tag:not(.t-new) { color: inherit; }

.mg-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 28px); align-items: start; }
.mg {
  background: var(--paper);
  border: var(--seam) solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.mg-img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border-bottom: var(--seam) solid var(--ink); }
.mg-body { padding: 1.2rem 1.3rem 0.6rem; }
.mg-en { margin: 0; font-family: var(--ko); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.mg-rows { margin-top: 0.8rem; border-top: 1px solid var(--ink); }
.mg-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px dashed var(--hairline);
}
.mg-row:last-child { border-bottom: 0; }
.mg-name { font-weight: 600; }
.mg-note { display: block; font-size: 0.86rem; color: var(--mute); line-height: 1.45; }
.mg-row .mi-tags { margin-top: 0.3rem; }

.kfc-grid, .soup-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.kfc-grid .kfc-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.bbq-terms {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 1rem clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.3rem, 2.6vw, 1.8rem) clamp(1.3rem, 3vw, 2.2rem);
  background: var(--sky-tint);
  border: var(--seam) solid var(--ink);
}
.bt-quote { font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.5; }
.bt-list { display: grid; gap: 0.5rem; }
.bt-list li { padding-left: 1.2rem; position: relative; }
.bt-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; background: var(--coral); border: 1px solid var(--ink); border-radius: 50%; }
.grill [data-group] + [data-group], .grill .cut-cols + [data-group] { margin-top: clamp(3rem, 6vw, 4.5rem); }

.menu-key { padding: 2.2rem 0; background: var(--paper); border-top: var(--seam) solid var(--ink); }
.mk-inner { display: grid; gap: 0.8rem; }
.mk-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 0.5rem; font-size: 0.9rem; }
.mk-tags .tag + span { margin-right: 0.8rem; }
.mk-note { font-size: 0.86rem; color: var(--mute); max-width: 80ch; }

@media (max-width: 1000px) {
  .mi-list.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mg-grid, .kfc-grid, .soup-grid, .bbq-terms { grid-template-columns: minmax(0, 1fr); }
  .kfc-grid .kfc-frame { max-width: 420px; }
}
@media (max-width: 700px) {
  .mi-list, .mi-list.three { grid-template-columns: minmax(0, 1fr); }

  .menu-tabs a { padding: 0.75rem 0 0.65rem; }
  .mf-inner { padding-block: 0.5rem; gap: 0.45rem; }
  .mf-search { flex: 1 1 100%; }
  .mf-search input { padding-block: 0.45rem; font-size: 16px; }
  .chip { padding: 0.38rem 0.8rem; font-size: 0.76rem; }
  .mf-count { display: none; }
  .mi-img { width: 64px; height: 64px; }
}

@media (max-width: 760px) {
  .wordmark img { height: 104px; }
  .is-stuck .wordmark img { height: 64px; }
  .site-header { padding: 0.7rem 0; }
  .hero { padding-top: 8.5rem; }
  .page-head { padding-top: 9.5rem; }
  html { scroll-padding-top: 7rem; }
}

@media (max-width: 700px) {
  .explore-head { margin-bottom: 1.6rem; }
  .explore-head .btn { display: none; }
  .explore-head h2 { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .doors {
    display: flex; gap: 12px;
    margin-inline: -5vw; padding: 4px 5vw 12px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: 5vw;
    scrollbar-width: none;
  }
  .doors::-webkit-scrollbar { display: none; }
  .door { flex: 0 0 72%; scroll-snap-align: start; }
  .door a { aspect-ratio: 4 / 5; }
  .door-label { left: 0.9rem; right: 0.9rem; bottom: 0.8rem; font-size: 1.15rem; }
  .door-label .ko { display: inline; }
  .doors-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 0.9rem; }
  .doors-dots span { width: 7px; height: 7px; border-radius: 999px; background: var(--hairline); transition: width 0.3s var(--ease), background-color 0.3s var(--ease); }
  .doors-dots span.is-on { width: 22px; background: var(--ink); }
  .explore-more { display: flex; justify-content: center; margin-top: 1.4rem; width: 100%; }
}

.btn[data-book]:not(.btn-ghost) {
  position: relative;
  isolation: isolate;
  overflow: visible;
  color: var(--ink) !important;
  border-color: var(--ink) !important;
  background: linear-gradient(100deg, #f2c230 0%, #f7a23a 28%, #ef5a2a 50%, #f7a23a 72%, #f2c230 100%) 0 50% / 260% 100% !important;
  animation: ember 3.4s ease-in-out infinite;
}
.btn[data-book]:not(.btn-ghost)::before,
.btn[data-book]:not(.btn-ghost)::after {
  content: "";
  position: absolute; bottom: 70%; left: 28%;
  width: 20px; height: 20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 150, 140, 0.6), rgba(160, 150, 140, 0) 70%);
  filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  animation: smoke 3.6s ease-out infinite;
}
.btn[data-book]:not(.btn-ghost)::after { left: 64%; width: 16px; height: 16px; animation-duration: 4.2s; animation-delay: 1.7s; }
.btn[data-book]:not(.btn-ghost):hover { animation-duration: 1.6s; }
@keyframes ember {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes smoke {
  0% { transform: translate(0, 12px) scale(0.5); opacity: 0; }
  20% { opacity: 0.85; }
  100% { transform: translate(-12px, -38px) scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn[data-book]:not(.btn-ghost), .btn[data-book]:not(.btn-ghost)::before, .btn[data-book]:not(.btn-ghost)::after { animation: none; }
}

@media (min-width: 701px) { .explore-head h2 { white-space: nowrap; } }
.k-mark { color: var(--coral); }

.door-label { flex-wrap: wrap; row-gap: 0.1rem; font-size: clamp(0.92rem, 1.35vw, 1.25rem); }
.door-label .ko { display: block; flex-basis: 100%; font-size: 0.72em; line-height: 1.2; }
.door-label [data-i18n] { white-space: nowrap; }
@media (max-width: 700px) {
  .door-label { font-size: 1.1rem; }
  .door-label .ko { display: block; }
}

.site-footer { padding-bottom: 2.4rem; }
.ft-grid { column-gap: clamp(2.5rem, 6vw, 6rem); row-gap: 3rem; padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 6.5vw, 5rem); }
.ft-tag { margin-top: 1.5rem; line-height: 1.7; }
.ft-cta { margin-top: 2rem; gap: 0.9rem; }
.ft-social { margin-top: 2rem; gap: 0.8rem; }
.ft-col h3 { margin-bottom: 1.5rem; }
.ft-col ul { gap: 0.95rem; }
.ft-col address { margin-bottom: 1.4rem; line-height: 1.75; }
.ft-hours { gap: 1rem; }
.ft-hours div { padding-bottom: 0.9rem; }
.ft-bottom { padding-top: 2rem; }
@media (max-width: 620px) {
  .ft-grid { row-gap: 2.8rem; padding-top: 3rem; }
}

.comic-dots { display: none; }
@media (max-width: 760px) {
  .howto-title img { width: min(100%, 290px); }
  .howto-head { margin-bottom: 1.6rem; gap: 1rem; }
  .howto-head .lede { font-size: 1rem; }
  .comic {
    display: flex; flex-direction: row; align-items: flex-start; gap: 14px;
    margin-inline: -5vw; padding: 4px 5vw 10px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: 5vw;
    scrollbar-width: none;
    container-type: normal;
  }
  .comic::-webkit-scrollbar { display: none; }
  .comic .panel, .comic .p-sides, .comic .p-meokja {
    flex: 0 0 auto; width: min-content; max-width: 86vw; align-self: flex-start;
    scroll-snap-align: start;
  }
  .comic .panel img { height: min(66vw, 300px); width: auto; max-width: 86vw; object-fit: contain; }
  .comic-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 0.9rem; }
  .comic-dots span { width: 7px; height: 7px; border-radius: 999px; background: rgba(21, 18, 14, 0.2); transition: width 0.3s var(--ease), background-color 0.3s var(--ease); }
  .comic-dots span.is-on { width: 22px; background: var(--ink); }
}

html, body { overflow-x: clip; }

.fire-word {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: #f7a23a;

  background: linear-gradient(90deg, #ffd24a 0%, #f7a23a 25%, #ef5a2a 50%, #f7a23a 75%, #ffd24a 100%) 0 0 / 200% 100% repeat-x;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 14px rgba(239, 90, 42, 0.45));
  animation: fire-flow 7s linear infinite, fire-flicker 2.4s ease-in-out infinite;
}
@keyframes fire-flow { from { background-position: 200% 0; } to { background-position: 0% 0; } }
@keyframes fire-flicker {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(239, 90, 42, 0.4)); }
  35% { filter: drop-shadow(0 0 22px rgba(247, 162, 58, 0.65)); }
  60% { filter: drop-shadow(0 0 9px rgba(224, 48, 30, 0.45)); }
}
@media (prefers-reduced-motion: reduce) {
  .fire-word { animation: none; }
}

@media (max-width: 760px) {
  .nav { padding-top: calc(104px + 1.4rem + 2rem) !important; }
  .site-header.is-stuck .nav { padding-top: calc(64px + 1.4rem + 2rem) !important; }
}

.bento .door a {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 14px 32px -16px rgba(21, 18, 14, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bento .door a::after { inset: 35% 0 0; background: linear-gradient(to bottom, rgba(14, 12, 9, 0), rgba(14, 12, 9, 0.82)); }
.bento .door-label {
  left: 1.4rem; right: 1.4rem; bottom: 1.3rem;
  padding-right: 3.2rem;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
.bento .door-label .ko { color: var(--photo-cta); }
.door-sub {
  display: block; flex-basis: 100%;
  margin-top: 0.25rem;
  font-size: 0.66em; font-weight: 500; letter-spacing: 0;
  color: rgba(246, 240, 228, 0.82);
}
.bento .door-label::after {
  content: "\2197";
  position: absolute; right: 0; bottom: 0;
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  margin: 0;
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); background: var(--mustard);
  transition: transform 0.3s var(--ease);
}
.d-grill .door-label { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
@media (hover: hover) {
  .bento .door a:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -18px rgba(21, 18, 14, 0.55); }
  .bento .door a:hover .door-label::after { transform: rotate(45deg); }
}

.bento .d-bar a { background: var(--mustard); display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem); padding: 1.4rem clamp(1.4rem, 3vw, 2.4rem); }
.bento .d-bar .door-type { position: static; inset: auto; flex: none; }
.bento .d-bar .door-type .ko { font-size: clamp(2.6rem, 4.4vw, 3.8rem); }
.bento .d-bar .door-type .script { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.bar-line { font-family: var(--ko); font-weight: 700; font-size: clamp(1.1rem, 1.7vw, 1.5rem); line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
html[lang|="zh"] .bar-line { font-family: var(--zh); }
.bento .d-bar .door-label { position: static; margin-left: auto; padding-right: 3.2rem; align-self: center; color: var(--ink); }
.bento .d-bar .door-label .ko { display: none; }
.bento .d-bar .door-label::after { background: var(--ink); color: var(--mustard); top: 50%; bottom: auto; transform: translateY(-50%); }
@media (hover: hover) { .bento .d-bar a:hover .door-label::after { transform: translateY(-50%) rotate(45deg); } }
.bento .d-bar .door-label { position: relative; }

@media (min-width: 701px) {
  .bento {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: clamp(250px, 24vw, 360px) clamp(160px, 13vw, 200px);
    gap: clamp(12px, 1.4vw, 18px);
  }
  .bento .door a { aspect-ratio: auto; height: 100%; }
  .d-grill { grid-row: 1 / 3; }
  .d-bar { grid-column: 2 / 4; }
}

@media (min-width: 701px) and (max-width: 1000px) {
  .bento { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); grid-template-rows: 230px 230px 170px; }
  .d-grill { grid-row: 1 / 3; }
  .d-kitchen { grid-column: 2; grid-row: 1; }
  .d-chicken { grid-column: 2; grid-row: 2; }
  .d-bar { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .bento .door a { border-radius: 18px; }
  .bento .d-bar a { flex-direction: column; justify-content: center; text-align: center; gap: 1rem; }
  .bento .d-bar .door-label { margin: 0.9rem 0 0; padding-right: 3.2rem; min-height: 2.5rem; display: flex; align-items: center; }
  .bar-line { font-size: 1.15rem; }
}
.door-label .door-sub { white-space: normal; }

.explore { position: relative; overflow: hidden; isolation: isolate; padding-top: clamp(7.5rem, 13vw, 10rem); }
.explore > .shell { position: relative; z-index: 1; }
.tapes { position: absolute; left: -5%; right: -5%; top: clamp(1.4rem, 3vw, 2.4rem); height: 6rem; z-index: 0; pointer-events: none; }
.tape {
  position: absolute; left: 0; right: 0;
  overflow: hidden;
  border-block: var(--seam) solid var(--ink);
  box-shadow: 0 8px 18px -12px rgba(21, 18, 14, 0.5);
}
.tape.t1 { top: 0.9rem; background: var(--mustard); color: var(--ink); transform: rotate(-2deg); }
.tape.t2 { top: 1.2rem; background: var(--coral); color: var(--paper); transform: rotate(1.6deg); }
.tape-run { display: flex; width: max-content; }
.tape-run span {
  display: block; padding: 0.7rem 0;
  white-space: nowrap;
  font-family: var(--mark); font-weight: 800; font-size: clamp(0.95rem, 1.5vw, 1.2rem); letter-spacing: 0.14em;
}
.tape-run span[lang] { display: inline; padding: 0; font-family: var(--ko); font-weight: 700; letter-spacing: 0; }
.tape-run b { font-weight: 800; }
.tape-run i { font-style: normal; margin: 0 1.1rem; opacity: 0.8; }
.t1 .tape-run { animation: tape-left 45s linear infinite; }
.t2 .tape-run { animation: tape-right 55s linear infinite; }
@keyframes tape-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tape-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .tape-run { animation: none; } }

.js .aw-stage:not(.is-in) .seal-btn { opacity: 0; transform: scale(0.3) rotate(-40deg); }
.js .aw-stage.is-in .seal-btn { animation: seal-pop 0.9s cubic-bezier(0.2, 1.6, 0.4, 1) 0.35s both; }
@keyframes seal-pop { from { opacity: 0; transform: scale(0.3) rotate(-40deg); } to { opacity: 1; transform: none; } }
.spark {
  position: absolute; z-index: 2; width: 18px; height: 18px; pointer-events: none;
  background: var(--mustard);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  animation: twinkle 2.4s ease-in-out infinite;
}
.spark.s1 { top: 14%; right: -1.6rem; }
.spark.s2 { top: 48%; right: -2.2rem; width: 12px; height: 12px; background: var(--coral); animation-delay: 0.6s; }
.spark.s3 { bottom: 26%; left: -1.8rem; animation-delay: 1.1s; }
.spark.s4 { top: -1.4rem; right: 22%; width: 12px; height: 12px; background: var(--sky); animation-delay: 1.6s; }
.spark.s5 { bottom: -1.2rem; right: 8%; width: 14px; height: 14px; background: var(--coral); animation-delay: 0.3s; }
@keyframes twinkle { 0%, 100% { transform: scale(0.4) rotate(0deg); opacity: 0.3; } 50% { transform: scale(1.15) rotate(45deg); opacity: 1; } }

#award { position: relative; }
.confetti-canvas { position: absolute; inset: 0; z-index: 5; pointer-events: none; width: 100%; height: 100%; }
@media (prefers-reduced-motion: reduce) {
  .js .aw-stage .seal-btn { animation: none; opacity: 1; transform: none; }
  .spark { animation: none; opacity: 0.8; }
}
@media (max-width: 560px) { .spark.s2, .spark.s5 { display: none; } }

@media (max-width: 700px) {
  .explore { padding-top: 9rem; }
  .tapes { top: 1rem; height: 6.5rem; left: -12%; right: -12%; }
  .tape.t2 { top: 0.4rem; transform: rotate(4deg); }
  .tape.t1 { top: 3rem; transform: rotate(-3.5deg); }
  .tape-run span { padding: 0.55rem 0; font-size: 0.86rem; letter-spacing: 0.1em; }
  .tape-run i { margin: 0 0.8rem; }
}

.explore {
  background-color: #f6eedf;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.012 .09' numOctaves='2' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .55 0 0 0 0 .45 0 0 0 0 .3 0 0 0 .9 -.62'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .42 0 0 0 0 .33 0 0 0 0 .2 0 0 0 .9 -.35'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 600px 600px, 220px 220px;
}

.howto-head.is-centred {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 760px; gap: 0;
}
.howto-head.is-centred .eyebrow { justify-content: center; }
.howto-q {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.15; letter-spacing: -0.03em;
  text-wrap: balance;
}
html[lang|="zh"] .howto-q { letter-spacing: 0; line-height: 1.2; }
.howto-head.is-centred .lede { margin: 1.2rem auto 0; max-width: 52ch; padding-bottom: 0; }
.howto-head.is-centred .howto-title { margin-top: 0; }
.howto-head.is-centred .howto-title img { width: min(100%, 380px); margin-inline: auto; }

.hero-award { position: relative; overflow: hidden; isolation: isolate; }
.hero-award::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 40%; z-index: -1;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 236, 170, 0.08) 30%, rgba(255, 244, 205, 0.45) 50%, rgba(255, 236, 170, 0.08) 70%, transparent 100%);
  transform: translateX(-120%) skewX(-18deg);
  animation: pill-shine 10s ease-in-out infinite 1.2s;
  pointer-events: none;
}

@keyframes pill-shine {
  0% { transform: translateX(-120%) skewX(-18deg); }
  20%, 100% { transform: translateX(330%) skewX(-18deg); }
}
.hero-award { animation: pill-glint 10s ease-in-out infinite 1.2s; }
@keyframes pill-glint {
  0%, 100% { border-color: rgba(242, 194, 48, 0.55); box-shadow: none; }
  10% { border-color: rgba(255, 224, 102, 1); box-shadow: 0 0 18px rgba(242, 194, 48, 0.35); }
  20% { border-color: rgba(242, 194, 48, 0.55); box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) { .hero-award, .hero-award::after { animation: none; } }

.visit-card.v2 {
  margin: 0; padding: clamp(1.4rem, 2.6vw, 2rem);
  background: var(--paper); border: 0; border-radius: 24px;
  box-shadow: 0 24px 50px -24px rgba(21, 18, 14, 0.35), 0 0 0 1px rgba(21, 18, 14, 0.06);
  display: grid; gap: 1.3rem;
}
.visit-card.v2 h3 { margin: 0 0 0.3rem; }
.vc-top { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; }
.vc-top h3 { margin: 0; }
.visit-card.v2 .open-now {
  padding: 0.4rem 0.8rem; border-radius: 999px;
  background: var(--cream); font-size: 0.66rem; color: var(--ink);
}
.visit-card.v2 .open-now.is-open { background: rgba(242, 194, 48, 0.22); }
.vc-slots { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.vc-slot {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 0.75rem; align-items: center;
  padding: 1rem 1.1rem; border-radius: 16px; background: var(--mustard-tint);
}
.vc-slot.is-night { background: var(--sky-tint); }
.vc-slot .vc-ic { grid-row: 1 / span 2; }
.vc-slot-name { font-size: 0.86rem; color: var(--mute); }
.vc-slot-time { font-weight: 700; font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.vc-ic {
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--paper); box-shadow: 0 0 0 1.5px rgba(21, 18, 14, 0.12);
}
.vc-ic svg, .vc-chips svg, .note-ic svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vc-ic .dot, .vc-chips .dot, .note-ic .dot { fill: var(--ink); stroke: none; }
.vc-slot .vc-ic svg { stroke: var(--mustard-ink); }
.vc-slot.is-night .vc-ic svg { stroke: var(--cobalt); }
.vc-addr {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.9rem; align-items: center;
  padding-top: 1.2rem; border-top: 1px solid var(--hairline);
}
.vc-ic.is-pin { background: var(--coral); box-shadow: none; }
.vc-ic.is-pin svg { stroke: var(--paper); }
.vc-addr .vc-big { font-size: 1.02rem; line-height: 1.5; margin: 0; }
.vc-dir {
  display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap;
  padding: 0.6rem 1rem; border-radius: 999px; background: var(--ink); color: var(--paper);
  font-family: var(--mark); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.vc-dir:hover { background: var(--mustard); color: var(--ink); }
html[lang|="ko"] .vc-dir, html[lang|="zh"] .vc-dir { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.84rem; }
.vc-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; padding-top: 1.2rem; border-top: 1px solid var(--hairline); }
.vc-chips a {
  display: inline-flex; align-items: center; gap: 0.5rem; min-height: 2.6rem;
  padding: 0.5rem 0.95rem; border-radius: 999px; background: var(--cream);
  font-size: 0.92rem; overflow-wrap: anywhere;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.vc-chips a:hover { background: var(--mustard); transform: translateY(-1px); }

.visit-notes.v2 { border-top: 0; padding-top: 0; gap: clamp(0.9rem, 2vw, 1.4rem); }
.visit-notes.v2 .note {
  padding: 1.3rem 1.4rem 1.4rem; border-radius: 20px; background: var(--paper);
  box-shadow: 0 0 0 1px rgba(21, 18, 14, 0.06);
}
.note-ic {
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 12px;
  background: var(--sky-tint); margin-bottom: 0.9rem;
}
.visit-notes.v2 .note:nth-child(2) .note-ic { background: var(--mustard-tint); }
.visit-notes.v2 .note:nth-child(3) .note-ic { background: #fde5dc; }
@media (max-width: 620px) {
  .vc-slots { grid-template-columns: minmax(0, 1fr); }
  .vc-addr { grid-template-columns: auto minmax(0, 1fr); }
  .vc-dir { grid-column: 1 / -1; justify-self: start; }
}

.msec .section-head {
  max-width: 680px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.msec .section-head .eyebrow { justify-content: center; }
.msec .section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.1; }
.msec .section-head .lede { margin-inline: auto; }

.msec .section-head { max-width: 900px; }
.msec .section-head h2 br { display: none; }

.hand {
  font-family: var(--script); font-weight: 400; font-style: normal;
  font-size: 1.22em; line-height: 0.9; letter-spacing: 0;
  color: var(--cobalt);
  padding-right: 0.06em;
}

.award h2 .hand { color: #06c167; }
.hand-coral { color: var(--coral); }

.grill .split-head h2::after { display: none; }
.pill-note {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.4rem; padding: 0.75rem 1.1rem 0.75rem 0.9rem;
  border: 0; border-radius: 999px; background: var(--mustard-tint);
  font-size: 0.98rem; line-height: 1.4;
}
.pn-emoji { font-size: 1.3rem; line-height: 1; }
.grill-photo { position: relative; margin: 0; }
.grill-top .grill-photo img { border: 0; border-radius: 24px; box-shadow: 0 24px 50px -24px rgba(21, 18, 14, 0.5); }
.sticker {
  position: absolute; top: -0.9rem; right: 1.2rem;
  padding: 0.55rem 1rem; border-radius: 999px;
  background: var(--coral); color: var(--paper);
  font-family: var(--ko); font-weight: 800; font-size: 0.95rem; letter-spacing: -0.01em;
  box-shadow: 0 8px 18px -8px rgba(21, 18, 14, 0.5);
  transform: rotate(6deg);
}

.bbq-deal { margin: 0 0 clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.bd-line { font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -0.01em; }
.bd-cards { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(0.9rem, 2vw, 1.4rem); margin-top: 1.4rem; text-align: left; }
.bd-card {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.3rem 1.4rem 1.4rem; border-radius: 22px;
  box-shadow: 0 14px 30px -20px rgba(21, 18, 14, 0.45);
  transition: transform 0.25s var(--ease);
}
.bd-card b { font-size: 1.1rem; letter-spacing: -0.01em; }
.bd-card span:last-child { color: var(--mute); font-size: 0.96rem; line-height: 1.5; }
.bd-emoji { font-size: 2rem; line-height: 1; margin-bottom: 0.4rem; }
.bd-card.c1 { background: var(--sky-tint); transform: rotate(-1.2deg); }
.bd-card.c2 { background: var(--mustard-tint); transform: rotate(1deg); }
.bd-card.c3 { background: #fde5dc; transform: rotate(-0.8deg); }
@media (hover: hover) { .bd-card:hover { transform: rotate(0) translateY(-3px); } }
@media (max-width: 760px) {
  .bd-cards { grid-template-columns: minmax(0, 1fr); }
  .pill-note { border-radius: 18px; align-items: flex-start; }
}

.bento .d-bar a {
  background:
    radial-gradient(ellipse 60% 90% at 12% 0%, rgba(255, 244, 200, 0.75), transparent 60%),
    linear-gradient(115deg, #ffd84f 0%, #f2c230 38%, #f5a93a 78%, #ef8a36 100%);
  align-items: center;
}
.bento .d-bar a > * { align-self: center; }

.grill-top.smoke-reveal { position: relative; }
.smoke-in { position: absolute; inset: -12% -6%; z-index: 3; pointer-events: none; display: none; }
.js .smoke-in { display: block; }
.smoke-in span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 208, 202, 0.95) 0%, rgba(214, 208, 202, 0.6) 40%, rgba(214, 208, 202, 0) 70%);
  filter: blur(14px); opacity: 0.95;
}
.smoke-in span:nth-child(1) { left: 0%;  top: 20%; width: 42%; height: 80%; --d: 0.05s; }
.smoke-in span:nth-child(2) { left: 22%; top: 0%;  width: 38%; height: 70%; --d: 0.25s; }
.smoke-in span:nth-child(3) { left: 45%; top: 25%; width: 40%; height: 85%; --d: 0.1s; }
.smoke-in span:nth-child(4) { left: 62%; top: 5%;  width: 40%; height: 75%; --d: 0.35s; }
.smoke-in span:nth-child(5) { left: 10%; top: 50%; width: 45%; height: 60%; --d: 0.2s; }
.smoke-in span:nth-child(6) { left: 50%; top: 55%; width: 48%; height: 55%; --d: 0.4s; }
.smoke-in span:nth-child(7) { left: 30%; top: 35%; width: 40%; height: 55%; --d: 0.15s; }
.js .smoke-reveal.is-in .smoke-in span { animation: smoke-clear 2.6s cubic-bezier(0.3, 0.6, 0.3, 1) var(--d) forwards; }
@keyframes smoke-clear {
  0% { opacity: 0.95; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(12px, -90px) scale(1.7); }
}

.smoke-reveal .reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 1.8s var(--ease); }
.js .smoke-reveal .reveal:not(.is-in) { filter: blur(10px); }
.js .smoke-reveal .reveal.is-in { transition-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  .js .smoke-in { display: none; }
  .js .smoke-reveal .reveal:not(.is-in) { filter: none; }
}

.mg {
  border: 0; border-radius: 24px; background: var(--paper);
  box-shadow: 0 18px 40px -24px rgba(21, 18, 14, 0.4), 0 0 0 1px rgba(21, 18, 14, 0.06);
}
.mg-img { border-bottom: 0; }
.mg-body { padding: 0 1.4rem 0.8rem; }
.mg-body > .mg-emoji,
.mg-body > .mg-en,
.mg-body > .mi-cjk,
.mg-body > .mi-desc { position: relative; }
.mg-body::before {
  content: ""; display: block; height: 0.5rem;
}
.mg-emoji {
  display: grid; place-items: center; width: 3rem; height: 3rem; margin: 0.9rem 0 0.7rem;
  border-radius: 16px; font-size: 1.6rem; line-height: 1; background: var(--mustard-tint);
}
#rice .mg:nth-child(3n+2) .mg-emoji { background: var(--sky-tint); }
#rice .mg:nth-child(3n) .mg-emoji { background: #fde5dc; }
.mg-en { font-size: 1.35rem; }
.mg-rows { border-top: 1px solid var(--hairline); margin-top: 1rem; }
.mg-row { padding: 0.8rem 0; }
.mg-name { font-weight: 600; font-size: 1.02rem; }
#rice .mg-grid { display: block; columns: 2; column-gap: clamp(16px, 2.2vw, 28px); }
#rice .mg-grid .mg { break-inside: avoid; margin-bottom: clamp(16px, 2.2vw, 28px); }
@media (max-width: 1000px) { #rice .mg-grid { columns: 1; } }

.mg-body { padding-top: 1.2rem; }
.pill-note { padding-left: 1.1rem; }

.sticker { display: inline-flex; align-items: center; gap: 0.4rem; }
.sticker .tick { width: 1.25rem; height: 1.25rem; flex: none; }
.sticker .tick-badge { fill: var(--paper); }
.sticker .tick-mark { fill: none; stroke: var(--coral); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.patch.has-art { position: relative; }
.patch-art {
  display: block; align-self: flex-start; height: auto;
  padding: 0.5rem; border-radius: 14px; background: #fff;
  box-shadow: 0 8px 20px -14px rgba(21, 18, 14, 0.6);
}
.patch-art.is-wide { width: min(100%, 220px); }
.patch-art.is-tall { width: 96px; }
.patch-art.is-row { width: min(100%, 260px); }
.patch.is-cobalt .patch-art.is-wide { width: min(100%, 260px); }

@media (max-width: 1000px) {
  .visit-notes.v2 {
    display: flex; grid-template-columns: none; gap: 12px;
    margin-inline: -5vw; padding: 4px 5vw 14px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: 5vw;
    scrollbar-width: none;
  }
  .visit-notes.v2::-webkit-scrollbar { display: none; }
  .visit-notes.v2 .note { flex: 0 0 78%; max-width: 340px; scroll-snap-align: start; }
}

.visit-card.v2 .open-now::before { display: none; }
.visit-card.v2 .open-now { background: #fbe3dc; }
.visit-card.v2 .open-now.is-open { background: rgba(242, 194, 48, 0.25); }

@media (max-width: 760px) {
  .menu-tabs { position: relative; border-bottom: 0; }
  .menu-tabs::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 2.5rem; pointer-events: none;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.97));
  }
  .menu-tabs-inner {
    width: 100%; gap: 0.4rem;
    padding: 0.6rem 2.5rem 0.4rem 5vw;
    scroll-padding-inline: 5vw;
  }
  .menu-tabs a {
    padding: 0.5rem 0.85rem; border: 1.5px solid var(--hairline); border-radius: 999px;
    font-size: 0.7rem; letter-spacing: 0.1em; white-space: nowrap;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  }
  .menu-tabs a:hover { border-bottom-color: var(--hairline); }
  .menu-tabs a.is-here { background: var(--ink); color: var(--paper); border-color: var(--ink); }
}

.sticker .tick { width: 1.45rem; height: 1.45rem; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25)); }
.sticker .tick-badge { fill: #1d9bf0; stroke: var(--paper); stroke-width: 1.2; }
.sticker .tick-mark { stroke: #fff; stroke-width: 2.4; }

.patch.has-art .patch-art {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  margin: 0; padding: 0.35rem; border-radius: 10px;
  pointer-events: none;
}
.patch.has-art .patch-art.is-wide { width: 118px; transform: rotate(6deg); }
.patch.is-cobalt.has-art .patch-art.is-wide { width: 140px; }
.patch.has-art .patch-art.is-tall { width: 48px; transform: rotate(-7deg); }
.patch.has-art .patch-art.is-row { width: 150px; transform: rotate(4deg); }
@media (max-width: 620px) {
  .patch.has-art .patch-art.is-wide, .patch.is-cobalt.has-art .patch-art.is-wide { width: 92px; }
  .patch.has-art .patch-art.is-row { width: 110px; }
  .patch.has-art .patch-art.is-tall { width: 38px; }
}

.patch.has-art .patch-art { top: auto; bottom: 1rem; right: 1rem; }

.mf-search input {
  border: 1.5px solid transparent;
  background: var(--cream);
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  font-size: 0.98rem;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.mf-search input::placeholder { color: rgba(87, 80, 74, 0.8); }
.mf-search input:hover { border-color: var(--hairline); }
.mf-search input:focus, .mf-search input:focus-visible {
  background: var(--paper); border-color: var(--mustard);
  box-shadow: 0 0 0 4px rgba(242, 194, 48, 0.25);
}
.mf-search svg { left: 0.95rem; width: 17px; height: 17px; color: var(--coral); }
.mf-search input::-webkit-search-cancel-button { cursor: pointer; }
@media (max-width: 700px) { .mf-search input { padding-block: 0.6rem; font-size: 16px; } }
.patch.has-art:not(.w2) .patch-art.is-wide { width: 74px; bottom: 0.85rem; }
.patch.has-art .patch-art.is-row { width: 124px; bottom: 1.1rem; }

.ab-hero { position: relative; min-height: min(78svh, 720px); display: flex; align-items: flex-end; color: var(--on-photo); isolation: isolate; }
.ab-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: -2; }
.ab-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(14, 12, 9, 0.35), rgba(14, 12, 9, 0.2) 40%, rgba(14, 12, 9, 0.82)); }
.ab-hero-inner { padding: 9rem 0 clamp(3rem, 7vh, 5rem); text-align: center; display: flex; flex-direction: column; align-items: center; }
.ab-hero .eyebrow { color: rgba(246, 240, 228, 0.8); justify-content: center; }
.ab-hero .eyebrow .ko { color: var(--photo-cta); }
.ab-hero h1 { margin-top: 1rem; font-family: var(--ko); font-weight: 700; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: -0.04em; color: var(--on-photo); text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); }
html[lang|="zh"] .ab-hero h1 { font-family: var(--zh); letter-spacing: 0; line-height: 1.2; }
.ab-hero-lede { margin-top: 1.2rem; max-width: 46ch; font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: rgba(246, 240, 228, 0.9); }

.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.pillar { padding: clamp(1.4rem, 2.6vw, 2rem); border-radius: 24px; background: var(--cream); }
.pillar:nth-child(2) { background: var(--sky-tint); }
.pillar:nth-child(3) { background: var(--mustard-tint); }
.pl-n { display: block; font-family: var(--script); font-size: 2.4rem; line-height: 1; color: var(--coral); }
.pillar h2 { margin-top: 0.8rem; font-size: clamp(1.3rem, 1.9vw, 1.6rem); letter-spacing: -0.02em; }
.pillar p { margin-top: 0.6rem; color: var(--mute); }

.ab-award { background: var(--cream); }
.ab-award-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.ab-count { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; font-family: var(--ko); font-weight: 900; line-height: 1; }
.ab-45 { font-size: clamp(3rem, 6vw, 4.6rem); color: rgba(21, 18, 14, 0.18); letter-spacing: -0.04em; }
.ab-arrow { font-size: 2rem; color: var(--mute); font-weight: 400; }
.ab-1 { display: grid; place-items: center; width: clamp(4.2rem, 7vw, 5.6rem); height: clamp(4.2rem, 7vw, 5.6rem); border-radius: 50%; background: var(--ink); color: var(--mustard); font-size: clamp(2.6rem, 4.6vw, 3.6rem); }
.ab-award h2 { margin-top: 1.2rem; font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -0.03em; }
.ab-award .lede { margin-top: 1rem; }
.ab-award .aw-judge { margin: 1.8rem 0 2rem; }
.ab-win img { width: 100%; border-radius: 28px; box-shadow: 0 30px 60px -30px rgba(21, 18, 14, 0.55); transform: rotate(2deg); }

.ab-press { background: var(--sky-tint); }
.ab-press-inner { max-width: 900px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ab-paper { height: 30px; width: auto; }
.ab-quote {
  position: relative; margin: 2rem 0 0;
  font-family: var(--display); font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.3; letter-spacing: -0.01em; text-wrap: balance;
}
.ab-quote::before, .ab-quote::after { font-family: var(--display); color: var(--coral); font-size: 1.6em; line-height: 0; vertical-align: -0.35em; }
.ab-quote::before { content: "\201C"; margin-right: 0.08em; }
.ab-quote::after { content: "\201D"; margin-left: 0.04em; }
.ab-by { margin: 1.4rem 0 1.8rem; font-weight: 700; }
.ab-by span { font-weight: 400; color: var(--mute); }

.ab-strip { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1.3fr; gap: 12px; padding: 12px; background: var(--paper); }
.ab-strip img { width: 100%; height: clamp(180px, 22vw, 320px); object-fit: cover; border-radius: 18px; }

@media (max-width: 1000px) {
  .pillars, .ab-award-grid { grid-template-columns: minmax(0, 1fr); }
  .ab-win { max-width: 460px; }
  .ab-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .ab-hero { min-height: 72svh; }
  .ab-hero-inner { padding-top: 10rem; }
  .ab-strip img { height: 160px; }
}

.bd-card.c1 { background: linear-gradient(140deg, #f3fbff 0%, #dcefff 55%, #c8e6fb 100%); }
.bd-card.c2 { background: linear-gradient(140deg, #fffaea 0%, #ffefbf 55%, #ffe29a 100%); }
.bd-card.c3 { background: linear-gradient(140deg, #fff4f0 0%, #fde0d6 55%, #fbcdbd 100%); }
.ab-award h2 .hand, .teaser h2 .hand { color: #06c167; }

@media (max-width: 700px) {
  .bento .d-bar a {
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    text-align: left; gap: 0.9rem; padding: 1.6rem 1.4rem;
  }
  .bento .d-bar .door-type { align-items: flex-start; }
  .bento .d-bar .door-type .ko { font-size: 3.4rem; }
  .bento .d-bar .door-type .script { font-size: 2rem; margin-top: 0.2rem; }
  .bar-line { font-size: 1.25rem; line-height: 1.3; }
  .bento .d-bar .door-label {
    position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.3rem;
    margin: 0; padding-right: 3.2rem; min-height: 2.5rem;
    display: flex; align-items: center;
  }
  .bento .d-bar .door-label::after { top: 50%; bottom: auto; right: 0; transform: translateY(-50%); }
}

.ab-press-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ab-press-photo { margin: 0; }
.ab-press-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px; box-shadow: 0 30px 60px -30px rgba(21, 18, 14, 0.55); transform: rotate(-2.5deg); }
.ab-press-card {
  position: relative; overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem); border-radius: 28px; background: var(--paper);
  box-shadow: 0 24px 50px -28px rgba(21, 18, 14, 0.4);
}
.ab-press-card::before {
  content: "\201C"; position: absolute; right: 1.2rem; top: -2.2rem;
  font-family: var(--display); font-weight: 700; font-size: 16rem; line-height: 1;
  color: var(--coral); opacity: 0.1; pointer-events: none;
}
.ab-press-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ab-press-card .ab-paper { height: 26px; }
.ab-tag { padding: 0.35rem 0.8rem; border-radius: 999px; background: var(--sky-tint); font-family: var(--mark); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
html[lang|="ko"] .ab-tag, html[lang|="zh"] .ab-tag { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.8rem; }
.ab-press-card .ab-quote { margin: 1.6rem 0 0; font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.32; text-align: left; text-wrap: pretty; }
.ab-press-card .ab-quote::before, .ab-press-card .ab-quote::after { content: none; }
.ab-quote mark { background: linear-gradient(transparent 58%, rgba(242, 194, 48, 0.65) 58%); color: inherit; padding: 0 0.05em; }
.ab-press-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; padding-top: 1.3rem; border-top: 1px solid var(--hairline); }
.ab-press-foot .ab-by { margin: 0; }
.ab-read {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.7rem 1.2rem; border-radius: 999px; background: var(--ink); color: var(--paper);
  font-family: var(--mark); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.ab-read:hover { background: var(--mustard); color: var(--ink); }
html[lang|="ko"] .ab-read, html[lang|="zh"] .ab-read { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.86rem; }
@media (max-width: 1000px) {
  .ab-press-grid { grid-template-columns: minmax(0, 1fr); }
  .ab-press-photo { max-width: 420px; }
  .ab-press-photo img { aspect-ratio: 3 / 2; }
}

.ab-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); text-wrap: balance; }
@media (min-width: 761px) { .ab-hero h1 { white-space: nowrap; } }
.ab-hero h1 br { display: none; }

.ab-stack { position: relative; width: min(100%, 480px); justify-self: center; margin: 2rem 1.5rem 5rem 2.5rem; }
.ab-stack .st-front {
  position: relative; z-index: 2; width: 100%;
  border-radius: 24px; border: 6px solid var(--paper);
  box-shadow: 0 30px 60px -28px rgba(21, 18, 14, 0.6);
  transform: rotate(3deg);
}
.ab-stack .st-back {
  position: absolute; z-index: 1; left: -18%; top: 8%; width: 82%;
  border-radius: 20px; border: 6px solid var(--paper);
  box-shadow: 0 20px 40px -24px rgba(21, 18, 14, 0.5);
  transform: rotate(-8deg);
}
.ab-stack .aw-reel { z-index: 3; left: -1.5rem; bottom: -3.4rem; }
@media (max-width: 1000px) { .ab-stack { margin: 3rem auto 5rem; } }
@media (max-width: 560px) {
  .ab-stack { margin: 2.5rem 0.8rem 5rem 1.8rem; }
  .ab-stack .st-back { left: -8%; }
  .ab-stack .aw-reel { left: -0.6rem; right: 0.6rem; bottom: -3.8rem; }
}
.ab-stack .st-back { left: -30%; top: -3%; width: 80%; }
@media (max-width: 560px) { .ab-stack .st-back { left: -12%; top: -6%; width: 70%; } }

.ab-stack { margin-top: 4.5rem; }
.ab-stack .st-back { z-index: 3; left: -16%; top: -12%; width: 60%; transform: rotate(-6deg); }
@media (max-width: 560px) { .ab-stack { margin-top: 4rem; } .ab-stack .st-back { left: -6%; top: -9%; width: 58%; } }

@media (max-width: 700px) {
  .bento .d-bar a { align-items: center; justify-content: center; text-align: center; padding-bottom: 4.5rem; gap: 1.1rem; }
  .bento .d-bar .door-type { align-items: center; }
  .bento .d-bar .door-type .ko { font-size: 4.4rem; }
  .bento .d-bar .door-type .script { font-size: 2.5rem; }
  .bar-line { font-size: 1.45rem; }
}

@media (max-width: 760px) { .press-photo { display: none; } }

.ab-hero { min-height: min(94svh, 900px); }
.ab-hero-img { object-position: center 18%; }
.ab-hero::after { background: linear-gradient(to bottom, rgba(14, 12, 9, 0.35) 0%, rgba(14, 12, 9, 0) 22%, rgba(14, 12, 9, 0) 55%, rgba(14, 12, 9, 0.88) 88%); }
.ab-hero-inner { padding-bottom: clamp(1.8rem, 4vh, 3rem); }
.ab-hero-lede { max-width: 62ch; }
@media (max-width: 620px) {
  .ab-hero { min-height: 88svh; }
  .ab-hero-img { object-position: 50% 30%; }
}

.visit-notes.v2 .note { border: 0; box-shadow: 0 16px 34px -22px rgba(21, 18, 14, 0.45); transition: transform 0.25s var(--ease); }
.visit-notes.v2 .note:nth-child(1) { background: linear-gradient(140deg, #f3fbff 0%, #dcefff 60%, #c8e6fb 100%); transform: rotate(-1.2deg); }
.visit-notes.v2 .note:nth-child(2) { background: linear-gradient(140deg, #fffaea 0%, #ffefbf 60%, #ffe29a 100%); transform: rotate(0.9deg); }
.visit-notes.v2 .note:nth-child(3) { background: linear-gradient(140deg, #fff4f0 0%, #fde0d6 60%, #fbcdbd 100%); transform: rotate(-0.7deg); }
@media (hover: hover) { .visit-notes.v2 .note:hover { transform: rotate(0) translateY(-3px); } }
.visit-notes.v2 .note-ic, .visit-notes.v2 .note:nth-child(n) .note-ic { width: 2.9rem; height: 2.9rem; border-radius: 14px; background: var(--paper); box-shadow: 0 4px 10px -6px rgba(21, 18, 14, 0.4); }
.visit-notes.v2 .note-ic svg { width: 1.35rem; height: 1.35rem; }
.visit-notes.v2 .note h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
.visit-notes.v2 .note p { color: #3d3833; }

.ab-award .ab-judge {
  position: relative; margin: 2rem 0 0;
  padding: 1.3rem 1.5rem; border-radius: 22px; background: var(--paper);
  box-shadow: 0 18px 38px -24px rgba(21, 18, 14, 0.45);
  column-gap: 1.1rem; max-width: 560px;
}
.ab-award .ab-judge::after {
  content: ""; position: absolute; left: 2.4rem; bottom: -12px;
  width: 24px; height: 24px; background: var(--paper); transform: rotate(45deg);
  border-radius: 0 0 5px 0; box-shadow: 6px 6px 12px -8px rgba(21, 18, 14, 0.3);
}
.ab-award .ab-judge .judge-face { width: 4.4rem; height: 4.4rem; box-shadow: 0 0 0 3px var(--mustard); border-width: 2px; }
.ab-award .ab-judge blockquote { font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 600; line-height: 1.45; }
.ab-award .ab-judge figcaption { color: var(--coral-ink); font-weight: 500; }

.cta-band, .page-about .cta-band { background: var(--paper); border-top: 0; }
.cta-card {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 4rem);
  border-radius: 32px;
  background:
    radial-gradient(ellipse 70% 90% at 0% 0%, rgba(255, 236, 170, 0.9), transparent 60%),
    radial-gradient(ellipse 70% 90% at 100% 100%, rgba(251, 205, 189, 0.95), transparent 60%),
    var(--cream);
  box-shadow: 0 30px 60px -36px rgba(21, 18, 14, 0.45);
}
.cta-card h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.cta-card h2 br { display: none; }
@media (min-width: 900px) { .cta-card h2 { white-space: nowrap; } }
.cta-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: 1.4rem 0 0.4rem; }
.cta-chips li > * {
  display: inline-flex; align-items: center; min-height: 2.5rem;
  padding: 0.5rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem; color: var(--ink);
}
.cta-chips a { transition: background-color 0.2s var(--ease); }
.cta-chips a:hover { background: var(--mustard); }
.cta-card .hero-actions { margin-top: 1.6rem; }

.seal-bg { fill: url(#gold); stroke: #7a5a14; stroke-width: 2.5; }
.aw-seal text { fill: #3d2a06; }
.aw-seal .seal-no { fill: url(#goldText); }
.seal-core { stroke: #7a5a14; }

.judge-face,
.ab-award .ab-judge .judge-face {
  border: 0; padding: 3.5px;
  background: linear-gradient(135deg, #fff1b8 0%, #e8b84a 35%, #fbe7a1 55%, #c9962e 80%, #a87a1f 100%);
  box-shadow: 4px 4px 0 rgba(232, 184, 74, 0.45);
}
@media (max-width: 560px) { .aw-br { display: none; } }

@media (max-width: 1000px) {
  .visit-notes.v2 { padding-top: 1.2rem; padding-bottom: 2.8rem; margin-top: calc(clamp(3.5rem, 7vw, 5.5rem) - 1.2rem); margin-bottom: -2.8rem; }
}
@media (max-width: 700px) {
  .doors { padding-top: 0.8rem; padding-bottom: 2.4rem; margin-top: -0.8rem; margin-bottom: -2rem; }
}

.vc-slot { background: linear-gradient(135deg, #fffaea 0%, #ffefbf 60%, #ffe29a 100%); }
.vc-slot.is-night { background: linear-gradient(135deg, #f3fbff 0%, #dcefff 60%, #c8e6fb 100%); }
.vc-addr { grid-template-columns: auto minmax(0, 1fr) auto; }
@media (max-width: 620px) {
  .vc-addr { grid-template-columns: auto minmax(0, 1fr) auto; }
  .vc-dir { grid-column: auto; justify-self: end; width: 2.8rem; height: 2.8rem; padding: 0; justify-content: center; font-size: 1.1rem; }
  .vc-dir span { display: none; }
}

.visit-notes.v2 .note:nth-child(1) { background: linear-gradient(140deg, #f7f4ff 0%, #e9e1ff 60%, #d9ccfb 100%); }
.visit-notes.v2 .note:nth-child(2) { background: linear-gradient(140deg, #fff3f8 0%, #fcdcea 60%, #f7c6dc 100%); }
.visit-notes.v2 .note:nth-child(3) { background: linear-gradient(140deg, #fff6ee 0%, #ffe3cc 60%, #fdd0ad 100%); }

@media (min-width: 1001px) {
  .howto-head.is-centred { max-width: 980px; }
  .howto-head.is-centred .lede { max-width: 62ch; text-wrap: balance; }
}

.cta-card {
  background:
    radial-gradient(ellipse 60% 80% at 8% 0%, rgba(255, 224, 120, 0.85), transparent 60%),
    radial-gradient(ellipse 55% 80% at 100% 100%, rgba(247, 162, 120, 0.7), transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(255, 255, 255, 0.9), transparent 70%),
    linear-gradient(135deg, #fff6e4, #fde9d9);
}
.cta-kicker {
  display: inline-block; margin-bottom: 1rem; padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-family: var(--mark); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral-ink);
}
html[lang|="ko"] .cta-kicker, html[lang|="zh"] .cta-kicker { font-family: var(--ko); letter-spacing: 0.04em; font-size: 0.82rem; }
.cta-chips li > * { gap: 0.45rem; box-shadow: 0 6px 14px -10px rgba(21, 18, 14, 0.4); }
.cta-chips svg { width: 1rem; height: 1rem; flex: none; fill: none; stroke: var(--coral-ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cta-card .btn, .cta-card .btn[data-book]:not(.btn-ghost) {
  border-radius: 999px; padding: 1em 2em; animation: none !important;
  box-shadow: none; letter-spacing: 0.14em;
}
.cta-card .btn[data-book]:not(.btn-ghost) {
  background: var(--ink) !important; color: var(--paper) !important; border-color: var(--ink) !important;
}
.cta-card .btn[data-book]:not(.btn-ghost)::before, .cta-card .btn[data-book]:not(.btn-ghost)::after { display: none; }
.cta-card .btn[data-book]:not(.btn-ghost):hover { background: var(--coral) !important; border-color: var(--coral) !important; color: var(--paper) !important; }
.cta-card .btn-ghost { background: rgba(255, 255, 255, 0.85); border-color: rgba(21, 18, 14, 0.2); }
.cta-card .btn-ghost:hover { background: var(--paper); border-color: var(--ink); }

.aw-photo { position: relative; isolation: isolate; }
.aw-photo img { position: relative; box-shadow: none; border-radius: 14px; }
.aw-photo::before {
  content: ""; position: absolute; z-index: -1;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe07a 0%, #f2c230 35%, #f7a23a 70%, #ef5a2a 100%);
}
.aw-reel {
  background: linear-gradient(135deg, #fffdf6 0%, #fff1d6 55%, #fde0cf 100%);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--ink);
}
.aw-reel:hover { box-shadow: 9px 9px 0 var(--coral); }
.reel-thumb { border-radius: 8px; }
.cta-card h2 + .hero-actions { margin-top: 2rem; }

.cta-card { position: relative; overflow: hidden; isolation: isolate; }
.cta-photo {
  position: absolute; z-index: -1; top: 0; right: 0; bottom: 0; width: 58%; height: 100%;
  object-fit: cover; object-position: 60% 50%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 30%, #000 60%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 30%, #000 60%);
}
@media (min-width: 901px) {
  .cta-card { align-items: flex-start; text-align: left; padding-right: 48%; }
  .cta-card h2 { white-space: normal; }
  .cta-card .hero-actions { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .cta-card { padding-top: clamp(12rem, 52vw, 16rem); }
  .cta-photo {
    width: 100%; height: clamp(13rem, 58vw, 18rem); bottom: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  }
}

.ft-powered { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.35rem 0.55rem; }
.ft-bottom a.odn-link { display: inline-flex; align-items: center; border-bottom: 0; line-height: 0; transition: opacity 0.2s var(--ease); }
.ft-bottom a.odn-link:hover { opacity: 0.75; }
.odn-logo { display: block; height: 1.05rem; width: auto; }
@media (max-width: 620px) { .odn-logo { height: 1.15rem; } }

.cta-card { background: #17120f; color: var(--on-photo); }
.cta-card .cta-photo {
  inset: 0; width: 100%; height: 100%; z-index: -2;
  object-position: 62% 55%;
  -webkit-mask-image: none; mask-image: none;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(242, 194, 48, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 70% at 100% 100%, rgba(239, 90, 42, 0.26), transparent 65%),
    linear-gradient(90deg, rgba(14, 12, 9, 0.78) 0%, rgba(14, 12, 9, 0.5) 45%, rgba(14, 12, 9, 0.08) 80%);
}
.cta-card h2 { color: var(--on-photo); text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.cta-card .hand-coral { color: #ff8a5c; }

.cta-card .btn[data-book]:not(.btn-ghost) { background: var(--paper) !important; color: var(--ink) !important; border-color: var(--paper) !important; }
.cta-card .btn[data-book]:not(.btn-ghost):hover { background: var(--mustard) !important; border-color: var(--mustard) !important; color: var(--ink) !important; }
.cta-card .btn-ghost { background: rgba(255, 255, 255, 0.08); color: var(--on-photo); border-color: rgba(246, 240, 228, 0.6); backdrop-filter: blur(6px); }
.cta-card .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
@media (min-width: 901px) { .cta-card { padding-right: 50%; min-height: 380px; justify-content: center; } }
@media (max-width: 900px) {
  .cta-card { padding-top: clamp(9rem, 44vw, 13rem); }
  .cta-card .cta-photo { height: 100%; -webkit-mask-image: none; mask-image: none; }
  .cta-card::before {
    background:
      radial-gradient(ellipse 80% 50% at 0% 0%, rgba(242, 194, 48, 0.25), transparent 65%),
      radial-gradient(ellipse 80% 50% at 100% 100%, rgba(239, 90, 42, 0.25), transparent 65%),
      linear-gradient(to bottom, rgba(14, 12, 9, 0.05) 0%, rgba(14, 12, 9, 0.45) 45%, rgba(14, 12, 9, 0.85) 100%);
  }
}

.ft-powered { display: inline; }
.ft-bottom a.odn-link { display: inline-block; vertical-align: baseline; margin-left: 0.3em; line-height: 0; }
.odn-logo, .ft-bottom .odn-logo { display: block; height: 1.02em; width: auto; }
@media (max-width: 620px) { .odn-logo, .ft-bottom .odn-logo { height: 1.1em; } }

.ab-award { position: relative; isolation: isolate; overflow: hidden; background: linear-gradient(160deg, #fbf4e6 0%, #f7ecd9 100%); }
.ab-award::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M4 4h48v48H4V4zm8 8v32h32V12H12zm8 8h16v16H20V20zm6 6v4h4v-4h-4z' fill='none' stroke='%23b8862e' stroke-opacity='.16' stroke-width='1.6'/%3E%3C/svg%3E") 0 0 / 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 100% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 80% at 100% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%);
}
.ab-award::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; z-index: -1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='120' viewBox='0 0 220 120'%3E%3Cg fill='none' stroke='%23c2410c' stroke-opacity='.12' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M20 80c0-14 12-24 26-20 2-16 22-22 32-10 8-12 28-8 30 8 14-2 24 10 18 22H20z'/%3E%3Cpath d='M46 60c6 4 8 10 6 16M78 50c4 6 4 12 0 18M108 58c6 2 10 8 8 14'/%3E%3Cpath d='M140 36c0-10 9-17 19-14 2-11 16-15 23-7 6-8 20-6 21 6 10-1 17 7 13 15h-76z'/%3E%3C/g%3E%3C/svg%3E") 0 100% / 220px 120px repeat-x;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.cta-card .hand-coral {
  color: #e6b94a;
  background: linear-gradient(100deg, #b8862e 0%, #f3d27a 22%, #fff4cf 32%, #e6b94a 42%, #b8862e 60%, #f3d27a 80%, #b8862e 100%) 0 0 / 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(242, 194, 48, 0.35));
  padding: 0 0.12em 0.1em 0.04em;
  animation: gold-shine 5s ease-in-out infinite;
}
@keyframes gold-shine { 0% { background-position: 120% 0; } 45%, 100% { background-position: -30% 0; } }
@media (prefers-reduced-motion: reduce) { .cta-card .hand-coral { animation: none; } }

.ab-award::after { content: none; }

.ab-award::before {
  -webkit-mask-image:
    radial-gradient(ellipse 70% 80% at 100% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%),
    radial-gradient(ellipse 60% 70% at 0% 100%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%);
          mask-image:
    radial-gradient(ellipse 70% 80% at 100% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%),
    radial-gradient(ellipse 60% 70% at 0% 100%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%);
}

.btn[data-book]:not(.btn-ghost) { box-shadow: none; border-color: transparent !important; }
.btn[data-book]:not(.btn-ghost)::before,
.btn[data-book]:not(.btn-ghost)::after { content: none; animation: none; }

.visit { isolation: isolate; }
.visit::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M4 4h48v48H4V4zm8 8v32h32V12H12zm8 8h16v16H20V20zm6 6v4h4v-4h-4z' fill='none' stroke='%23b8862e' stroke-opacity='.16' stroke-width='1.6'/%3E%3C/svg%3E") 0 0 / 56px 56px;
  -webkit-mask-image:
    radial-gradient(ellipse 70% 80% at 100% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%),
    radial-gradient(ellipse 60% 70% at 0% 100%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%);
          mask-image:
    radial-gradient(ellipse 70% 80% at 100% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%),
    radial-gradient(ellipse 60% 70% at 0% 100%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 75%);
}

.ab-hero-lede { max-width: 92ch; text-wrap: balance; }
@media (max-width: 760px) {
  .ab-lede-more { display: none; }
  .ab-hero-lede { max-width: 30ch; }
}

.clip-by::before { content: none; }

.bd-br { display: none; }
@media (max-width: 760px) { .bd-br { display: inline; } }

@media (max-width: 760px) { .bd-line { font-size: min(1.1rem, 4.2vw); } }

.clip { overflow: hidden; }
.clip::before {
  content: "\201C"; position: absolute; right: 1.2rem; top: -2.2rem;
  font-family: var(--display); font-weight: 700; font-size: 16rem; line-height: 1;
  color: var(--coral); opacity: 0.1; pointer-events: none;
}
@media (max-width: 620px) { .clip::before { font-size: 11rem; top: -1.4rem; right: 0.8rem; } }

@media (max-width: 620px) {
  .patch.has-art .patch-art.is-wide,
  .patch.is-cobalt.has-art .patch-art.is-wide,
  .patch.has-art:not(.w2) .patch-art.is-wide,
  .patch.has-art .patch-art.is-row { width: 72px; bottom: 1rem; }
  .patch.has-art .patch-art.is-tall { width: 34px; bottom: 0.9rem; right: 1.6rem; }
  .patch.has-art { min-height: 8rem; }
  .patch.has-art:has(.is-tall) { min-height: 9.2rem; }
}

.press { position: relative; isolation: isolate; background-image: none; }
.press::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(29, 95, 174, 0.16) 1.2px, transparent 1.4px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, rgba(0,0,0,0.35) 75%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 45%, rgba(0,0,0,0.35) 75%, transparent 100%);
}

.vc-map {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border: var(--seam) solid var(--ink); border-radius: 16px;
  box-shadow: 5px 5px 0 var(--mustard);
  background: var(--cream);
}
.vc-map .map { display: block; width: 100%; height: 100%; }
.vc-map-attr {
  position: absolute; right: 0; bottom: 0; padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.88); border-top-left-radius: 8px;
  font-size: 0.62rem; color: var(--mute);
}
.vc-map-attr:hover { text-decoration: underline; }
.map .m-ground { fill: var(--cream); }
.map .m-grn    { fill: var(--sky-tint); stroke: var(--ink); stroke-width: 1; }
.map .m-park   { fill: #f3ead8; }
.map .m-ped    { fill: #fffaf0; }
.map .m-bld    { fill: var(--mustard-tint); stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round; fill-rule: evenodd; }
.map .m-lmk    { fill: var(--sky); stroke: var(--ink); stroke-width: 1.8; stroke-linejoin: round; fill-rule: evenodd; }
.map .m-foot   { display: none; }
.map .m-case   { fill: none; stroke: var(--ink); stroke-linecap: round; stroke-linejoin: round; }
.map .m-road   { fill: none; stroke: var(--paper); stroke-linecap: round; stroke-linejoin: round; }
.map .m-ped-line { fill: none; stroke: #fffaf0; stroke-linecap: round; stroke-linejoin: round; }
.map text { font-family: var(--mark); paint-order: stroke; stroke-linejoin: round; }
.map .m-st     { font-size: 13px; font-weight: 700; fill: var(--ink); stroke: var(--paper); stroke-width: 4px; text-anchor: middle; dominant-baseline: central; letter-spacing: 0.02em; }
.map .m-lm     { font-size: 17px; font-weight: 800; fill: var(--cobalt); stroke: var(--cream); stroke-width: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.map .m-north circle { fill: var(--paper); stroke: var(--ink); stroke-width: 2; }
.map .m-north path   { fill: var(--coral); stroke: var(--ink); stroke-width: 1.5; stroke-linejoin: round; }
.map .m-pinshadow, .map .m-tagshadow { fill: var(--ink); }
.map .m-pinbody { fill: var(--coral); stroke: var(--ink); stroke-width: 2.5; stroke-linejoin: round; }
.map .m-pindot  { fill: var(--paper); stroke: var(--ink); stroke-width: 2; }
.map .m-tag     { fill: var(--mustard); stroke: var(--ink); stroke-width: 2.5; }
.map .m-tagtxt  { font-family: var(--script); font-size: 25px; fill: var(--ink); stroke: none; }
@media (max-width: 620px) {
  .vc-map { aspect-ratio: 4 / 3; }
  .map .m-minor, .map .m-far { display: none; }
  .map .m-st { font-size: 16px; }
  .map .m-pin { transform: scale(1.25); }
}

.ft-grid { column-gap: clamp(2rem, 4.5vw, 4.5rem); padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.8rem, 5vw, 4rem); }
.ft-col h3 { margin-bottom: 1.1rem; }
.ft-nav ul { gap: 0.6rem; }
.ft-nav a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mark); font-weight: 600; font-size: 1.05rem; border-bottom: 0;
}
.ft-nav a::after { content: "\2192"; color: var(--coral); opacity: 0; transform: translateX(-6px); transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.ft-nav a:hover { color: var(--ink); }
.ft-nav a:hover::after { opacity: 1; transform: none; }
html[lang|="ko"] .ft-nav a, html[lang|="zh"] .ft-nav a { font-family: var(--ko); }
.ft-col address { margin-bottom: 1rem; line-height: 1.6; font-weight: 500; }
.ft-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.ft-col .ft-chips a {
  display: inline-flex; align-items: center; gap: 0.55rem; min-height: 2.5rem;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem; border: var(--seam) solid var(--ink); border-radius: 999px;
  background: var(--paper); font-size: 0.9rem; font-weight: 500;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.ft-col .ft-chips a:hover { color: var(--ink); background: var(--mustard); transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--ink); }
.ft-chips svg { width: 1.05rem; height: 1.05rem; flex: none; fill: none; stroke: var(--coral-ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ft-hours.v2 { gap: 0.6rem; }
.ft-hours.v2 div {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 0.75rem; align-items: center;
  max-width: 17rem; padding: 0.75rem 0.95rem; border: 0; border-radius: 14px; background: var(--mustard-tint);
}
.ft-hours.v2 .is-night { background: var(--sky-tint); }
.ft-hic { grid-row: 1 / span 2; display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 1.5px rgba(21, 18, 14, 0.12); }
.ft-hic svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: var(--mustard-ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ft-hours.v2 .is-night .ft-hic svg { stroke: var(--cobalt); }
.ft-hours.v2 dt { font-size: 0.82rem; line-height: 1.2; }
.ft-hours.v2 dd { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
@media (max-width: 620px) {
  .ft-chips { align-items: stretch; }
  .ft-hours.v2 div { max-width: none; }
}

.pillars-bar {
  gap: 0; margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--paper); border: var(--seam) solid var(--ink); border-radius: 20px;
  box-shadow: 6px 6px 0 var(--mustard);
}
.pillars-bar .pillar, .pillars-bar .pillar:nth-child(n) { background: none; border-radius: 0; }
.pillars-bar .pillar + .pillar { border-left: var(--seam) solid var(--ink); }
@media (max-width: 1000px) {
  .pillars-bar .pillar + .pillar { border-left: 0; border-top: var(--seam) solid var(--ink); }
}
.ab-award .pillars-bar .pillar h2 { margin-top: 0.8rem; font-size: clamp(1.3rem, 1.9vw, 1.6rem); letter-spacing: -0.02em; }

@media (max-width: 620px) {
  .ft-grid > .ft-col { grid-column: 1 / -1; }
  .ft-nav ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
  .ft-chips { align-items: flex-start; }
  .ft-col .ft-chips a { white-space: nowrap; }
}

@media (max-width: 620px) {
  .ab-hero { background: #0e0c09; overflow: hidden; }
  .ab-hero-img {
    top: 5.2rem; height: 131vw; bottom: auto; object-position: 47% 50%;
    -webkit-mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
  }
}

.ft-nav a, html[lang|="ko"] .ft-nav a, html[lang|="zh"] .ft-nav a { font-family: var(--ko); font-weight: 500; font-size: 1rem; }

@media (min-width: 701px) { .bento .d-bar .door-label { top: auto; bottom: auto; } }

.vc-map { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.vc-map:has(.vc-map-link:hover) { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--mustard); }
.vc-map-link { display: block; width: 100%; height: 100%; }
.vc-map-link:focus-visible { outline: 3px solid var(--cobalt); outline-offset: -3px; }
.vc-map-attr { z-index: 1; }

@media (max-width: 760px) {
  .comic { align-items: stretch; gap: 12px; }
  .comic .panel, .comic .p-sides, .comic .p-meokja {
    width: 82vw; max-width: 82vw; align-self: stretch;
    display: flex; flex-direction: column;
    background: var(--paper); border: var(--seam) solid var(--ink); border-radius: 18px;
    box-shadow: 4px 4px 0 var(--sky); overflow: hidden;
  }
  .comic .panel img {
    width: 100%; max-width: none; height: 64vw; object-fit: contain;
    padding: 10px; background: var(--cream);
  }
  .comic .panel figcaption {
    margin: 0; flex: 1; border: 0; border-top: var(--seam) solid var(--ink); border-radius: 0;
    padding: 0.8rem 1rem 0.95rem; font-size: 0.92rem; line-height: 1.5;
  }
  .comic .panel figcaption b { display: block; margin-bottom: 0.15rem; }
}

@media (max-width: 620px) {
  .visit-lead .hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .visit-lead .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 760px) { .comic .panel img { flex: 1 1 auto; min-height: 64vw; } }

.vc-apps { display: none; }
@media (max-width: 760px) {
  .vc-apps { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.4rem; }
  .vc-apps a {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 3rem;
    border: var(--seam) solid var(--ink); border-radius: 999px; background: var(--paper);
    font-weight: 600; font-size: 0.95rem; color: var(--ink);
  }
  .vc-apps a:first-child { background: var(--mustard); }
  .vc-apps a:active { transform: translate(1px, 1px); }
  .vc-apps svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: var(--ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
  .vc-addr .vc-dir { display: none; }
  .vc-addr { grid-template-columns: auto minmax(0, 1fr); }
}

.map .m-bld  { fill: #fbeecb; stroke: rgba(21, 18, 14, 0.28); stroke-width: 1; }
.map .m-lmk  { stroke-width: 1.5; }
.map .m-case { stroke: rgba(21, 18, 14, 0.85); }
.map .m-lm   { font-size: 14px; letter-spacing: 0.1em; stroke-width: 4px; }
.map .m-pulse {
  fill: var(--coral); opacity: 0;
  transform-box: fill-box; transform-origin: center;
  animation: map-pulse 2.6s ease-out infinite;
}
@keyframes map-pulse {
  0%   { transform: scale(0.4); opacity: 0.45; }
  100% { transform: scale(3.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .map .m-pulse { animation: none; opacity: 0; } }

.ab-stack .st-back { left: auto; right: -7%; top: -20%; width: 46%; transform: rotate(7deg); }
@media (max-width: 560px) { .ab-stack .st-back { right: -4%; top: -22%; width: 48%; } }
.ab-stack .st-front { transform: rotate(-2deg); }

.comic-nav { display: none; }
@media (min-width: 761px) {
  .comic {
    display: flex; flex-direction: row; align-items: stretch; gap: 22px;
    max-width: 1180px; margin-inline: auto;
    padding: 6px 4px 16px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: 4px;
    scrollbar-width: none; container-type: normal;
  }
  .comic::-webkit-scrollbar { display: none; }
  .comic-row { display: contents; }
  .p-charcoal { order: 1; } .p-sides { order: 2; } .p-bbq { order: 3; }
  .p-cook { order: 4; } .p-meokja { order: 5; }
  .comic .panel {
    flex: 0 0 auto; width: clamp(340px, 40%, 460px); min-width: 0;
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    background: var(--paper); border: var(--seam) solid var(--ink); border-radius: 20px;
    box-shadow: 5px 5px 0 var(--sky); overflow: hidden;
  }
  .comic .panel img {
    width: 100%; height: clamp(260px, 28vw, 340px); object-fit: contain;
    padding: 14px; background: var(--cream);
  }
  html[lang="en-GB"] .comic .panel figcaption { display: block; }
  html[lang="en-GB"] .comic .panel figcaption.cap-tr-only { display: none; }
  .comic .panel figcaption {
    margin: 0; flex: 1; border: 0; border-top: var(--seam) solid var(--ink); border-radius: 0;
    padding: 0.95rem 1.2rem 1.1rem; font-size: 0.98rem; line-height: 1.55;
  }
  .comic .panel figcaption b { display: block; margin-bottom: 0.2rem; }
  .comic-nav { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.2rem; }
  .comic-nav .comic-dots { display: flex; gap: 0.45rem; margin: 0; }
  .comic-dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(21, 18, 14, 0.2); transition: width 0.3s var(--ease), background-color 0.3s var(--ease); }
  .comic-dots span.is-on { width: 24px; background: var(--ink); }
  .comic-arrow {
    display: grid; place-items: center; width: 46px; height: 46px; border-radius: 999px;
    background: var(--paper); border: var(--seam) solid var(--ink); color: var(--ink);
    box-shadow: 3px 3px 0 var(--mustard); cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
  }
  .comic-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
  .comic-arrow:hover:not(:disabled) { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--mustard); }
  .comic-arrow:disabled { opacity: 0.3; cursor: default; box-shadow: none; }
  .comic-arrow:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; }
}

@media (max-width: 760px) {
  .comic-nav { display: block; }
  .comic-arrow { display: none; }
}
@media (min-width: 761px) {

  .comic .panel img { flex: 1 1 0; height: auto; min-height: clamp(260px, 28vw, 340px); }

  .comic.can-next { -webkit-mask-image: linear-gradient(to right, #000 88%, transparent); mask-image: linear-gradient(to right, #000 88%, transparent); }
  .comic.can-prev { -webkit-mask-image: linear-gradient(to left, #000 88%, transparent); mask-image: linear-gradient(to left, #000 88%, transparent); }
  .comic.can-prev.can-next { -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
}

.press { padding-bottom: clamp(2rem, 4.5vw, 3.75rem); }
.howto { padding-top: clamp(2rem, 4.5vw, 3.75rem); }

@media (min-width: 761px) {
  .comic { gap: 18px; }
  .comic .panel { width: clamp(290px, 33%, 390px); border-radius: 18px; }
  .comic .panel img { min-height: clamp(220px, 23vw, 285px); padding: 12px; }
  .comic .panel figcaption { padding: 0.8rem 1.05rem 0.95rem; font-size: 0.9rem; line-height: 1.5; }
}

.page-head.has-photo {
  position: relative; isolation: isolate; overflow: hidden;
  background: #0e0c09; color: var(--on-photo);
  display: flex; align-items: flex-end;
  min-height: clamp(440px, 64vh, 600px);
  padding: 8rem 0 clamp(2.5rem, 5vw, 3.75rem);
}
.page-head.has-photo .shell { flex: 0 0 auto; width: var(--shell); }
.phm-photo { position: absolute; inset: 0; z-index: -2; margin: 0; }
.phm-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 55%; }
.page-head.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 12, 9, 0.82) 0%, rgba(14, 12, 9, 0.55) 45%, rgba(14, 12, 9, 0.1) 80%),
    linear-gradient(to top, rgba(14, 12, 9, 0.55), rgba(14, 12, 9, 0) 45%);
}
.page-head.has-photo h1 { color: var(--on-photo); text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); }
.page-head.has-photo .eyebrow { color: rgba(246, 240, 228, 0.8); }
.page-head.has-photo .eyebrow .ko { color: var(--photo-cta); }
.page-head.has-photo .lede { color: rgba(246, 240, 228, 0.9); max-width: 46ch; }
.page-head.has-photo .btn:not(.btn-ghost) { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.page-head.has-photo .btn:not(.btn-ghost):hover { background: var(--mustard); border-color: var(--mustard); }
.page-head.has-photo .btn-ghost { color: var(--on-photo); border-color: rgba(246, 240, 228, 0.75); background: transparent; }
.page-head.has-photo .btn-ghost:hover { background: rgba(246, 240, 228, 0.12); }
@media (max-width: 620px) {
  .page-head.has-photo { min-height: 78svh; padding-top: 7rem; }
  .phm-photo img { object-position: 62% 50%; }
  .page-head.has-photo::after { background: linear-gradient(to top, rgba(14, 12, 9, 0.9) 0%, rgba(14, 12, 9, 0.55) 55%, rgba(14, 12, 9, 0.2) 100%); }
}

.patch.is-fave {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, #f6d25e 0%, #f2c230 45%, #f0a93a 100%);
}
.patch.is-fave:hover { background: linear-gradient(135deg, #f8da72 0%, #f4c93f 45%, #f3b14a 100%); }
.patch.is-fave::after {
  content: ""; position: absolute; inset: -20% auto -20% -60%; width: 45%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: fave-shine 4.5s ease-in-out infinite;
}
@keyframes fave-shine { 0% { left: -60%; } 45%, 100% { left: 130%; } }
.fave-badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.38rem 0.8rem 0.38rem 0.6rem; border-radius: 999px;
  background: var(--ink); color: var(--mustard);
  font-family: var(--mark); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 6px 16px -8px rgba(21, 18, 14, 0.6);
}
.fave-badge svg { width: 14px; height: 14px; fill: currentColor; animation: fave-twinkle 2.2s ease-in-out infinite; }
@keyframes fave-twinkle { 0%, 100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.25) rotate(18deg); } }
html[lang|="ko"] .fave-badge, html[lang|="zh"] .fave-badge { font-family: var(--ko); letter-spacing: 0.02em; font-size: 0.8rem; }
@media (prefers-reduced-motion: reduce) { .patch.is-fave::after, .fave-badge svg { animation: none; } .patch.is-fave::after { display: none; } }

@media (max-width: 620px) {
  .patch.is-fave { padding-top: 3.3rem; }
  .fave-badge { position: absolute; top: 1rem; left: 1.2rem; }
}

.dine-note {
  display: flex; flex-direction: column; gap: 0.3rem; max-width: 420px;
  margin-top: 1.6rem; padding: 1.1rem 1.3rem 1.2rem 1.3rem;
  border: 0; border-radius: 20px;
  background: linear-gradient(140deg, #fff4f0 0%, #fde0d6 55%, #fbcdbd 100%);
  box-shadow: 0 14px 30px -20px rgba(21, 18, 14, 0.45);
  transform: rotate(-1.2deg);
  transition: transform 0.25s var(--ease);
}
@media (hover: hover) { .dine-note:hover { transform: rotate(0) translateY(-3px); } }
.dine-note b { display: flex; align-items: center; gap: 0.45rem; font-size: 1.08rem; letter-spacing: -0.01em; }
.dine-note b::before {
  content: ""; width: 18px; height: 18px; flex: none;
  background: var(--coral);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5c1.3 3.2 5.6 5.6 5.6 10.4a5.6 5.6 0 0 1-11.2 0c0-2.6 1.5-4.3 2.8-5.5.2 1.8 1 3 2.2 3.5-.4-3.2 0-5.8.6-8.4z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5c1.3 3.2 5.6 5.6 5.6 10.4a5.6 5.6 0 0 1-11.2 0c0-2.6 1.5-4.3 2.8-5.5.2 1.8 1 3 2.2 3.5-.4-3.2 0-5.8.6-8.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.dine-note span { color: var(--mute); font-size: 0.96rem; line-height: 1.5; }

.mf-search input, .mf-search input::placeholder { font-family: var(--mark); font-weight: 500; letter-spacing: 0.02em; }
html[lang|="ko"] .mf-search input, html[lang|="zh"] .mf-search input,
html[lang|="ko"] .mf-search input::placeholder, html[lang|="zh"] .mf-search input::placeholder { font-family: var(--ko); letter-spacing: 0; }

.vc-map-attr {
  padding: 0.15rem 0.5rem 0.2rem; background: rgba(251, 244, 230, 0.6);
  font-size: 0.56rem; color: rgba(21, 18, 14, 0.5); border-top-left-radius: 6px;
}
.vc-map-attr:hover, .vc-map-attr:focus-visible { color: var(--ink); }

.comic .panel figcaption { font-family: var(--mark); letter-spacing: 0.01em; }
.comic .panel figcaption b { font-weight: 700; }
html[lang|="ko"] .comic .panel figcaption, html[lang|="zh"] .comic .panel figcaption { font-family: var(--ko); letter-spacing: 0; }

.vp-head { padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.vp-head .lede { max-width: 52ch; }
.vp-main { padding-top: clamp(3rem, 6vw, 5rem); }
.vp-ways { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.vp-ways li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.vp-ways b { display: block; font-size: 1.05rem; letter-spacing: -0.01em; }
.vp-ways p { margin: 0.2rem 0 0; color: var(--mute); line-height: 1.55; }
.vp-ways p b { display: inline; font-size: inherit; color: var(--ink); }
.vp-ic {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: var(--mustard-tint); color: var(--ink);
}
.vp-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vp-sec-head { max-width: 640px; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.vp-sec-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 0.6rem; }
.vp-sec-head .lede { margin-top: 0.9rem; }
.vp-parking { background: var(--cream); }
.vp-parks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.vp-park {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 1.2rem; align-items: center;
  padding: 1.05rem 1.3rem; border-radius: 18px; background: var(--paper);
  box-shadow: 0 14px 30px -24px rgba(21, 18, 14, 0.45);
}
.vp-park b { display: block; font-size: 1.08rem; letter-spacing: -0.01em; }
.vp-park div span { color: var(--mute); font-size: 0.94rem; }
.vp-walk { font-family: var(--mark); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); white-space: nowrap; }
.vp-walk b { font-size: 1.35rem; letter-spacing: 0; color: var(--coral); }
.vp-go {
  font-family: var(--mark); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.6rem 1rem; border-radius: 999px; background: var(--ink); color: var(--paper); white-space: nowrap;
  transition: background-color 0.2s var(--ease);
}
.vp-go:hover { background: var(--coral); }
.vp-small { margin-top: 1.1rem; color: var(--mute); font-size: 0.88rem; }
.vp-spots { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(0.9rem, 2vw, 1.3rem); }
.vp-spot {
  padding: 1.3rem 1.4rem 1.4rem; border-radius: 22px;
  box-shadow: 0 14px 30px -22px rgba(21, 18, 14, 0.45);
}
.vp-spot:nth-child(3n+1) { background: linear-gradient(140deg, #f3fbff 0%, #dcefff 55%, #c8e6fb 100%); transform: rotate(-0.8deg); }
.vp-spot:nth-child(3n+2) { background: linear-gradient(140deg, #fffaea 0%, #ffefbf 55%, #ffe29a 100%); transform: rotate(0.7deg); }
.vp-spot:nth-child(3n)   { background: linear-gradient(140deg, #fff4f0 0%, #fde0d6 55%, #fbcdbd 100%); transform: rotate(-0.5deg); }
.vp-spot h3 { margin-top: 0.5rem; font-size: 1.15rem; letter-spacing: -0.01em; }
.vp-spot p { margin-top: 0.35rem; color: var(--mute); line-height: 1.5; font-size: 0.95rem; }
.vp-tips { padding-top: 0; }
.vp-tips .visit-notes { margin-top: 0; }
@media (max-width: 900px) { .vp-spots { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .vp-spots { grid-template-columns: minmax(0, 1fr); }
  .vp-park { grid-template-columns: minmax(0, 1fr) auto; row-gap: 0.7rem; }
  .vp-park .vp-go { grid-column: 1 / -1; justify-self: start; }
}

.vp-around { background: var(--paper); }
.vp-around-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.vp-around-grid .vp-sec-head { position: sticky; top: 7rem; margin: 0; }
.vp-route { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 1rem; }
.vp-route::before {
  content: ""; position: absolute; left: 27px; top: 22px; bottom: 34px; width: 0;
  border-left: 4px dashed var(--mustard); z-index: 0;
}
.vr-start, .vr-stop { position: relative; z-index: 1; display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 1rem; align-items: center; }
.vr-dot {
  justify-self: center; width: 26px; height: 26px; border-radius: 999px;
  background: var(--coral); border: 4px solid var(--paper); box-shadow: 0 0 0 3px var(--coral);
  animation: vr-ping 2.4s ease-out infinite;
}
@keyframes vr-ping { 0% { box-shadow: 0 0 0 3px var(--coral), 0 0 0 3px rgba(239, 90, 42, 0.35); } 100% { box-shadow: 0 0 0 3px var(--coral), 0 0 0 16px rgba(239, 90, 42, 0); } }
.vr-here b { display: block; font-size: 1.2rem; letter-spacing: -0.01em; }
.vr-here span { color: var(--mute); font-size: 0.92rem; }
.vr-time {
  justify-self: center; display: grid; place-items: center; align-content: center;
  width: 54px; height: 54px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  box-shadow: 0 0 0 5px var(--paper);
  font-family: var(--mark); line-height: 1;
}
.vr-time b { font-size: 1.3rem; font-weight: 700; color: var(--mustard); }
.vr-time span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.15rem; }
.vr-card {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; align-items: start;
  padding: 1.05rem 1.25rem 1.1rem; border-radius: 18px; background: var(--cream);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.vr-stop:hover .vr-card { transform: translateX(4px); border-color: var(--ink); background: var(--paper); }
.vr-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--paper); box-shadow: 0 6px 14px -10px rgba(21, 18, 14, 0.5); }
.vr-stop:nth-child(3n+2) .vr-ic { background: var(--sky-tint); }
.vr-stop:nth-child(3n) .vr-ic { background: var(--mustard-tint); }
.vr-stop:nth-child(3n+1) .vr-ic { background: #fde5dc; }
.vr-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.vr-text h3 { font-size: 1.08rem; letter-spacing: -0.01em; }
.vr-text p { margin-top: 0.25rem; color: var(--mute); font-size: 0.94rem; line-height: 1.5; }
.vr-map { display: inline-block; margin-top: 0.45rem; font-family: var(--mark); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); }
.vr-map:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .vr-dot { animation: none; } }
@media (max-width: 900px) {
  .vp-around-grid { grid-template-columns: minmax(0, 1fr); }
  .vp-around-grid .vp-sec-head { position: static; }
}
@media (max-width: 560px) {
  .vr-start, .vr-stop { grid-template-columns: 48px minmax(0, 1fr); gap: 0.7rem; }
  .vp-route::before { left: 22px; }
  .vr-time { width: 46px; height: 46px; }
  .vr-card { grid-template-columns: minmax(0, 1fr); padding: 0.95rem 1rem; }
  .vr-ic { width: 38px; height: 38px; }
}

.nf { background: var(--cream); padding: clamp(9rem, 16vw, 11rem) 0 clamp(4rem, 8vw, 6rem); text-align: center; border-bottom: var(--seam) solid var(--ink); }
.nf-inner { display: flex; flex-direction: column; align-items: center; }
.nf-code { display: flex; align-items: center; gap: 0.1em; font-family: var(--ko); font-weight: 800; font-size: clamp(5.5rem, 16vw, 11rem); line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.nf-o { display: inline-grid; width: 0.82em; height: 0.82em; }
.nf-o svg { width: 100%; height: 100%; animation: nf-spin 14s linear infinite; }
.nf-o circle { fill: #2b2521; stroke: var(--coral); stroke-width: 10; }
.nf-o path { fill: none; stroke: #cfc6bb; stroke-width: 3; }
@keyframes nf-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .nf-o svg { animation: none; } }
.nf h1 { margin-top: 1.4rem; font-family: var(--ko); font-weight: 700; font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -0.03em; }
.nf .lede { margin-top: 0.9rem; max-width: 46ch; }
.nf-actions { justify-content: center; margin-top: 2rem; }

.vp-head.has-photo .phm-photo img { object-position: 50% 22%; }

.vr-dot {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--paper); border: 0; box-shadow: 0 0 0 3px var(--coral);
  font-size: 1.45rem; line-height: 1;
}
@keyframes vr-ping { 0% { box-shadow: 0 0 0 3px var(--coral), 0 0 0 3px rgba(239, 90, 42, 0.35); } 100% { box-shadow: 0 0 0 3px var(--coral), 0 0 0 14px rgba(239, 90, 42, 0); } }
@media (max-width: 560px) { .vr-dot { width: 40px; height: 40px; font-size: 1.25rem; } }

.drink-lists { display: grid; gap: clamp(2rem, 4vw, 2.8rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.dl-group > .eyebrow { margin-bottom: 1rem; }
.mi-from { font-family: var(--mark); font-size: 0.68em; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin-right: 0.15em; }

.vp-head.has-photo .phm-photo img { object-position: 60% 50%; }

.kfc-callout { position: absolute; z-index: 3; top: 5%; left: -7%; width: 62%; pointer-events: none; }
.kc-text {
  display: inline-block; transform: rotate(-9deg);
  font-family: var(--script); font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1; white-space: nowrap;
  color: var(--mustard);
  -webkit-text-stroke: 1.5px var(--ink); paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--coral), 3px 3px 0 var(--coral);
}
.kc-arrow { display: block; width: 46%; margin: -0.2rem 0 0 38%; overflow: visible; }
.kc-arrow path { fill: none; stroke: var(--paper); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.kc-arrow .kc-line { stroke-dasharray: 260; stroke-dashoffset: 260; }
.kfc-frame.is-in .kc-arrow .kc-line { animation: kc-draw 1.1s 0.5s var(--ease) forwards; }
.kc-arrow .kc-head { opacity: 0; }
.kfc-frame.is-in .kc-arrow .kc-head { animation: kc-head 0.3s 1.5s ease-out forwards; }
@keyframes kc-draw { to { stroke-dashoffset: 0; } }
@keyframes kc-head { to { opacity: 1; } }
.kc-arrow path { filter: drop-shadow(2px 2px 0 rgba(21, 18, 14, 0.85)); }
@media (prefers-reduced-motion: reduce) {
  .kc-arrow .kc-line { stroke-dashoffset: 0; animation: none !important; }
  .kc-arrow .kc-head { opacity: 1; animation: none !important; }
}
@media (max-width: 620px) {
  .kfc-callout { left: -3%; top: 3%; width: 70%; }
  .kc-text { font-size: 1.7rem; }
}

.comic .panel figcaption b { font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.86em; }
html[lang|="ko"] .comic .panel figcaption b, html[lang|="zh"] .comic .panel figcaption b { letter-spacing: 0; font-size: 1em; }

.comic .panel figcaption b { display: block; margin-bottom: 0.7rem; }

.kc-arrow .kc-line, .kc-arrow .kc-head { stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 1; animation: none; }
.kc-text { clip-path: inset(-20% 100% -20% -5%); }
.kfc-frame.is-in .kc-text { animation: kc-write 1s 0.2s cubic-bezier(0.5, 0, 0.3, 1) forwards; }
.kfc-frame.is-in .kc-arrow .kc-line { animation: kc-draw 0.9s 1.15s ease-in-out forwards; }
.kfc-frame.is-in .kc-arrow .kc-head { animation: kc-draw 0.28s 2.02s ease-out forwards; }
@keyframes kc-write { to { clip-path: inset(-20% -5% -20% -5%); } }
@keyframes kc-draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .kc-text { clip-path: none; animation: none !important; }
  .kc-arrow .kc-line, .kc-arrow .kc-head { stroke-dashoffset: 0; animation: none !important; }
}

.kc-word { display: block; width: 100%; overflow: visible; transform: rotate(-9deg); transform-origin: 0 100%; }
.kc-word text { font-family: var(--script); font-size: 64px; }
.kc-ink {
  fill: var(--mustard); fill-opacity: 0;
  stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round;
  stroke-dasharray: 140; stroke-dashoffset: 140;
  clip-path: inset(-30% 100% -30% -2%);
}
.kc-shadow { fill: var(--coral); opacity: 0; }
.kfc-frame.is-in .kc-ink { animation: kc-pen 1.5s 0.2s cubic-bezier(0.45, 0.05, 0.35, 1) forwards, kc-fill 0.45s 1.55s ease-out forwards; }
.kfc-frame.is-in .kc-shadow { animation: kc-shade 0.4s 1.75s ease-out forwards; }
@keyframes kc-pen { 60% { clip-path: inset(-30% 0 -30% -2%); } 100% { clip-path: inset(-30% -2% -30% -2%); stroke-dashoffset: 0; } }
@keyframes kc-fill { to { fill-opacity: 1; } }
@keyframes kc-shade { to { opacity: 1; } }
.kfc-frame.is-in .kc-arrow .kc-line { animation-delay: 1.9s; }
.kfc-frame.is-in .kc-arrow .kc-head { animation-delay: 2.78s; }
@media (prefers-reduced-motion: reduce) {
  .kc-ink { clip-path: none; stroke-dashoffset: 0; fill-opacity: 1; animation: none !important; }
  .kc-shadow { opacity: 1; animation: none !important; }
}
@media (max-width: 620px) { .kc-word text { font-size: 64px; } }

.kc-ink { stroke: #fff4cf; stroke-width: 1.8; }
@keyframes kc-fill { to { fill-opacity: 1; stroke: var(--ink); stroke-width: 1.6; } }


@media (max-width: 620px) {
  .ft-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
  .ft-nav li { border-bottom: 1px solid var(--hairline); }
  .ft-nav a { display: flex; justify-content: space-between; width: 100%; padding: 0.8rem 0; font-size: 1rem; }
  .ft-nav a::after { opacity: 1; transform: none; }
  .ft-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .ft-chips li:first-child { grid-column: 1 / -1; }
  .ft-col .ft-chips a { display: flex; justify-content: center; width: 100%; min-height: 2.9rem; padding: 0.5rem 0.7rem; font-size: 0.88rem; }
  .ft-col address { margin-bottom: 1.1rem; }
}

@media (max-width: 760px) { .menu-bar .menu-tabs-inner { padding-top: 0.9rem; } }

.ft-nav a, html[lang|="en-GB"] .ft-nav a { font-family: var(--mark); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; }
html[lang|="ko"] .ft-nav a, html[lang|="zh"] .ft-nav a { font-family: var(--ko); font-size: 0.95rem; letter-spacing: 0.02em; text-transform: none; }
@media (max-width: 760px) { .howto-head.is-centred .howto-title img, .howto-title img { width: min(76%, 235px); } }
@media (max-width: 620px) { .page-menu .page-head.has-photo { min-height: 64svh; padding-top: 6.5rem; } }

.mf-search input { background: var(--paper); border: 1.5px solid rgb(227, 221, 210); }
.mf-search input:hover { border-color: rgba(21, 18, 14, 0.3); }
.mf-search input:focus, .mf-search input:focus-visible { background: var(--paper); border-color: var(--mustard); }
@media (max-width: 760px) {
  .menu-bar .menu-tabs { padding-bottom: 0.45rem; }
  .mf-inner { gap: 0.75rem; padding-block: 0.8rem 0.9rem; }
  .mf-search { width: 100%; }
  .mf-search input { min-height: 46px; padding-block: 0.55rem; }
}

.bar-board { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.dp { position: relative; overflow: hidden; border-radius: 26px; padding: clamp(1.4rem, 2.6vw, 2rem); box-shadow: 0 22px 44px -30px rgba(21, 18, 14, 0.6); }
.dp-wine { grid-column: span 4; background: radial-gradient(120% 90% at 100% 0%, #3a2418 0%, #15120e 60%); color: var(--paper); }
.dp-beer { grid-column: span 2; background: linear-gradient(150deg, #fff7dc 0%, #ffe7a6 60%, #ffd46b 100%); }
.dp-soft { grid-column: span 4; background: linear-gradient(150deg, #f4fbff 0%, #dcefff 55%, #c3e3fa 100%); }
.dp-mock { grid-column: span 2; background: linear-gradient(150deg, #fff3ee 0%, #ffd9cc 55%, #fbbfae 100%); }
.dp-shake { grid-column: span 3; background: linear-gradient(150deg, #f7f3ff 0%, #e6dcff 55%, #d6c6fb 100%); }
.dp-tea { grid-column: span 3; background: linear-gradient(150deg, #fbf6ea 0%, #f3e7c9 60%, #ead9ae 100%); }
.dp::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); pointer-events: none; }
.dp-wine::after { background: rgba(242, 194, 48, 0.08); }

.dp-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.dp-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--paper); transform: rotate(-6deg); box-shadow: 3px 3px 0 var(--ink); border: var(--seam) solid var(--ink); flex: none; }
.dp-wine .dp-ic { background: var(--mustard); box-shadow: 3px 3px 0 var(--coral); }
.dp-ic svg { width: 26px; height: 26px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dp-ko { font-size: 0.8rem; font-weight: 600; color: var(--cobalt); line-height: 1.1; }
.dp-wine .dp-ko { color: var(--mustard); }
.dp-title { font-family: var(--script); font-weight: 400; font-size: clamp(1.8rem, 2.8vw, 2.3rem); line-height: 1; letter-spacing: 0; margin-top: 0.15rem; }
.dp-wine .dp-title { color: var(--paper); }
.dp-note { margin-left: auto; padding: 0.45rem 0.85rem; border-radius: 999px; background: var(--ink); color: var(--paper); font-family: var(--mark); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.dp-note b { color: var(--mustard); font-size: 1.05rem; letter-spacing: 0; }

.dp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(1.4rem, 3vw, 2.4rem); }
.dp-subh { font-family: var(--mark); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(21, 18, 14, 0.6); margin: 0.2rem 0 0.4rem; }
.dp-wine .dp-subh { color: rgba(246, 240, 228, 0.55); }
.dp-subh b { color: var(--coral); font-size: 1rem; letter-spacing: 0; margin-left: 0.3rem; }
.dr-list { list-style: none; margin: 0; padding: 0; }
.dr { padding: 0.55rem 0; }
.dr-top { display: flex; align-items: baseline; gap: 0.5rem; }
.dr .mi-en { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.dr-ko { font-size: 0.78rem; color: rgba(21, 18, 14, 0.55); white-space: nowrap; }
.dp-wine .dr-ko { color: rgba(246, 240, 228, 0.5); }
.dr-dots { flex: 1; min-width: 1rem; border-bottom: 2px dotted rgba(21, 18, 14, 0.25); transform: translateY(-4px); }
.dp-wine .dr-dots { border-color: rgba(246, 240, 228, 0.22); }
.dr .mi-price { font-family: var(--mark); font-weight: 700; font-size: 1.02rem; white-space: nowrap; }
.dr .mi-price small { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.dp-wine .mi-price { color: var(--mustard); }
.dr .mi-desc { margin-top: 0.1rem; font-size: 0.86rem; color: rgba(21, 18, 14, 0.62); line-height: 1.45; }
.dp-wine .mi-desc { color: rgba(246, 240, 228, 0.6); }

.dt-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.dt { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.7rem 0.75rem; border-radius: 14px; background: rgba(255, 255, 255, 0.72); transition: transform 0.2s var(--ease), background-color 0.2s var(--ease); }
.dt:hover { transform: translateY(-2px); background: var(--paper); }
.dt-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--c); flex: none; margin-top: 0.15rem; box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12), 0 0 0 3px color-mix(in srgb, var(--c) 30%, transparent); }
.dt span { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.dt .mi-desc { font-size: 0.78rem; color: rgba(21, 18, 14, 0.6); line-height: 1.35; margin-top: 0.15rem; }
.dt > i, .dc > i { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.dc-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dc { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.9rem; border-radius: 999px; background: var(--paper); border: 1.5px solid rgba(21, 18, 14, 0.12); font-weight: 600; font-size: 0.9rem; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
.dc:hover { transform: translateY(-2px); border-color: var(--ink); }
.dc b { font-size: 0.8rem; font-weight: 600; color: var(--cobalt); }
.dp-shake .dp-subh { margin-top: 1.2rem; }

@media (max-width: 1000px) {
  .dp-wine, .dp-soft { grid-column: span 6; }
  .dp-beer, .dp-mock, .dp-shake, .dp-tea { grid-column: span 3; }
}
@media (max-width: 700px) {
  .bar-board { grid-template-columns: minmax(0, 1fr); }
  .dp, .dp-wine, .dp-soft, .dp-beer, .dp-mock, .dp-shake, .dp-tea { grid-column: auto; border-radius: 22px; }
  .dp-cols { grid-template-columns: minmax(0, 1fr); }
  .dr-ko { display: none; }
}
.dp-beer .dr-ko { display: none; }
@media (min-width: 1001px) { .dp-shake { grid-column: span 4; } .dp-tea { grid-column: span 2; } }
.dp-cols > div > .dp-sub + .dp-sub { margin-top: 1rem; }
@media (min-width: 701px) and (max-width: 1000px) { .dp-shake, .dp-tea { grid-column: span 3; } }
.dp-cols > *, .dp-sub, .dr-list, .dr, .dr-top .mi-en { min-width: 0; }
.dr-top .mi-en { overflow-wrap: anywhere; }
.dt-emoji { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 12px; background: var(--paper); font-size: 1.25rem; line-height: 1; box-shadow: 0 4px 10px -6px rgba(21, 18, 14, 0.5); transform: rotate(-6deg); transition: transform 0.25s var(--ease); }
.dt:hover .dt-emoji { transform: rotate(6deg) scale(1.12); }
.dt { align-items: center; }
.dt .mi-desc b { color: var(--cobalt); font-weight: 600; margin-right: 0.2rem; }
.dp-tea .dt { background: rgba(255, 255, 255, 0.78); }
.dt-tea { grid-template-columns: 1fr 1fr; }
@media (max-width: 1000px) and (min-width: 701px) { .dt-tea { grid-template-columns: 1fr 1fr; } }
.dp-wine .dr .mi-price small { color: var(--paper); opacity: 0.85; }
.dc:hover { transform: none; border-color: rgba(21, 18, 14, 0.12); }
.dt:hover { transform: none; background: rgba(255, 255, 255, 0.72); }
.dp-tea .dt:hover { background: rgba(255, 255, 255, 0.78); }
.dt:hover .dt-emoji { transform: rotate(-6deg); }
.dc, .dt { cursor: default; }
.dp-note { margin-left: auto; background: var(--paper); color: var(--ink); border: 1.5px solid rgba(21, 18, 14, 0.12); box-shadow: 0 6px 14px -10px rgba(21, 18, 14, 0.5); }
.dp-note b { color: var(--coral); }
.dp-sub .dp-subh { display: flex; align-items: center; gap: 0.8rem; font-size: 0.84rem; letter-spacing: 0.18em; color: rgba(21, 18, 14, 0.75); margin: 0 0 0.5rem; }
.dp-sub .dp-subh::after { content: ""; flex: 1; height: 1.5px; background: rgba(21, 18, 14, 0.14); }
.dp-wine .dp-sub .dp-subh { color: var(--mustard); }
.dp-wine .dp-sub .dp-subh::after { background: rgba(246, 240, 228, 0.18); }
.dp-cols > div > .dp-sub + .dp-sub { margin-top: 1.9rem; }
@media (max-width: 700px) { .dp-cols > * + * { margin-top: 1.9rem; } }

.oo-head.has-photo .phm-photo img { object-position: 50% 55%; }
.oo-how { background: var(--cream); }
.oo-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.oo-steps li { position: relative; padding: 1.5rem 1.4rem 1.5rem; border-radius: 22px; box-shadow: 0 16px 34px -24px rgba(21, 18, 14, 0.5); }
.oo-steps li:nth-child(1) { background: linear-gradient(140deg, #fffaea 0%, #ffe7a6 100%); transform: rotate(-0.8deg); }
.oo-steps li:nth-child(2) { background: linear-gradient(140deg, #fff3ee 0%, #fbcdbd 100%); transform: rotate(0.6deg); }
.oo-steps li:nth-child(3) { background: linear-gradient(140deg, #f4fbff 0%, #c8e6fb 100%); transform: rotate(-0.5deg); }
.oo-n { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--ink); color: var(--mustard); font-family: var(--mark); font-weight: 700; font-size: 1.3rem; transform: rotate(-6deg); }
.oo-steps h3 { margin-top: 0.9rem; font-size: 1.2rem; letter-spacing: -0.01em; }
.oo-steps p { margin-top: 0.35rem; color: var(--mute); line-height: 1.55; }
.oo-go { margin-top: clamp(1.6rem, 3vw, 2.2rem); display: flex; justify-content: center; }
.oo-favs-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.oo-favs-grid .vp-sec-head .btn { margin-top: 1.4rem; }
.oo-fav-list { list-style: none; margin: 0; padding: 0; }
.oo-fav { padding: 1rem 0; border-bottom: 1px solid var(--hairline); }
.oo-fav-top { display: flex; align-items: baseline; gap: 0.5rem; }
.oo-fav h3 { font-size: 1.1rem; letter-spacing: -0.01em; min-width: 0; }
.oo-price { font-family: var(--mark); font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.oo-fav p { margin-top: 0.2rem; color: var(--mute); font-size: 0.94rem; }
.oo-info { background: var(--cream); }
.oo-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.oo-card { padding: 1.5rem 1.5rem 1.6rem; border-radius: 22px; background: var(--paper); box-shadow: 0 16px 34px -24px rgba(21, 18, 14, 0.45); display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.oo-card h3 { font-family: var(--mark); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-ink); }
.oo-card .vc-slots { width: 100%; }
.oo-grill { background: linear-gradient(140deg, #fff4f0 0%, #fde0d6 55%, #fbcdbd 100%); }
.oo-grill p { color: var(--mute); line-height: 1.55; }
@media (max-width: 900px) {
  .oo-steps, .oo-info-grid { grid-template-columns: minmax(0, 1fr); }
  .oo-favs-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 620px) { .page-order .page-head.has-photo { min-height: 64svh; padding-top: 6.5rem; } }
.oo-info-grid { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); align-items: stretch; }
.oo-where { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); align-items: start; }
.oo-where-addr, .oo-where-hours { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.oo-addr { font-size: 1.12rem; font-weight: 500; line-height: 1.55; }
.oo-hours { list-style: none; margin: 0; padding: 0; width: 100%; display: grid; gap: 0.7rem; }
.oo-hours li { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.oo-hours b { font-family: var(--mark); font-size: 1.15rem; white-space: nowrap; }
.oo-hic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--mustard-tint); flex: none; }
.oo-hours .is-night .oo-hic { background: var(--sky-tint); }
.oo-hic svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.oo-hours .dr-dots { transform: translateY(-2px); }
.oo-grill { position: relative; overflow: hidden; }
.oo-grill-ic { font-size: 2.2rem; line-height: 1; transform: rotate(-8deg); }
.oo-grill p { font-size: 1.02rem; }
@media (max-width: 900px) {
  .oo-info-grid, .oo-where { grid-template-columns: minmax(0, 1fr); }
}

.oo-ticket-wrap { position: relative; width: min(100%, 520px); margin: 0 auto; }
.oo-ticket {
  position: relative; padding: 2.4rem clamp(1.6rem, 4vw, 2.4rem) 2.2rem; background: var(--paper);
  transform: rotate(-1.2deg);
  filter: drop-shadow(0 22px 30px rgba(21, 18, 14, 0.18));
  -webkit-mask: radial-gradient(9px at 50% 0, #0000 98%, #000) 50% 0 / 22px 51% repeat-x, radial-gradient(9px at 50% 100%, #0000 98%, #000) 50% 100% / 22px 51% repeat-x;
          mask: radial-gradient(9px at 50% 0, #0000 98%, #000) 50% 0 / 22px 51% repeat-x, radial-gradient(9px at 50% 100%, #0000 98%, #000) 50% 100% / 22px 51% repeat-x;
  font-family: var(--mark);
}
.ot-brand { text-align: center; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ot-kind { text-align: center; margin-top: 0.3rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.ot-rule { margin: 1.2rem 0; border-top: 2px dashed rgba(21, 18, 14, 0.22); }
.ot-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral-ink); }
.ot-addr { margin-top: 0.5rem; font-family: var(--ko); font-size: 1.1rem; font-weight: 600; line-height: 1.5; }
.ot-lines { list-style: none; margin: 0.6rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.ot-lines li { display: flex; align-items: baseline; gap: 0.5rem; font-size: 1.02rem; font-weight: 500; }
.ot-lines b { font-size: 1.15rem; font-weight: 700; white-space: nowrap; }
.ot-btn { display: flex; justify-content: center; padding: 0.85rem 1rem; border-radius: 999px; background: var(--ink); color: var(--paper); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; transition: background-color 0.2s var(--ease); }
.ot-btn:hover { background: var(--coral); }
.ot-code { margin-top: 1.4rem; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.ot-bars { width: 72%; height: 42px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 7px, transparent 7px 9px, var(--ink) 9px 10px, transparent 10px 13px); opacity: 0.85; }
.ot-pc { font-size: 0.72rem; letter-spacing: 0.4em; color: var(--mute); }
.oo-stamp {
  position: absolute; top: -1.2rem; right: -5.5rem; width: 150px; height: 150px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.15rem;
  background: var(--coral); color: var(--paper); transform: rotate(12deg);
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 7px var(--coral), 0 18px 30px -14px rgba(21, 18, 14, 0.6);
  font-family: var(--mark); text-transform: uppercase; transition: transform 0.3s var(--ease);
}
.oo-stamp::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; border: 2px dashed rgba(246, 240, 228, 0.7); pointer-events: none; }
.oo-stamp:hover { transform: rotate(4deg) scale(1.05); }
.os-top { font-size: 0.62rem; letter-spacing: 0.14em; }
.os-mid { font-family: var(--script); text-transform: none; font-size: 1.45rem; line-height: 1; color: var(--mustard); }
.os-bot { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
@media (max-width: 760px) {
  .oo-stamp { position: relative; top: auto; right: auto; margin: 1.6rem auto 0; transform: rotate(-6deg); }
}
.oo-info { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(135deg, #fff4dc 0%, #ffe1d2 45%, #e7f1ff 100%); }
.oo-info::before, .oo-info::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.oo-info::before { width: 520px; height: 520px; left: -8%; top: -30%; background: rgba(242, 194, 48, 0.55); }
.oo-info::after { width: 560px; height: 560px; right: -10%; bottom: -35%; background: rgba(239, 90, 42, 0.35); }
.ot-powered { margin-top: 1.1rem; display: flex; align-items: baseline; justify-content: center; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.ot-powered .ot-logo { display: inline-block; height: 1.05em; width: auto; vertical-align: baseline; }
.ot-powered:hover { color: var(--ink); }
