/* ============================================================
   FNB-EVNT-053 · 제로아워 다이닝 · NEO 다크·네온테크
   자정에 시작하는 3일간의 심야 팝업 다이닝 이벤트 2p — 다크 지면
   ============================================================ */

:root {
  --brand:       #6236fa;
  --brand-ink:   #ffffff;
  --accent:      #b9a8ff;
  --accent-ink:  #0a0714;
  --surface:     #0a0714;
  --surface-alt: #120c22;

  /* 다크 지면 — SPEC 4절 ★v1.2 에서 허용한 중립색 5개 재정의 */
  --ink:         #ece9f7;
  --ink-2:       #a8a2c4;
  --ink-3:       #837da3;
  --line:        #241d3d;
  --line-strong: #3a3160;

  --font-display: var(--font-sans);
  --r: var(--r-sm);
}

body { background: var(--surface); }

.u-edge { padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); }

/* ── 공통 타입 ─────────────────────────────────────────────── */

.kicker, .label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--accent);
}
.label { color: var(--ink-3); }

.h2 { font-size: var(--fs-3xl); line-height: 1; letter-spacing: var(--ls-tighter); }
.h3 { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); }

.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 46ch; }
.body-sm { font-size: var(--fs-sm); color: var(--ink-2); }

/* 네온 글로우 — 로컬 스코프 변수로만 쓴다 */
.glow { text-shadow: 0 0 24px color-mix(in oklab, var(--brand) 70%, transparent); }

/* ── 버튼 ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: var(--sp-3) var(--sp-5); font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn--solid {
  background: var(--brand); color: var(--brand-ink);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 40%, transparent),
              0 10px 34px color-mix(in oklab, var(--brand) 46%, transparent);
}
.btn--solid:hover { background: var(--accent); color: var(--accent-ink); }

.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--accent); color: var(--accent); }

/* ── 헤더 ──────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.is-stuck { border-bottom-color: var(--line-strong); box-shadow: 0 12px 34px rgba(0,0,0,.5); }

.nav__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  padding-block: var(--sp-3);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.nav__logo {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--fs-sm); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}
.nav__mark {
  width: 10px; height: 10px; flex: none;
  border-radius: var(--r-full);
  background: var(--brand);
  box-shadow: 0 0 14px 2px color-mix(in oklab, var(--brand) 80%, transparent);
}
/* 2페이지 작품 — 메뉴를 숨기지 않는다. 모바일에서는 줄을 접어 가로 스크롤. */
.nav__menu {
  display: flex; order: 3; width: 100%;
  gap: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__menu a {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-2);
  white-space: nowrap;
}
.nav__menu a:hover { color: var(--accent); }
.nav__menu a[aria-current="page"] { color: var(--accent); }

@media (min-width: 768px) {
  .nav__inner { flex-wrap: nowrap; padding-block: var(--sp-4); }
  .nav__menu {
    order: 0; width: auto; overflow: visible;
    padding-top: 0; border-top: 0; margin-inline: auto;
    gap: var(--sp-6);
  }
}

/* ── 히어로 ────────────────────────────────────────────────── */
/* 다크 지면 — 사진 위에 --surface 톤 스크림을 얹으면 그대로 어두워지고
   밝게 재정의한 --ink 가 그 위에 얹혀 대비가 구조적으로 확보된다. */

.hero {
  --header-h: 106px;   /* 모바일에서는 헤더가 2줄이다 */
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-h);
  overflow: hidden;
}
@media (min-width: 768px) { .hero { --header-h: 70px; } }

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  /* 사진 원본이 밝게 교체돼도 본문 대비가 무너지지 않도록 스크림을 세게 잡는다.
     최악(원본이 흰색)일 때도 --ink-2 가 4.7:1 이상을 유지한다. */
  background:
    radial-gradient(ellipse 90% 70% at 22% 30%,
      color-mix(in oklab, var(--brand) 26%, transparent), transparent 62%),
    linear-gradient(180deg,
      color-mix(in oklab, var(--surface) 93%, transparent) 0%,
      color-mix(in oklab, var(--surface) 88%, transparent) 46%,
      color-mix(in oklab, var(--surface) 80%, transparent) 68%,
      color-mix(in oklab, var(--surface) 22%, transparent) 100%);
}

