/* ============================================================
   LC BOGWANG — Design System v0.1
   Concept A: "STREET RECEIPT" (거리의 영수증)
   Paper × Ink × Receipt × Itaewon street
   ============================================================ */

:root {
  /* Paper & Ink */
  --paper: #f4f1ea;
  --paper-dim: #eae6dc;
  --ink: #14120e;
  --ink-soft: #3a362e;
  --ink-faint: #8a8375;
  --line: #c9c3b4;

  /* ── 보광정 — bogwangjung.com 공식 토큰 그대로 계승 (변경 금지) ── */
  --bgj-green: #1f6b3a;    /* Primary (원본 --red) */
  --bgj-green-d: #143d21;  /* Hover/Dark (원본 --red-d) */
  --bgj-green-l: #4caf6a;  /* Light accent (원본 --red-l) */
  --bgj-bg: #0c0c0e;       /* Background (원본 --bg) */
  --bgj-cream: #f4efe6;    /* Typography (원본 --cream) */
  --bgj-gray: #9c968c;     /* Secondary text (원본 --gray) */

  /* ── 웰컴피자 — 공식 로고 파일에서 추출 (SVG 레터링 fill) ── */
  --wp-red: #dc2622;       /* Primary — 공식 레터링 레드 */
  --wp-red-d: #a91b18;     /* Hover/Dark */
  --wp-red-l: #ff4b45;     /* 다크 배경 텍스트 가독용 라이트 변주 */
  --wp-yellow: #fff21d;    /* 스마일 옐로 — 공식 로고 심볼 */

  --night: #0b0b0d;
  --night-soft: #17171b;

  --font-display: 'Anton', 'Noto Sans KR', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --gutter: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--ink); color: var(--paper); }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 16px;
}

/* ---------- Receipt / paper motifs ---------- */
.dashed { border-top: 1.5px dashed var(--line); }

.receipt-edge {
  /* 영수증 절취선 느낌의 지그재그 하단 */
  --edge: 10px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--edge)),
    97.5% 100%, 95% calc(100% - var(--edge)), 92.5% 100%, 90% calc(100% - var(--edge)),
    87.5% 100%, 85% calc(100% - var(--edge)), 82.5% 100%, 80% calc(100% - var(--edge)),
    77.5% 100%, 75% calc(100% - var(--edge)), 72.5% 100%, 70% calc(100% - var(--edge)),
    67.5% 100%, 65% calc(100% - var(--edge)), 62.5% 100%, 60% calc(100% - var(--edge)),
    57.5% 100%, 55% calc(100% - var(--edge)), 52.5% 100%, 50% calc(100% - var(--edge)),
    47.5% 100%, 45% calc(100% - var(--edge)), 42.5% 100%, 40% calc(100% - var(--edge)),
    37.5% 100%, 35% calc(100% - var(--edge)), 32.5% 100%, 30% calc(100% - var(--edge)),
    27.5% 100%, 25% calc(100% - var(--edge)), 22.5% 100%, 20% calc(100% - var(--edge)),
    17.5% 100%, 15% calc(100% - var(--edge)), 12.5% 100%, 10% calc(100% - var(--edge)),
    7.5% 100%, 5% calc(100% - var(--edge)), 2.5% 100%, 0 calc(100% - var(--edge)));
}

.stamp {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  padding: 6px 14px;
  transform: rotate(-3deg);
  border-radius: 2px;
}

