:root {
  color-scheme: light;
  --ink: oklch(0.22 0.045 250);
  --text: oklch(0.31 0.034 250);
  --muted: oklch(0.45 0.028 250);
  --line: oklch(0.88 0.018 230);
  --paper: oklch(0.98 0 0);
  --wash: oklch(0.96 0.025 325);
  --panel: oklch(1 0 0);
  --forest: oklch(0.47 0.15 320);
  --forest-dark: oklch(0.28 0.11 305);
  --coral: oklch(0.69 0.16 340);
  --shadow: 0 8px 8px oklch(0.22 0.045 250 / 0.06);
}
* { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.68;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { word-break: keep-all; overflow-wrap: anywhere; }
h1, h2, h3 { text-wrap: balance; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: oklch(0.98 0 0 / 0.94);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; letter-spacing: 0; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 8px; background: var(--forest-dark); color: white; font-weight: 800; }
.brand strong, .brand em { display: block; line-height: 1.12; }
.brand em { color: var(--coral); font-style: normal; font-weight: 800; }
.top-nav, .site-footer nav { display: flex; flex-wrap: wrap; gap: 8px; }
.top-nav a, .site-footer nav a { border-radius: 999px; padding: 8px 12px; color: var(--muted); font-size: 14px; font-weight: 750; }
.top-nav a:hover, .site-footer nav a:hover { background: var(--wash); color: var(--forest-dark); }
.hero, .section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 38px;
  align-items: stretch;
}
.hero-copy { align-self: center; }
.eyebrow { margin: 0; color: var(--forest); font-size: 12px; font-weight: 850; letter-spacing: 0; text-transform: none; }
h1 { margin: 12px 0 0; font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.14; letter-spacing: 0; }
.lead, .section-hero p { margin: 18px 0 0; max-width: 690px; color: var(--muted); font-size: 1.05rem; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: 0 18px; background: white; color: var(--ink); font-weight: 800; }
.button.primary { border-color: var(--forest-dark); background: var(--forest-dark); color: white; }