.hero__text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--sp-5);
  padding: var(--sp-7) var(--gutter) var(--sp-8);
}

.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
}
.hero__meta span {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  font-weight: var(--fw-bold); letter-spacing: var(--ls-wide); text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  color: var(--ink-2);
}
.hero__meta span:first-child { border-color: var(--brand); color: var(--accent); }

.hero__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-semibold);
  line-height: .94;
  letter-spacing: var(--ls-tighter);
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 32px color-mix(in oklab, var(--brand) 80%, transparent);
}
.hero__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* 카운트다운 */
.count { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.count div {
  min-width: 4.6rem;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: color-mix(in oklab, var(--surface-alt) 70%, transparent);
  text-align: center;
}
.count dt {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3);
  margin-bottom: var(--sp-2);
}
.count dd {
  font-family: var(--font-mono);
  font-size: var(--fs-xl); font-weight: var(--fw-black);
  line-height: 1; color: var(--accent);
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 42%); padding-top: 0; }
  .hero__media::after {
    /* 데스크탑에서는 왼쪽 58% 에 카피가 얹힌다. 그 구간이 항상 어둡도록
       40% 지점까지 80% 이상을 유지하고, 사진은 오른쪽에서 살아나게 둔다. */
    background:
      radial-gradient(ellipse 80% 90% at 18% 40%,
        color-mix(in oklab, var(--brand) 24%, transparent), transparent 60%),
      linear-gradient(90deg,
        color-mix(in oklab, var(--surface) 97%, transparent) 0%,
        color-mix(in oklab, var(--surface) 80%, transparent) 40%,
        color-mix(in oklab, var(--surface) 24%, transparent) 100%);
  }
  .hero__text {
    grid-column: 1;
    /* 1024×768 에서 헤드라인이 80px 3줄이라 상단 여백이 sp-9 면 CTA 가
       첫 화면 밖으로 11px 밀린다(실측 779 > 768). sp-8 로 32px 회수한다. */
    padding-block: calc(var(--header-h) + var(--sp-8)) var(--sp-9);
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    padding-right: var(--sp-8);
  }
}

/* ── 티커 ──────────────────────────────────────────────────── */

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line-strong);
  background: color-mix(in oklab, var(--brand) 14%, var(--surface));
  padding-block: var(--sp-4);
}
.ticker__track {
  display: flex; align-items: center; gap: var(--sp-6);
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker__track span {
  font-family: var(--font-mono); font-size: var(--fs-sm);
  font-weight: var(--fw-bold); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.ticker__track i {
  width: 6px; height: 6px; flex: none; border-radius: var(--r-full);
  background: var(--accent);
  box-shadow: 0 0 10px 1px color-mix(in oklab, var(--accent) 80%, transparent);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── 지표 ──────────────────────────────────────────────────── */

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.stat { padding-block: var(--sp-6); padding-right: var(--sp-5); border-bottom: 1px solid var(--line); }
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat dt {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3);
  margin-bottom: var(--sp-3);
}
.stat dd { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tighter); line-height: 1; }
.stat dd span { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-3); margin-left: 3px; }

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: var(--sp-5); }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: 0; }
}

/* ── 코스 카드 ─────────────────────────────────────────────── */

.courses__inner { display: grid; gap: var(--sp-7); }
.courses__head { display: grid; gap: var(--sp-4); align-content: start; }
.courses__list { display: grid; gap: var(--sp-5); }