.todo {
  /* 미확정 정보 표시 */
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  border: 1px dashed var(--ink-faint);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  border-radius: 0;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--ink-soft); border-color: var(--ink-soft); color: var(--paper); }
.btn-neon { background: var(--wp-red); border-color: var(--wp-red); color: #fff; }
.btn-neon:hover { background: var(--wp-red-d); border-color: var(--wp-red-d); color: #fff; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }
.btn[disabled]:hover { background: transparent; color: inherit; }
.btn .arrow { font-family: var(--font-body); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  mix-blend-mode: normal;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1.5px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--ink);
}
.theme-night .site-header.scrolled {
  background: color-mix(in srgb, var(--night) 88%, transparent);
  border-bottom-color: var(--wp-red-l);
}
.theme-ember .site-header.scrolled {
  background: color-mix(in srgb, var(--bgj-bg) 88%, transparent);
  border-bottom-color: var(--bgj-green);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
/* 다크 테마에서는 로고를 화이트 실루엣으로 (다크 그린 원본은 어두운 배경에서 안 보임) */
.theme-night .logo img,
.theme-ember .logo img,
.site-footer .logo img { filter: brightness(0) invert(1); }
.logo small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
}

.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 102;
}
.hamburger span {
  width: 26px; height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  gap: 4px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s 0.3s;
}
.nav-mobile.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.15;
  border-bottom: 1px solid rgba(244,241,234,0.15);
  padding: 8px 0;
}
.nav-mobile a small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(244,241,234,0.4);
  margin-left: 14px;
}

/* ---------- Sections ---------- */
section { padding: clamp(72px, 12vh, 140px) var(--gutter); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2.5px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: clamp(32px, 6vw, 64px);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
}
.section-head .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.15em;
}

/* ============================================================
   HOME — 포토 드리븐 리디자인
   ============================================================ */