@keyframes bookclip-soft-rise {
  from {
    opacity: 0.92;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bookclip-image-settle {
  from {
    opacity: 0.96;
    transform: scale(1.018);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-feature,
  .section-hero > *,
  .section-wrap,
  .launch-note,
  .article-detail,
  .article-hero > *,
  .article-body,
  .visual-frame,
  .food-home-hero,
  .country-hub-hero,
  .country-detail-hero {
    animation: bookclip-soft-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-feature,
  .section-hero > *:nth-child(2),
  .article-hero > *:nth-child(2),
  .article-body,
  .visual-frame {
    animation-delay: 70ms;
  }

  .section-card,
  .article-card,
  .article-row,
  .tool-card,
  .country-card,
  .restaurant-card,
  .restaurant-list-item,
  .side-box,
  .credit-card,
  .ingredient-card {
    animation: bookclip-soft-rise 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: transform 220ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 220ms cubic-bezier(0.25, 1, 0.5, 1), border-color 180ms ease;
  }

  .section-card:nth-child(2),
  .article-card:nth-child(2),
  .article-row:nth-child(2),
  .tool-card:nth-child(2),
  .country-card:nth-child(2),
  .restaurant-card:nth-child(2),
  .restaurant-list-item:nth-child(2),
  .credit-card:nth-child(2) {
    animation-delay: 36ms;
  }

  .section-card:nth-child(3),
  .article-card:nth-child(3),
  .article-row:nth-child(3),
  .tool-card:nth-child(3),
  .country-card:nth-child(3),
  .restaurant-card:nth-child(3),
  .restaurant-list-item:nth-child(3),
  .credit-card:nth-child(3) {
    animation-delay: 72ms;
  }

  .section-card:nth-child(4),
  .article-card:nth-child(4),
  .article-row:nth-child(4),
  .tool-card:nth-child(4),
  .country-card:nth-child(4),
  .restaurant-card:nth-child(4),
  .restaurant-list-item:nth-child(4),
  .credit-card:nth-child(4) {
    animation-delay: 108ms;
  }

  .hero-feature img,
  .section-hero img,
  .visual-frame img,
  .article-card img,
  .article-row img,
  .article-visual img,
  .restaurant-card img,
  .country-hub-hero img,
  .country-detail-hero img {
    animation: bookclip-image-settle 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .button,
  .top-nav a {
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
  }

  .button:hover,
  .top-nav a:hover {
    transform: translateY(-1px);
  }

  .section-card:hover,
  .article-card:hover,
  .article-row:hover,
  .tool-card:hover,
  .country-card:hover,
  .restaurant-card:hover,
  .restaurant-list-item:hover,
  .credit-card:hover,
  .ingredient-card:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-feature,
  .section-hero > *,
  .section-wrap,
  .launch-note,
  .article-detail,
  .article-hero > *,
  .article-body,
  .visual-frame,
  .food-home-hero,
  .country-hub-hero,
  .country-detail-hero,
  .section-card,
  .article-card,
  .article-row,
  .tool-card,
  .country-card,
  .restaurant-card,
  .restaurant-list-item,
  .side-box,
  .credit-card,
  .ingredient-card,
  .hero-feature img,
  .section-hero img,
  .visual-frame img,
  .article-card img,
  .article-row img,
  .article-visual img,
  .restaurant-card img,
  .country-hub-hero img,
  .country-detail-hero img {
    animation: none;
    transition: none;
    transform: none;
  }
}
.hero-feature, .section-card, .side-box { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.hero-feature { overflow: hidden; box-shadow: var(--shadow); }
.hero-feature img, .section-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: oklch(0.94 0.012 230); }
.hero-feature span { display: inline-block; margin: 20px 22px 0; color: var(--forest); font-size: 13px; font-weight: 850; }
.hero-feature h2 { margin: 8px 22px 0; font-size: clamp(1.22rem, 1.8vw, 1.62rem); line-height: 1.32; }
.hero-feature p { margin: 12px 22px 22px; color: var(--muted); font-size: 15px; }
.section-wrap { max-width: 1180px; margin: 0 auto; padding: 42px 24px; }
.section-wrap.alt { border-top: 1px solid var(--line); }
.section-heading { max-width: 780px; margin-bottom: 24px; }
.section-heading.compact { margin-bottom: 16px; }
.section-heading h2, .editorial-band h2 { margin: 8px 0 0; font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.25; }
.section-heading p:not(.eyebrow) { margin: 10px 0 0; color: var(--muted); }
.section-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.section-card { min-height: 190px; padding: 20px; }
.section-card strong, .section-card span { display: block; }
.section-card strong { margin-top: 8px; font-size: 1.05rem; }
.section-card span { margin-top: 8px; color: var(--muted); font-size: 14px; }
.launch-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  max-width: 1180px;
  margin: 8px auto 0;
  padding: 34px 24px 46px;
  border-top: 1px solid var(--line);
}
.launch-note p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.empty { border: 1px dashed var(--line); border-radius: 8px; padding: 30px; color: var(--muted); background: oklch(0.99 0.004 230); }
.ad-slot { margin: 28px auto; max-width: 1180px; padding: 14px 24px; color: var(--muted); font-size: 12px; text-align: center; }
.site-footer { display: grid; grid-template-columns: minmax(220px, 0.8fr) 1.2fr; gap: 24px; margin-top: 42px; padding: 34px 32px; border-top: 1px solid var(--line); }
.site-footer p { margin: 8px 0 0; color: var(--muted); }
.site-footer .footer-legal { grid-column: 1 / -1; gap: 4px 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.site-footer .footer-legal a { padding: 4px 0; font-size: 12px; font-weight: 650; }
.site-footer .footer-legal a:hover { background: transparent; text-decoration: underline; text-underline-offset: 3px; }
.empty-page { max-width: 780px; min-height: 60vh; margin: 0 auto; padding: 80px 24px; }
@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 16px 18px; }
  .hero, .section-hero, .launch-note, .site-footer { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .section-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Screening-room layout: cinematic frame and program listings. */
.hero { position: relative; display: block; max-width:none; min-height:720px; margin:0; padding:0; overflow:hidden; background:#08080b; }
.hero-feature { position:absolute; inset:0; border:0; }.hero-feature img{width:100%;height:100%;aspect-ratio:auto;object-fit:cover;opacity:.58}.hero-feature:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#07070b 0%,rgba(7,7,11,.76) 46%,transparent 100%)}.hero-feature>:not(img){display:none}
.hero-copy{position:relative;z-index:2;max-width:760px;padding:clamp(90px,12vw,170px) clamp(28px,8vw,120px);}.hero h1{max-width:9ch;font-size:clamp(3.5rem,7vw,6rem);letter-spacing:-.04em}.hero .lead{max-width:570px}.hero-actions .button{border-radius:0}
.section-wrap{max-width:1280px}.section-heading{display:grid;grid-template-columns:.45fr 1fr;max-width:none;gap:40px}.section-heading .eyebrow{grid-row:span 2}.section-grid{grid-template-columns:repeat(2,1fr);gap:0;border-top:1px solid var(--line)}.section-card{display:grid;grid-template-columns:80px 1fr;min-height:180px;border:0;border-bottom:1px solid var(--line);border-radius:0}.section-card .eyebrow{grid-row:span 2;font-size:2rem}.article-list{grid-template-columns:repeat(2,1fr);gap:1px;background:var(--line)}.article-row{display:grid;grid-template-columns:210px 1fr;border:0;border-radius:0;background:#111118;color:white}.article-row p{color:#aaa}.article-row img{height:100%;aspect-ratio:auto;border-radius:0}
@media(max-width:900px){.hero{width:100%;min-height:650px;margin:0}.section-heading{grid-template-columns:1fr}.section-grid,.article-list{grid-template-columns:1fr}}
@media(max-width:560px){.hero-copy{padding:90px 22px}.article-row{grid-template-columns:120px 1fr}.article-row p{display:none}}
@media (max-width: 560px) {
  .top-nav { gap: 4px; }
  .top-nav a { padding: 6px 8px; font-size: 13px; }
  .section-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2rem, 12vw, 3rem); }
}


/* Travel-grade publishing framework */
.visual-frame { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.visual-frame img, .article-row img, .article-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: oklch(0.94 0.012 230); }
.visual-frame figcaption { padding: 10px 12px; color: var(--muted); font-size: 13px; }
.visual-frame figcaption a, .text-link { color: var(--forest-dark); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.article-list { display: grid; gap: 14px; }
.article-row { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 16px; align-items: start; border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: var(--panel); }
.article-row img { grid-row: span 4; border-radius: 6px; }
.article-row span, .side-box span { color: var(--forest); font-size: 12px; font-weight: 850; }
.article-row strong { font-size: 1.08rem; line-height: 1.35; }
.article-row p { margin: 0; color: var(--muted); }
.article-detail { max-width: 1180px; margin: 0 auto; padding: 48px 24px 0; }
.article-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); gap: 34px; align-items: start; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; }
.hero-facts div { min-width: 120px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; background: var(--panel); }
.hero-facts dt { color: var(--muted); font-size: 12px; font-weight: 800; }
.hero-facts dd { margin: 3px 0 0; font-weight: 850; }
.article-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.article-body { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; margin-top: 38px; }
.article-main { display: grid; min-width: 0; gap: 28px; }
.article-main section { border-top: 0; padding-top: 24px; }
.article-main .article-prose-block { padding-top: 0; }
.article-main .article-prose-block + .article-prose-block { margin-top: -8px; }
.article-block-lead { font-weight: 850; }
.article-main h2 { margin: 0 0 10px; font-size: clamp(1.28rem, 1.9vw, 1.65rem); line-height: 1.35; }
.article-main p { margin: 0 0 12px; color: var(--text); }
.source-video { width: 100%; min-width: 0; }
.source-video-heading { display: grid; gap: 8px; margin-bottom: 16px; }
.source-video h2 { max-width: 30ch; margin: 0; font-size: clamp(1.25rem, 1.9vw, 1.6rem); line-height: 1.35; text-wrap: balance; }
.video-frame { position: relative; display: block; width: 100%; min-width: 0; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 10px; background: #08111f; box-shadow: 0 8px 20px rgba(16, 32, 52, .14); }
.video-frame iframe { position: absolute; inset: 0; display: block; width: 100% !important; max-width: none; height: 100%; border: 0; }
.video-caption { max-width: 72ch; margin: 12px 0 0 !important; color: var(--muted) !important; font-size: 14px; }
.article-answer { border: 1px solid var(--line) !important; border-radius: 8px; padding: 18px !important; background: var(--wash); }
.article-points { margin: 12px 0 0; padding-left: 20px; color: var(--text); }
.article-points.large { display: grid; gap: 8px; padding-left: 22px; }
.article-side { display: grid; align-content: start; gap: 14px; }
.side-box { padding: 18px; }
.side-box strong { display: block; margin-top: 6px; font-size: 1.05rem; }
.side-box p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.side-link { display: block; margin-top: 10px; color: var(--forest-dark); font-weight: 800; }
.credit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.credit-card { border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: var(--panel); }
.credit-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; }
.credit-card strong { display: block; margin-top: 10px; }
.credit-card p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
@media (max-width: 900px) {
  .article-hero, .article-body { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 140px minmax(0, 1fr); }
  .credit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .article-row { grid-template-columns: 1fr; }
  .article-row img { grid-row: auto; }
  .credit-grid { grid-template-columns: 1fr; }
}

/* Media identity — black screening room with a vivid magenta cue. */
:root { --ink:oklch(0.17 0.025 300); --paper:oklch(0.98 0.006 315); --wash:oklch(0.94 0.045 325); --forest:oklch(0.52 0.2 320); --forest-dark:oklch(0.2 0.045 300); --coral:oklch(0.68 0.21 345); }
html,body { max-width:100%; }
.hero { max-width:1220px; margin-top:28px; padding:clamp(34px,5vw,62px); border-radius:0; background:var(--forest-dark); color:white; }
.hero h1 { max-width:11ch; color:white; }
.hero .lead,.hero-feature p { color:oklch(0.84 0.02 310); }
.hero .eyebrow,.hero-feature span { color:var(--coral); }
.hero-feature { border:0; border-radius:0; background:oklch(0.24 0.055 310); box-shadow:none; }
.hero-feature h2 { color:white; }
.section-card:hover,.article-row:hover { border-color:var(--coral); transform:translateY(-3px); }
.top-nav a,.language-switcher summary { min-height:44px; }
a:focus-visible,summary:focus-visible { outline:3px solid var(--coral); outline-offset:3px; }
@media (max-width:900px) { .site-header,.top-nav,.hero,.hero-copy,.hero-feature { min-width:0; width:100%; } .hero { width:100%; margin:0; } }
/* Final screening-room geometry after the shared identity tokens. */
body .hero{position:relative;display:block;max-width:none;min-height:720px;margin:0;padding:0;border-radius:0;overflow:hidden;background:#08080b}body .section-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:0}body .section-card{border-radius:0}body .article-list{grid-template-columns:repeat(2,minmax(0,1fr));gap:1px}
@media(max-width:900px){body .hero{width:100%;margin:0}body .section-grid,body .article-list{grid-template-columns:1fr}}

/* Responsive reading hardening for Korean editorial copy. */
main :where(h1, h2, h3, p, li, dt, dd, strong) { word-break: keep-all; overflow-wrap: anywhere; }
main :where(.hero-copy, .hero-feature, .section-card, .article-row, .article-card, .article-main, .article-side),
main :where(.hero, .section-grid, .article-list, .article-body, .section-heading) > * { min-width: 0; }