.course {
  display: grid; gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface-alt);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.course:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in oklab, var(--brand) 26%, transparent);
}
.course__no {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  font-weight: var(--fw-bold); letter-spacing: var(--ls-wide); color: var(--accent);
}
.course__name { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.course__desc { font-size: var(--fs-sm); color: var(--ink-2); }
.course__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.course__tags span {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  padding: 2px var(--sp-3);
  border: 1px solid var(--line-strong); border-radius: var(--r-full);
  color: var(--ink-3);
}

@media (min-width: 768px) { .courses__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .courses__inner { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: var(--sp-8); }
  .courses__head { position: sticky; top: var(--sp-9); }
  .courses__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── 풀블리드 + 겹침 카드 ──────────────────────────────────── */

.slab { position: relative; padding-bottom: var(--section-y); }
.slab__media { border-radius: 0; aspect-ratio: 4 / 5; }
.slab__card {
  position: relative;
  margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  display: grid; gap: var(--sp-4);
}
.slab__list { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.slab__list li {
  display: flex; gap: var(--sp-4);
  padding-top: var(--sp-3); border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--ink-2);
}
.slab__list b { color: var(--accent); min-width: 5.5em; flex: none; }

@media (min-width: 768px) {
  .slab__media { aspect-ratio: 21 / 9; }
  .slab__card { margin-top: calc(var(--sp-9) * -1); margin-right: auto; max-width: 620px; padding: var(--sp-8); }
}

/* ── 라인업 ────────────────────────────────────────────────── */

.lineup { display: grid; gap: var(--sp-5); }
.chef {
  display: grid; gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-strong);
}
.chef__day { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); color: var(--accent); }
.chef__name { font-size: var(--fs-xl); letter-spacing: var(--ls-tight); }
.chef__bio { font-size: var(--fs-sm); color: var(--ink-2); }

@media (min-width: 768px) {
  .lineup { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-6); }
}

/* ── 갤러리 ────────────────────────────────────────────────── */

.gal { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ── 인용 ──────────────────────────────────────────────────── */

.quote-sec {
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%,
      color-mix(in oklab, var(--brand) 26%, transparent), transparent 68%),
    var(--surface-alt);
  border-block: 1px solid var(--line-strong);
}
.quote { display: grid; gap: var(--sp-5); text-align: center; }
.quote p { font-size: var(--fs-2xl); font-weight: var(--fw-bold); line-height: 1.24; letter-spacing: var(--ls-tighter); }
.quote footer { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--ink-3); }
.quote footer b { color: var(--accent); }

/* ── 타임테이블 ────────────────────────────────────────────── */

.tt-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.tt {
  width: 100%; min-width: 620px;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
}
table.tt th, table.tt td {
  padding: var(--sp-4);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
table.tt thead th {
  font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--line-strong);
}
table.tt tbody th { color: var(--ink); font-weight: var(--fw-bold); }
table.tt td { color: var(--ink-2); }
table.tt .sold { color: var(--ink-3); }

/* ── 페이지 헤더 ───────────────────────────────────────────── */

.page-head {
  padding-top: calc(var(--sp-9) + var(--sp-6));
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--line-strong);
}
.page-head__inner { display: grid; gap: var(--sp-4); }
.page-head h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: .98;
  letter-spacing: var(--ls-tighter);
  text-transform: uppercase;
}
.page-head h1 em { font-style: normal; color: var(--accent); }

@media (min-width: 1024px) {
  .page-head__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: var(--sp-8); align-items: end; }
}

/* ── 티켓 ──────────────────────────────────────────────────── */

.ticket {
  border-top: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 80% 120% at 80% 100%,
      color-mix(in oklab, var(--brand) 30%, transparent), transparent 66%),
    var(--surface-alt);
}
.ticket__inner { display: grid; gap: var(--sp-6); }
.ticket__title { font-size: var(--fs-3xl); font-weight: var(--fw-bold); line-height: 1; letter-spacing: var(--ls-tighter); }
.ticket__form { display: grid; gap: var(--sp-4); max-width: 480px; }
.ticket__form label { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: var(--sp-2); }
.ticket__form input, .ticket__form select {
  width: 100%;
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: var(--ink);
  font-size: var(--fs-sm);
}
.ticket__form input:focus-visible, .ticket__form select:focus-visible { border-color: var(--accent); }
.ticket__note { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-3); }
.ticket__price {
  display: grid; gap: var(--sp-3); align-content: start;
  padding: var(--sp-6);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: color-mix(in oklab, var(--surface) 80%, transparent);
}
.ticket__price div {
  display: flex; justify-content: space-between; gap: var(--sp-4);
  padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--ink-2);
}
.ticket__price b { color: var(--ink); }
.ticket__price div:last-child { border-bottom: 0; }

@media (min-width: 1024px) {
  .ticket__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: var(--sp-8); }
}

/* ── FAQ ───────────────────────────────────────────────────── */

.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  padding-block: var(--sp-5);
  font-size: var(--fs-md); font-weight: var(--fw-semibold);
  cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--accent); }