/* 홈 다크 베이스: 사진이 주인공 */
.home-dark { background: #101010; color: var(--paper); }
.home-dark ::selection { background: var(--paper); color: #101010; }
.home-dark .site-header.scrolled {
  background: color-mix(in srgb, #101010 88%, transparent);
  border-bottom-color: rgba(244,241,234,0.25);
}
.home-dark .site-header .logo img { filter: brightness(0) invert(1); }
.home-dark .logo small { color: rgba(244,241,234,0.45); }
.home-dark .section-head { border-bottom-color: rgba(244,241,234,0.9); }
.home-dark .section-head .num { color: rgba(244,241,234,0.45); }
.home-dark .btn { border-color: var(--paper); color: var(--paper); }
.home-dark .btn:hover { background: var(--paper); color: #101010; }
.home-dark .btn-solid { background: var(--paper); color: #101010; border-color: var(--paper); }
.home-dark .btn-solid:hover { background: rgba(244,241,234,0.8); }
.home-dark .kicker { color: rgba(244,241,234,0.45); }
.home-dark .todo { border-color: rgba(244,241,234,0.4); color: rgba(244,241,234,0.5); }
.home-dark .partner-slot { border-color: rgba(244,241,234,0.35); color: rgba(244,241,234,0.45); }

/* ---------- HERO CINE: 풀블리드 슬라이드쇼 ---------- */
.hero-cine {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 var(--gutter) clamp(48px, 9vh, 110px);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease;
}
.hero-slides .slide.active {
  opacity: 1;
  animation: kenburns 6.5s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.35) 38%, rgba(10,10,10,0.15) 60%, rgba(10,10,10,0.4) 100%);
}
.hero-cine-content { position: relative; max-width: 880px; }
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.75);
  margin-bottom: 22px;
}
.hero-lines {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  color: var(--paper);
}
.hero-lines span { display: block; }
.hero-lines span:nth-child(2) { color: transparent; -webkit-text-stroke: 2px var(--paper); }
.hero-tag {
  margin-top: 26px;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 500;
  color: rgba(244,241,234,0.92);
}
.hero-tag .en {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(244,241,234,0.55);
  margin-top: 8px;
  text-transform: uppercase;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn-ghost {
  border-color: rgba(244,241,234,0.85);
  color: var(--paper);
  backdrop-filter: blur(4px);
  background: rgba(10,10,10,0.15);
}
.btn-ghost:hover { background: var(--paper); color: #101010; }

.hero-slide-meta {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(48px, 9vh, 110px);
  text-align: right;
  font-family: var(--font-mono);
  color: rgba(244,241,234,0.8);
}
.hero-slide-meta .slide-word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  letter-spacing: 0.14em;
  color: var(--paper);
}
.hero-slide-meta .slide-count {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  margin-top: 8px;
  color: rgba(244,241,234,0.5);
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: rgba(244,241,234,0.5);
  animation: cue-bob 2.2s ease-in-out infinite;
}
@keyframes cue-bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---------- MANIFESTO ---------- */
.manifesto { text-align: center; padding-top: clamp(90px, 15vh, 170px); padding-bottom: clamp(90px, 15vh, 170px); }
.manifesto-line {
  font-size: clamp(1.5rem, 4.4vw, 3rem);
  font-weight: 900;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-line em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}
.manifesto-en {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.45);
}

/* ---------- PHOTO STRIP (필름 스트립 마퀴) ---------- */
.photo-strip {
  overflow: hidden;
  border-top: 1.5px solid rgba(244,241,234,0.2);
  border-bottom: 1.5px solid rgba(244,241,234,0.2);
  padding: 14px 0;
}
.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: strip-move 60s linear infinite;
}
.strip-track img {
  height: clamp(160px, 24vw, 260px);
  width: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92);
}
@keyframes strip-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 이벤트 카드: 포토 비주얼 ---------- */
.ec-visual.photo { padding: 0; position: relative; display: block; }
.ec-visual.photo img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .ec-visual.photo img { transform: scale(1.04); }
.ec-visual.photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent 55%);
}
.ec-visual-title {
  position: absolute;
  left: 18px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--paper);
}
.ec-visual-title.red { color: var(--wp-red-l); }
.home-dark .event-card {
  background: #161616;
  color: var(--paper);
  border-color: rgba(244,241,234,0.9);
  box-shadow: 6px 6px 0 rgba(244,241,234,0.9);
}
.home-dark .event-card:hover { box-shadow: 10px 10px 0 rgba(244,241,234,0.9); }
.home-dark .event-card .ec-top { border-bottom-color: rgba(244,241,234,0.2); }
.home-dark .event-card .ec-visual { border-bottom-color: rgba(244,241,234,0.25); }
.home-dark .event-card .desc { color: rgba(244,241,234,0.7); }
.home-dark .event-card .ec-meta { border-top-color: rgba(244,241,234,0.2); }
.home-dark .event-card .ec-meta dt { color: rgba(244,241,234,0.45); }
.home-dark .event-card .btn-solid { background: var(--bgj-green); border-color: var(--bgj-green); color: #fff; }
.home-dark .event-card .btn-solid:hover { background: var(--bgj-green-d); border-color: var(--bgj-green-d); }
.home-dark .badge.coming { background: transparent; color: rgba(244,241,234,0.6); border: 1px solid rgba(244,241,234,0.35); }
.home-dark .badge.open { background: var(--bgj-green); color: #fff; }

/* ---------- 브랜드: 풀블리드 포토 패널 ---------- */
.brands-full { display: grid; gap: clamp(20px, 3vw, 36px); }
.brand-photo {
  position: relative;
  display: block;
  min-height: clamp(420px, 68vh, 640px);
  overflow: hidden;
}
.brand-photo img:not(.bp-logo) {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.brand-photo:hover img:not(.bp-logo) { transform: scale(1.03); }
.bp-shade { position: absolute; inset: 0; }
.warm-shade { background: linear-gradient(to right, rgba(12,20,14,0.88) 0%, rgba(12,20,14,0.45) 55%, rgba(12,20,14,0.15) 100%); }
.red-shade { background: linear-gradient(to right, rgba(20,8,8,0.88) 0%, rgba(20,8,8,0.45) 55%, rgba(20,8,8,0.15) 100%); }
.bp-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(28px, 5vw, 64px);
  max-width: 560px;
}
.bp-kicker {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.6);
}
.bp-logo { max-width: 240px; width: 55%; }
.bp-content p { font-size: 0.95rem; line-height: 1.9; color: rgba(244,241,234,0.85); }
.bp-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.bp-info {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: 16px;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(244,241,234,0.55);
  text-align: right;
}

/* ---------- PHILOSOPHY: 포토 배경 ---------- */
.philosophy-photo {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: clamp(110px, 18vh, 200px);
  padding-bottom: clamp(110px, 18vh, 200px);
}
.philosophy-photo .pp-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.philosophy-photo .pp-shade { position: absolute; inset: 0; background: rgba(10,10,10,0.78); }
.philosophy-photo .pp-content { position: relative; z-index: 2; }
.philosophy-photo .slogan {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  max-width: 14ch;
  margin: 28px auto 0;
  color: var(--paper);
}
.philosophy-photo .slogan em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--paper); }
.philosophy-photo p { margin: 36px auto 0; max-width: 520px; font-size: 0.98rem; line-height: 2.1; color: rgba(244,241,234,0.85); }
.philosophy-photo .start-line {
  width: min(420px, 70%);
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--paper) 0 24px, transparent 24px 40px);
  margin: 44px auto 0;
}