.qa summary::after {
  content: ""; width: 13px; height: 13px; flex: none;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat;
  transition: transform var(--dur) var(--ease);
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding-bottom: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-2); max-width: 62ch; }

/* ── 푸터 ──────────────────────────────────────────────────── */

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--line-strong); }
.foot__inner { display: grid; gap: var(--sp-5); }
.foot__brand {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-mono); font-size: var(--fs-sm);
  font-weight: var(--fw-bold); letter-spacing: var(--ls-wide); text-transform: uppercase;
}
.foot__addr { font-style: normal; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.9; }
.foot__nav { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.foot__nav a { font-size: var(--fs-sm); color: var(--ink-2); }
.foot__nav a:hover { color: var(--accent); }
.foot__copy {
  grid-column: 1 / -1;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

@media (min-width: 768px) {
  .foot__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-7); }
}

/* ============================================================
   브랜드 마크 · 아이콘 · 인터랙션 보강  ★SPEC 4-C
   레이아웃·색·타이포는 건드리지 않는다. 여기서는 더하기만 한다.
   ============================================================ */

.ico { width: 1em; height: 1em; flex: none; vertical-align: -0.125em; }

/* ── 브랜드 마크 — 00:00, 12시에서 트인 링을 바늘이 뚫는다 ────
   다크 지면이라 --accent(라벤더) 로 그린다. 10px CSS 점을 걷어냈다. */
.mark { flex: none; color: var(--accent); }
.mark__ring  { transition: opacity var(--dur) var(--ease); }
.mark__hand, .mark__hand2 { transition: transform var(--dur-slow) var(--ease-out); transform-origin: 16px 16px; }
.mark__pivot { transition: opacity var(--dur) var(--ease); }
/* 자정으로 맞춰진 두 바늘이 한 바퀴 돈다 */
.nav__logo:hover .mark__hand  { transform: rotate(360deg); }
.nav__logo:hover .mark__hand2 { transform: rotate(180deg); }
.nav__logo:hover .mark__ring  { opacity: .6; }
.nav__logo { transition: color var(--dur) var(--ease); }
.nav__logo:hover { color: var(--accent); }
.foot__brand .mark { transition: transform var(--dur-slow) var(--ease-out); }
.foot__brand:hover .mark { transform: rotate(-180deg); }

/* ── 아이콘이 붙는 자리 ─────────────────────────────────────── */

.slab__list b { display: inline-flex; align-items: center; gap: var(--sp-2); }
.slab__list b .ico { font-size: var(--fs-md); }

.chef__day, .course__no { display: flex; align-items: center; gap: var(--sp-2); }
.chef__day .ico, .course__no .ico { font-size: var(--fs-base); }

.ticket__price dt { display: inline-flex; align-items: center; gap: var(--sp-2); }
.ticket__price dt .ico { font-size: var(--fs-base); color: var(--accent); }

.foot__addr { display: grid; gap: var(--sp-3); line-height: 1.5; }
.foot__addr span { display: flex; align-items: flex-start; gap: var(--sp-3); }
.foot__addr .ico { font-size: var(--fs-md); color: var(--accent); margin-top: .1em; }

/* 14px 버튼에서 1em 화살표는 뭉개진다 */
.btn__arrow {
  font-size: 1.25em;
  margin-left: 1px;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── 내비: 밑줄이 한쪽에서 그어진다 ────────────────────────── */

.nav__menu a { position: relative; padding-block: 2px; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 카운트다운 · 지표 ─────────────────────────────────────── */

.count div { transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.count div:hover { border-color: var(--accent); transform: translateY(-2px); }
.stat { transition: background var(--dur) var(--ease); }
.stat:hover { background: var(--surface-alt); }
.stat dd { transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.stat:hover dd { transform: translateY(-2px); color: var(--accent); }

/* ── 티커: 올리면 멈춘다 ───────────────────────────────────── */

.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { transition: color var(--dur) var(--ease); }
.ticker:hover .ticker__track span { color: var(--ink); }

/* ── 코스 카드 · 셰프 · 타임테이블 ─────────────────────────── */

.course__name { transition: color var(--dur) var(--ease); }
.course:hover .course__name { color: var(--accent); }
.course__no { transition: letter-spacing var(--dur) var(--ease); }
.course:hover .course__no { letter-spacing: var(--ls-wide); }
.course__tags span { transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.course:hover .course__tags span { border-color: var(--accent); color: var(--accent); }

.chef { transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.chef:hover { border-color: var(--accent); transform: translateY(-3px); }
.chef__name { transition: color var(--dur) var(--ease); }
.chef:hover .chef__name { color: var(--accent); }

.gal .img-slot { overflow: hidden; }
.gal img { transition: transform var(--dur-slow) var(--ease-out); }
.gal .img-slot:hover img { transform: scale(1.06); }

.slab__list li { transition: color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.slab__list li:hover { color: var(--ink); transform: translateX(3px); }
.ticket__price div { transition: background var(--dur) var(--ease); }
.ticket__price div:hover { background: color-mix(in oklab, var(--accent) 10%, transparent); }
.ticket__form input, .ticket__form select { transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.ticket__form input:hover, .ticket__form select:hover { border-color: var(--accent); }
.qa summary { transition: color var(--dur) var(--ease); }

/* ── 푸터 링크: 밑줄이 한쪽에서 그어진다 ────────────────────── */

.foot__nav a { position: relative; transition: color var(--dur) var(--ease); }
.foot__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.foot__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 심야 이벤트다운 모션 ──────────────────────────────────── */

/* 자정 표시가 1초에 한 번 깜빡인다 */
@keyframes zeroBlink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: .28; }
}
.hero__meta span:first-child { animation: zeroBlink 2s steps(1, end) infinite; }

@keyframes zeroQaOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.qa[open] p { animation: zeroQaOpen var(--dur) var(--ease-out) both; }

/* 카운트다운 숫자가 한 칸씩 들어온다 */
@keyframes zeroTick {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
html.js .count.is-in dd { animation: zeroTick var(--dur-slow) var(--ease-out) both; }

/* ── 스크롤 등장에 계단식 지연 ─────────────────────────────── */

html.js .stats__grid .reveal:nth-child(2) { transition-delay: 60ms; }
html.js .stats__grid .reveal:nth-child(3) { transition-delay: 120ms; }
html.js .stats__grid .reveal:nth-child(4) { transition-delay: 180ms; }
html.js .courses__list .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .courses__list .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .lineup .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .lineup .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .gal .reveal:nth-child(2) { transition-delay: 70ms; }
html.js .gal .reveal:nth-child(3) { transition-delay: 140ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .hero__meta span:first-child { animation: none; }
  html.js .count.is-in dd { animation: none; }
  .mark__hand, .mark__hand2, .foot__brand:hover .mark,
  .count div:hover, .stat:hover dd, .chef:hover,
  .gal .img-slot:hover img, .slab__list li:hover,
  .btn:hover .btn__arrow { transform: none; }
}


/* ===== 획일성 제거 — NEO 무드 어휘 =====================================
   160작품이 레퍼런스의 밑줄 draw·카드 리프트·대문자 킥커를 그대로 복사해
   같은 사이트 리스킨으로 보였다. 반응 방식을 무드에 맞게 갈아끼운다.
   ==================================================================== */
/* 세로 카덴스를 작품마다 다르게 — 전부 같은 --section-y 를 쓰는 게 구조적 tell 이었다 */
:root { --section-y: clamp(4.16rem, 2.5877rem + 6.7505vw, 8.33rem); }

/* 다크네온 — 글자 자체가 발광한다. */
.nav__menu a::after, .foot__nav a::after { display: none !important; }
.foot__nav a, .nav__menu a:hover { text-shadow: 0 0 14px currentColor, 0 0 4px currentColor; }
.course:hover, .count div:hover, .stat:hover dd, .chef:hover { transform: none; }
.course:hover, .count div:hover, .stat:hover dd, .chef:hover { box-shadow: 0 0 0 1px color-mix(in oklab, var(--brand) 55%, transparent),
                      0 0 26px color-mix(in oklab, var(--brand) 22%, transparent); }

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .pm-progress { box-shadow: 0 0 18px var(--brand); }
html.tier-premium .btn--solid { text-shadow: 0 0 18px color-mix(in oklab, var(--brand) 45%, transparent); }