/* ---------- ARCHIVE: 포토 그리드 ---------- */
.archive-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.archive-photos figure { position: relative; overflow: hidden; }
.archive-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.archive-photos figure:hover img { transform: scale(1.04); }
.archive-photos figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* ---------- HERO (home) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(244,241,234,0.25) 0%, rgba(244,241,234,0.88) 78%, var(--paper) 100%),
    repeating-linear-gradient(-45deg, #dcd6c8 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #d8d2c2, #cfc8b6 45%, #c4bca8);
}
.hero-media .media-note {
  position: absolute;
  top: 24%; left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  border: 1.5px dashed var(--ink-faint);
  padding: 14px 22px;
  text-align: center;
  line-height: 2;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 14.5vw, 12rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.hero h1 .line { display: block; }
.hero h1 .line:nth-child(2) { color: transparent; -webkit-text-stroke: 2.5px var(--ink); }
.hero-sub {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero-sub p {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  line-height: 1.9;
  max-width: 420px;
  font-weight: 500;
}
.hero-sub p .en {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-top: 10px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-scroll {
  position: absolute;
  right: var(--gutter);
  top: 45%;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--ink-faint);
}

/* ---------- Ticker ---------- */
.ticker {
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 28px;
}
.ticker-track .dot { color: var(--ink-faint); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Event cards (receipt style) ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.event-card {
  background: #fdfcf8;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.event-card.night { background: var(--night); color: var(--paper); border-color: var(--night); box-shadow: 6px 6px 0 var(--wp-red-l); }
.event-card.night:hover { box-shadow: 10px 10px 0 var(--wp-red-l); }

.ec-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1.5px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-card.night .ec-top { border-bottom-color: rgba(244,241,234,0.25); }

.badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge.coming { background: var(--paper-dim); color: var(--ink-soft); border: 1px solid var(--line); }
.badge.open { background: var(--bgj-green); color: #fff; }
.badge.night-coming { background: transparent; color: var(--wp-red-l); border: 1px solid var(--wp-red-l); }
.badge.night-open { background: var(--wp-red); color: #fff; }

.ec-visual {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.event-card.night .ec-visual { border-bottom-color: rgba(244,241,234,0.2); }
.ec-visual.suyuk {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(31,107,58,0.5), transparent 60%),
    repeating-linear-gradient(0deg, rgba(20,18,14,0.05) 0 1px, transparent 1px 8px),
    linear-gradient(160deg, #e9e2d2, #d9cfb8);
}
.ec-visual.race {
  background:
    linear-gradient(100deg, transparent 42%, rgba(220,38,34,0.16) 46%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(220,38,34,0.12) 0 3px, transparent 3px 60px),
    linear-gradient(180deg, #101014, #17171e);
}
.ec-visual .big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  text-transform: uppercase;
  line-height: 0.95;
  text-align: center;
}
.ec-visual.race .big { color: var(--wp-red-l); text-shadow: 0 0 32px rgba(220,38,34,0.45); }
.ec-visual .photo-note {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  opacity: 0.5;
}

.ec-body { padding: 24px 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.ec-body h3 { font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase; line-height: 1; }
.ec-body .desc { font-size: 0.92rem; color: var(--ink-soft); }
.event-card.night .ec-body .desc { color: rgba(244,241,234,0.7); }

.ec-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  display: grid;
  gap: 6px;
  border-top: 1.5px dashed var(--line);
  padding-top: 14px;
}
.event-card.night .ec-meta { border-top-color: rgba(244,241,234,0.25); }
.ec-meta div { display: flex; justify-content: space-between; gap: 12px; }
.ec-meta dt { color: var(--ink-faint); }
.event-card.night .ec-meta dt { color: rgba(244,241,234,0.45); }

.ec-actions { display: flex; gap: 10px; flex-wrap: wrap; padding: 0 20px 24px; }
.ec-actions .btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: 0.72rem; }
.event-card.night .btn { border-color: var(--paper); color: var(--paper); }
.event-card.night .btn:hover { background: var(--paper); color: var(--night); }
.event-card.night .btn-neon { border-color: var(--wp-red); background: var(--wp-red); color: #fff; }
.event-card.night .btn-neon:hover { background: var(--wp-red-d); border-color: var(--wp-red-d); color: #fff; }

/* ---------- Brands ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.brand-panel {
  border: 2px solid var(--ink);
  padding: clamp(28px, 4vw, 48px);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.brand-panel:hover { transform: translateY(-4px); }
.brand-panel.warm {
  /* 보광정 공식 사이트 founder-card 그라디언트 계승 (#112a18 → #0f1611) */
  background:
    radial-gradient(ellipse at 20% 110%, rgba(31,107,58,0.4), transparent 55%),
    linear-gradient(150deg, #112a18, #0f1611);
  color: var(--bgj-cream);
  border-bottom: 3px solid var(--bgj-green);
}
.brand-panel.late {
  background:
    linear-gradient(115deg, transparent 55%, rgba(232,50,46,0.14) 70%, transparent 85%),
    #101014;
  color: var(--paper);
}
.brand-panel h3 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; line-height: 0.95; }
.brand-panel .brand-kicker { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.25em; opacity: 0.6; text-transform: uppercase; }
.brand-panel p { font-size: 0.94rem; opacity: 0.85; max-width: 40ch; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tags span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  border: 1px solid currentColor;
  opacity: 0.7;
  padding: 4px 10px;
  text-transform: uppercase;
}
.brand-info {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 2;
  border-top: 1.5px dashed rgba(244,241,234,0.3);
  padding-top: 16px;
  opacity: 0.85;
}
.brand-panel .brand-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ---------- Philosophy ---------- */
.philosophy {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.philosophy .slogan {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  max-width: 14ch;
  margin: 0 auto;
}
.philosophy .slogan em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--paper); }
.philosophy p {
  margin: 40px auto 0;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 2.1;
  opacity: 0.85;
}
.philosophy .start-line {
  width: min(420px, 70%);
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--paper) 0 24px, transparent 24px 40px);
  margin: 48px auto 0;
}

/* ---------- Archive ---------- */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.archive-item {
  aspect-ratio: 4 / 3;
  border: 1.5px solid var(--ink);
  background:
    repeating-linear-gradient(45deg, rgba(20,18,14,0.04) 0 2px, transparent 2px 12px),
    var(--paper-dim);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ---------- Partners ---------- */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.partner-slot {
  border: 1.5px dashed var(--ink-faint);
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 26px 34px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 8vw, 90px) var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,241,234,0.2);
}
.site-footer .logo { font-size: 1.6rem; }
.site-footer .logo small { color: rgba(244,241,234,0.4); }
.footer-info {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 2.2;
  color: rgba(244,241,234,0.55);
}
.footer-info .todo { border-color: rgba(244,241,234,0.35); color: rgba(244,241,234,0.45); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 5px 0;
  color: rgba(244,241,234,0.8);
}
.footer-col a:hover { color: var(--paper); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(244,241,234,0.35);
}

/* ============================================================
   EVENT PAGE — SHARED
   ============================================================ */
.event-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.event-hero .presented {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.event-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 15vw, 13rem);
  text-transform: uppercase;
  line-height: 0.88;
}
.event-hero .hero-meta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-hero .hero-actions { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }

/* 이벤트 히어로 사진 배경 */
.event-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.event-hero .hero-bg-shade { position: absolute; inset: 0; z-index: 0; }
.theme-ember .hero-bg-shade {
  background: linear-gradient(to bottom, rgba(12,12,14,0.55), rgba(12,12,14,0.72) 55%, var(--bgj-bg) 100%);
}
.theme-night .hero-bg-shade {
  background: linear-gradient(to bottom, rgba(11,11,13,0.6), rgba(11,11,13,0.78) 55%, var(--night) 100%);
}
.event-hero > *:not(.hero-bg-img):not(.hero-bg-shade) { position: relative; z-index: 1; }

/* Countdown */
.countdown {
  display: flex;
  gap: clamp(14px, 4vw, 40px);
  margin-top: 48px;
  flex-wrap: wrap;
}
.cd-unit { text-align: center; min-width: 72px; }
.cd-unit .val {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-unit .label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 8px;
}

/* Info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: currentColor;
  border: 2px solid currentColor;
}
.info-cell { padding: 26px 22px; }
.info-cell .k {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
.info-cell .v {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.info-cell .v small { display: block; font-family: var(--font-mono); font-size: 0.66rem; margin-top: 8px; opacity: 0.6; text-transform: none; letter-spacing: 0.05em; }

/* Timeline */
.timeline { position: relative; padding-left: 34px; max-width: 640px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(180deg, currentColor 0 10px, transparent 10px 18px);
  opacity: 0.5;
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 7px;
  width: 14px; height: 14px;
  border: 2.5px solid currentColor;
  background: var(--paper);
  border-radius: 50%;
}
.tl-item h4 { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; }
.tl-item p { font-size: 0.9rem; opacity: 0.75; margin-top: 4px; }
.tl-item .time { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; opacity: 0.5; }

/* FAQ */
.faq-item { border-bottom: 1.5px solid currentColor; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary .q-mark { transform: rotate(45deg); }
.faq-item .answer { padding: 0 4px 24px; font-size: 0.9rem; opacity: 0.8; }
.answer .pending {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  border: 1px dashed currentColor;
  opacity: 0.6;
  padding: 3px 10px;
  display: inline-block;
}

/* Sticky apply bar */
.sticky-apply {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px var(--gutter);
  background: var(--ink);
  color: var(--paper);
  border-top: 2.5px solid var(--paper);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-apply.visible { transform: translateY(0); }
.sticky-apply .info { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.sticky-apply .btn { padding: 12px 24px; font-size: 0.7rem; border-color: var(--paper); color: var(--paper); }
.sticky-apply .btn:hover { background: var(--paper); color: var(--ink); }

/* ============================================================
   THEME: NIGHT (Itaewon Fast Race)
   ============================================================ */
.theme-night {
  background: var(--night);
  color: var(--paper);
}
.theme-night ::selection { background: var(--wp-red-l); color: var(--night); }
.theme-night .logo small { color: rgba(244,241,234,0.4); }
.theme-night .kicker { color: rgba(244,241,234,0.4); }
.theme-night .section-head { border-bottom-color: var(--wp-red-l); }
.theme-night .section-head .num { color: rgba(244,241,234,0.4); }
.theme-night .btn { border-color: var(--paper); color: var(--paper); }
.theme-night .btn:hover { background: var(--paper); color: var(--night); }
.theme-night .todo { border-color: rgba(244,241,234,0.4); color: rgba(244,241,234,0.5); }
.theme-night .tl-item::before { background: var(--night); }
.theme-night .event-hero {
  background:
    linear-gradient(100deg, transparent 30%, rgba(220,38,34,0.07) 42%, transparent 50%),
    linear-gradient(80deg, transparent 60%, rgba(255,45,120,0.08) 74%, transparent 84%),
    repeating-linear-gradient(90deg, rgba(244,241,234,0.03) 0 2px, transparent 2px 90px),
    var(--night);
}
.theme-night .event-hero h1 {
  background: linear-gradient(92deg, var(--paper) 55%, var(--wp-red-l) 78%, var(--wp-red-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.theme-night .accent { color: var(--wp-red-l); }
.theme-night .info-grid { color: rgba(244,241,234,0.22); }
.theme-night .info-cell { background: var(--night-soft); color: var(--paper); }
.theme-night .info-cell .v { color: var(--wp-red-l); }
.theme-night .sticky-apply { background: var(--wp-red); color: #fff; border-top-color: var(--night); }
.theme-night .sticky-apply .btn { border-color: #fff; color: #fff; }
.theme-night .sticky-apply .btn:hover { background: #fff; color: var(--wp-red); }

/* Bracket */
.bracket {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 36px);
  overflow-x: auto;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}
.bracket .round { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.bracket .round .r-label { text-align: center; opacity: 0.5; text-transform: uppercase; margin-bottom: 6px; }
.bracket .slot {
  border: 1.5px solid rgba(244,241,234,0.35);
  padding: 8px 18px;
  min-width: 88px;
  text-align: center;
}
.bracket .slot.final {
  border-color: var(--wp-red-l);
  color: var(--wp-red-l);
  box-shadow: 0 0 24px rgba(220,38,34,0.25);
  font-weight: 700;
}
.bracket .vs { opacity: 0.4; flex-shrink: 0; }

/* Speed lines */
.speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 140px, rgba(220,38,34,0.05) 140px 142px);
}

/* remaining seats */
.seats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 2px solid var(--wp-red-l);
  background: var(--wp-red-l);
  max-width: 560px;
  margin: 40px auto 0;
}
.seat-cell { background: var(--night); padding: 30px 20px; text-align: center; }
.seat-cell .g { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.3em; opacity: 0.6; text-transform: uppercase; }
.seat-cell .n { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.4rem); color: var(--wp-red-l); margin-top: 10px; }
.seat-cell .note { font-family: var(--font-mono); font-size: 0.58rem; opacity: 0.45; margin-top: 8px; letter-spacing: 0.1em; }

/* ============================================================
   THEME: EMBER (Suyuk Run)
   ============================================================ */
.theme-ember {
  background: var(--bgj-bg);
  color: var(--bgj-cream);
}
.theme-ember ::selection { background: var(--bgj-green); color: #fff; }
.theme-ember .section-head { border-bottom-color: var(--bgj-green); }
.theme-ember .btn { border-color: var(--bgj-cream); color: var(--bgj-cream); }
.theme-ember .btn:hover { background: var(--bgj-cream); color: var(--bgj-bg); }
.theme-ember .btn-solid { background: var(--bgj-green); border-color: var(--bgj-green); color: #fff; }
.theme-ember .btn-solid:hover { background: var(--bgj-green-d); border-color: var(--bgj-green-d); }
.theme-ember .todo { border-color: rgba(244,239,230,0.4); color: rgba(244,239,230,0.5); }
.theme-ember .kicker { color: rgba(244,239,230,0.4); }
.theme-ember .accent { color: var(--bgj-green-l); }
/* 보광정 공식 홈페이지 UI 계승 — 라운딩 + 그린 글로우 */
.theme-ember .btn { border-radius: 8px; }
.theme-ember .btn-solid { box-shadow: 0 10px 30px rgba(31,107,58,.4); }
.theme-ember .flow-step { border-radius: 12px; }
.theme-ember .notify-box { border-radius: 16px; }
.theme-ember .notify-form input { border-radius: 8px; }
.theme-ember .prose { color: var(--bgj-cream); }
.theme-ember .mono { color: var(--bgj-gray); }
.theme-ember .tl-item::before { background: var(--bgj-bg); }
.theme-ember .event-hero {
  background:
    radial-gradient(ellipse at 50% 115%, rgba(31,107,58,0.4), transparent 55%),
    repeating-linear-gradient(0deg, rgba(244,239,230,0.02) 0 1px, transparent 1px 9px),
    var(--bgj-bg);
}
.theme-ember .event-hero h1 .warm { color: var(--bgj-green-l); }
.theme-ember .sticky-apply { background: var(--bgj-green); color: #fff; border-top-color: var(--bgj-bg); }
.theme-ember .sticky-apply .btn { border-color: #fff; color: #fff; }
.theme-ember .sticky-apply .btn:hover { background: #fff; color: var(--bgj-green); }

/* ── 브랜드 상세페이지 (보광정) ── */
.brand-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bogwangjung/hero.jpg');
  background-size: cover;
  background-position: center;
}
.brand-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,14,0.55), rgba(12,12,14,0.75) 60%, var(--bgj-bg) 100%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.menu-card {
  border: 1.5px solid rgba(244,239,230,0.18);
  border-radius: 14px;
  overflow: hidden;
  background: #141417;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.menu-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.menu-card figcaption { padding: 20px 20px 24px; position: relative; }
.menu-card .menu-no {
  position: absolute;
  top: -19px; left: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bgj-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}
.menu-card h4 { font-size: 1.1rem; font-weight: 900; margin: 8px 0 8px; }
.menu-card p { font-size: 0.85rem; opacity: 0.65; }
.menu-card .stamp { transform: rotate(-2deg); color: var(--bgj-green-l); border-color: var(--bgj-green-l); margin-left: 6px; }
/* 웰컴피자(나이트 테마) 변주 — 레드 */
.theme-night .menu-card .menu-no { background: var(--wp-red); }
.theme-night .menu-card .stamp { color: var(--wp-red-l); border-color: var(--wp-red-l); }
.theme-night .media-item .media-ch { color: var(--wp-red-l); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.media-item {
  border: 1.5px solid rgba(244,239,230,0.18);
  border-radius: 12px;
  padding: 26px 22px;
}
.media-item .media-ch {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bgj-green-l);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}
.media-item p { font-size: 0.9rem; opacity: 0.8; }

/* Flow steps (suyuk) */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  counter-reset: flow;
}
.flow-step {
  border: 1.5px solid rgba(244,239,230,0.3);
  padding: 26px 20px 22px;
  position: relative;
  counter-increment: flow;
}
.flow-step::before {
  content: '0' counter(flow);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--bgj-green);
  position: absolute;
  top: 10px; right: 14px;
}
.flow-step h4 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; }
.flow-step p { font-size: 0.85rem; opacity: 0.75; }

/* Notify form */
.notify-box {
  border: 2px dashed rgba(244,239,230,0.4);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.notify-box h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.8rem); text-transform: uppercase; }
.notify-box p { margin: 14px 0 26px; font-size: 0.9rem; opacity: 0.75; }
.notify-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.notify-form input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: 2px solid rgba(244,239,230,0.5);
  color: inherit;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 14px 16px;
  outline: none;
}
.notify-form input:focus { border-color: var(--bgj-green); }
.notify-form .btn { padding: 14px 22px; }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

.narrow { max-width: 720px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.prose {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 2.1;
  font-weight: 500;
  max-width: 620px;
}
.prose + .prose { margin-top: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .brands-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}
