/* ═══════════════════════════════════════════════════════════════
   CHOOPER B2B · v14 — The Mediterranean Vintner
   References: Aplós · Lyre's · Seedlip · Penfolds · Wilfred's · Aman
   영문 위주 sophisticated international + 한글 supporting
   Subtle wit through copy, not visual gimmicks
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* — Mediterranean Vintner Palette — */
  --sand:         #F1E5CD;        /* warm sand — main background */
  --sand-deep:    #E5D5B5;        /* deeper sand */
  --sand-soft:    #F8EFDC;        /* soft cream */
  --paper:        #FAF3E2;        /* paper card */

  --wine:         #4A1320;        /* deep bordeaux */
  --wine-mid:     #6B1F2D;
  --wine-glow:    #8B2A3E;

  --olive:        #6B7A47;        /* Mediterranean olive */
  --olive-deep:   #4A5631;

  --mustard:      #C9923D;        /* warm gold/mustard */
  --mustard-soft: #D9A85C;

  --terra:        #B5664A;        /* warm terracotta */
  --terra-soft:   #D08366;

  --ink:          #1A1410;        /* warm near-black */
  --ink-soft:     #3E3128;
  --ink-mute:     rgba(62, 49, 40, 0.62);
  --ink-faint:    rgba(62, 49, 40, 0.4);

  --line:         rgba(62, 49, 40, 0.16);
  --line-light:   rgba(62, 49, 40, 0.08);
  --bg-cream:     #FAF3E2;
  --bg:           #F1E5CD;
  --bg-soft:      #E5D5B5;
  --white:        #FFFFFF;

  /* — Typography — */
  --display: "Cormorant Garamond", "Pretendard Variable", Pretendard, "Italiana", serif;
  --serif:   "Cormorant Garamond", "Pretendard Variable", Pretendard, serif;
  --pretendard: "Pretendard Variable", Pretendard, -apple-system, system-ui, sans-serif;
  --inter:   "Inter", "Pretendard Variable", Pretendard, sans-serif;
  --italiana: "Italiana", "Pretendard Variable", serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-slow: cubic-bezier(.65, 0, .35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: rgba(217, 168, 92, .35); color: inherit; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--pretendard);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--sand);
  letter-spacing: -0.005em;
  word-break: keep-all;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container.narrow { max-width: 820px; }

/* ═══════════ TYPE SYSTEM ═══════════ */

/* 글로벌 정자 강제 — 한국어는 이탤릭이 부자연스러움 */
em, i, .italic, cite, address, dfn, var {
  font-style: normal;
}

.display-xl {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5.2vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--sand);
}
.display-xl em, .display-xl .italic {
  font-style: normal;
  font-weight: 300;
  color: var(--mustard-soft);
}
.display-xl .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineUp 1.2s var(--ease) forwards;
}
.display-xl .line:nth-child(1) { animation-delay: .2s; }
.display-xl .line:nth-child(2) { animation-delay: .55s; }
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.display-l {
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  word-break: keep-all;
}
.display-l em {
  font-style: normal;
  font-weight: 800;
  color: var(--terra);
}
.display-l.center { text-align: center; }
.display-l.light { color: var(--sand); }
.display-l.light em { color: var(--mustard-soft); }

.lede {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.75;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  margin-bottom: 56px;
  font-style: normal;
  word-break: keep-all;
}
.lede.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.body-en {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mute);
  font-style: normal;
  margin-bottom: 24px;
  max-width: 42ch;
}
.body-kr {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin-bottom: 32px;
  max-width: 36ch;
  word-break: keep-all;
}

.overline {
  display: inline-block;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--mustard);
  text-transform: uppercase;
}

/* ═══════════ CHAPTER MARKER ═══════════ */
.chapter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.chapter-center {
  justify-content: center;
  text-align: center;
}
.ch-num {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--mustard);
  text-transform: uppercase;
}
.ch-line {
  height: 1px;
  width: 80px;
  background: var(--line);
}
.ch-title {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
}
.chapter-light .ch-num { color: var(--mustard-soft); }
.chapter-light .ch-line { background: rgba(255, 252, 240, .25); }
.chapter-light .ch-title { color: rgba(255, 252, 240, .7); }

/* ═══════════ NAV ═══════════ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 32px 0;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-mark {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--sand);
}
.brand-est {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 252, 240, .6);
  margin-top: 4px;
}
.menu {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.menu a {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: rgba(255, 252, 240, .92);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--mustard-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.menu a:hover { color: var(--mustard-soft); }
.menu a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--sand);
  border: 1px solid rgba(255, 252, 240, .4);
  padding: 11px 22px;
  border-radius: 0;
  transition: all .3s var(--ease);
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 80px;
  overflow: hidden;
  color: var(--sand);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 럭셔리 톤: 따뜻한 sepia + 진한 그림자 + 채도 다운 */
  filter: brightness(.46) contrast(1.12) saturate(.72) sepia(.08);
  animation: heroZoom 24s var(--ease-slow) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(26, 20, 16, .65) 100%),
    linear-gradient(180deg, rgba(26, 20, 16, .55) 0%, rgba(26, 20, 16, .15) 45%, rgba(26, 20, 16, .75) 100%);
}

/* — Hero corners (vintner-style frame) — */
.hero-corner {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 40px;
  font-family: var(--inter);
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 252, 240, .85);
  text-transform: uppercase;
}
.hero-corner-tl { top: 92px; left: 0; }
.hero-corner-tr { top: 92px; right: 0; }
.corner-num {
  font-family: var(--display);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--mustard-soft);
  text-transform: none;
}
.corner-divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 252, 240, .4);
}

.hero-stage {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-stage .overline {
  color: rgba(255, 252, 240, .7);
  margin-bottom: 48px;
  display: inline-block;
}
.hero-kr {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.7;
  color: rgba(255, 252, 240, .96);
  letter-spacing: -0.015em;
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  word-break: keep-all;
  opacity: 0;
  animation: lineUp 1.2s var(--ease) 1s forwards;
}
.hero-kr .kr-line {
  display: block;
}
.hero-kr .kr-line + .kr-line {
  margin-top: 4px;
  color: rgba(255, 252, 240, .78);
  font-weight: 400;
}
.hero-kr .dot {
  color: var(--mustard-soft);
  margin: 0 12px;
}

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: lineUp 1.2s var(--ease) 1.3s forwards;
}

/* — Buttons — */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 42px;
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  text-transform: none;
  border-radius: 6px;
  transition: all .35s var(--ease);
  position: relative;
}
.btn::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  transition: opacity .25s var(--ease), right .25s var(--ease);
}
.btn:hover::after { opacity: 1; right: 14px; }
.btn .btn-kr {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .65;
}

/* PRIMARY — 샘플 킷 (강조) */
.btn-cream {
  background: var(--mustard);
  color: var(--ink);
  border: 2px solid var(--mustard);
  box-shadow: 0 10px 28px rgba(201, 146, 61, .35);
}
.btn-cream::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: var(--mustard);
  z-index: -1;
  opacity: .35;
  animation: ctaPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.08); filter: blur(8px); }
}
.btn-cream:hover {
  background: var(--mustard-soft);
  color: var(--ink);
  border-color: var(--mustard-soft);
  box-shadow: 0 14px 40px rgba(201, 146, 61, .5);
}
.btn-cream .btn-kr { opacity: .55; }

/* 통합 단일 CTA — 더 굵직하게 */
.btn-unified {
  font-size: 20px !important;
  padding: 26px 56px !important;
  letter-spacing: -0.02em !important;
  border-radius: 8px !important;
}
.btn-unified .btn-kr {
  margin-top: 6px;
  font-size: 11px !important;
  letter-spacing: 3px !important;
}

/* SECONDARY — 제품 소개서 (보조) */
.btn-line {
  background: rgba(255, 252, 240, .08);
  color: var(--sand);
  border: 2px solid rgba(255, 252, 240, .85);
  backdrop-filter: blur(8px);
}
.btn-line:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}
.btn-line .btn-kr { opacity: .7; }

/* — Hero foot stats (vintner-style ledger) — */
.hero-foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 96px auto 0;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 252, 240, .15);
}
.foot-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--mustard-soft);
  letter-spacing: -0.01em;
}
.stat-num i {
  font-style: normal;
  font-size: 0.55em;
  margin-left: 2px;
}
.stat-cap {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 252, 240, .65);
  text-transform: uppercase;
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  background: var(--ink);
  color: var(--sand);
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 252, 240, .08);
}
.track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: scroll 60s linear infinite;
  will-change: transform;
}
.m-dot {
  color: var(--mustard);
  font-size: 8px;
  align-self: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════ METHOD ═══════════ */
.method {
  padding: 96px 0;
  background: var(--sand);
}
.method-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.method-text .display-l { margin-bottom: 36px; }
.method-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.method-stats > div { display: flex; align-items: baseline; gap: 12px; }
.ms-num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.ms-num i { font-style: normal; font-size: 0.45em; margin-left: 1px; }
.ms-cap {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ink-mute);
  text-transform: uppercase;
  line-height: 1.4;
}

.method-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.method-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(.85) brightness(.96) sepia(.06);
  transition: transform 1.4s var(--ease);
}
.method-img:hover img { transform: scale(1.04); }
.img-stamp {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--mustard-soft);
  background: rgba(26, 20, 16, .82);
  padding: 16px 24px;
  border: 1px solid rgba(212, 181, 131, .35);
  text-align: center;
  line-height: 1.4;
  backdrop-filter: blur(8px);
  transform: rotate(-3deg);
}
.img-stamp .stamp-year {
  font-family: var(--display);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--mustard-soft);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(212, 181, 131, .25);
  text-transform: none;
}

/* ═══════════ HERITAGE GALLERY (사장님 실사진) ═══════════ */
.heritage {
  padding: 96px 0 0;
  background: var(--sand);
  position: relative;
}
.heritage .display-l { margin-bottom: 20px; }
.heritage .lede { margin-bottom: 48px; }
.heritage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  height: 70vh;
  max-height: 640px;
  min-height: 460px;
  margin: 0;
  padding: 0 40px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.hg-tile {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
}
.hg-large {
  grid-row: 1;
}
.hg-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) contrast(1.1) saturate(.78) sepia(.08);
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
}
.hg-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.05);
}
.hg-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 20, 16, .85) 100%);
  color: var(--sand);
  transition: padding .35s var(--ease);
}
.hg-tile:hover figcaption { padding-bottom: 32px; }
.hg-label {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--mustard-soft);
  text-transform: uppercase;
}
.hg-place {
  font-family: var(--display);
  font-style: normal;
  font-size: 17px;
  color: var(--sand);
  letter-spacing: 0.5px;
}
.hg-large .hg-label { font-size: 11px; }
.hg-large .hg-place { font-size: 22px; }

/* ═══════════ R&D 3-CARD ROW ═══════════ */
.rnd-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rnd-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 32px 36px;
  position: relative;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.rnd-card:hover {
  background: var(--bg-cream);
  transform: translateY(-4px);
}
.rnd-num {
  display: inline-block;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--mustard);
  margin-bottom: 18px;
}
.rnd-h {
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
  word-break: keep-all;
}
.rnd-desc {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
  word-break: keep-all;
}

/* ═══════════ FAQ ═══════════ */
.faq-sec {
  padding: 96px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-sec .display-l { margin-bottom: 40px; }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  cursor: pointer;
  list-style: none;
  transition: padding-left .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { padding-left: 16px; }
.faq-q {
  font-family: var(--pretendard);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.02em;
  color: var(--ink);
  word-break: keep-all;
}
.faq-mark {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 28px;
  color: var(--terra);
  line-height: 1;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-a {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  padding: 0 8px 28px;
  margin: 0;
  max-width: 620px;
  word-break: keep-all;
}

/* ═══════════ IN MOTION — 영상 섹션 ═══════════ */
.motion {
  background: var(--bg-cream);
  color: var(--ink);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.motion .chapter { margin-bottom: 32px; }
.motion-title-text { margin-bottom: 24px; }
.motion-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reels — 세로 영상 2개 */
.reels-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 64px auto 0;
}
.reel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.reel:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
}
.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(26,20,16,.78) 65%, rgba(26,20,16,.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reel-num {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--mustard-soft);
}
.reel-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--sand);
}
.reel-sub {
  font-family: var(--pretendard);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 252, 240, .78);
  letter-spacing: -0.005em;
}

/* ═══════════ HOOK — B2B 타겟 고객 ═══════════ */
.hook {
  padding: 96px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hook .display-l { margin-bottom: 20px; }
.hook .lede { margin-bottom: 40px; }
.hook-list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hook-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.hook-list li:first-child { border-top: 1px solid var(--line); }
.hook-list li:hover {
  background: var(--paper);
  padding-left: 24px;
}
.hk-num {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--terra);
}
.hook-list b {
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hook-list i {
  font-family: var(--pretendard);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
  text-align: right;
  word-break: keep-all;
}
.hook-close {
  font-family: var(--pretendard);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin: 0;
  word-break: keep-all;
}
.hook-close em {
  color: var(--wine);
  font-weight: 800;
}

/* ═══════════ AWARDS ═══════════ */
.awards {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.awards-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.awards-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.45) contrast(1.05) brightness(.92) sepia(.15);
}
.awards-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(241,229,205,.55) 0%, rgba(241,229,205,.92) 65%),
    linear-gradient(180deg, var(--sand) 0%, rgba(241,229,205,.8) 50%, var(--sand-deep) 100%);
}
.awards > .container { position: relative; z-index: 1; }
.awards::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(181, 102, 74, .08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(201, 146, 61, .1) 0%, transparent 45%);
  pointer-events: none;
}
.awards .container { position: relative; z-index: 1; }
.awards .display-l { margin-bottom: 20px; }
.awards .lede { margin-bottom: 48px; }

.medal-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding: 12px 24px 28px;
  margin: 0 -24px;
  /* 부드러운 스크롤 + iOS 모멘텀 */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mustard) transparent;
}
.medal-row::-webkit-scrollbar { height: 6px; }
.medal-row::-webkit-scrollbar-track { background: transparent; }
.medal-row::-webkit-scrollbar-thumb { background: var(--mustard); border-radius: 3px; }

/* 캐러셀 가로 스크롤 힌트 */
.carousel-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 16px;
}
.carousel-hint::before,
.carousel-hint::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--mustard);
}
.medal-row .med {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 200px;
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .medal-row .med { flex: 0 0 240px; }
}
.med {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  transition: all .4s var(--ease);
  position: relative;
}
.med:hover {
  transform: translateY(-6px);
}
.med-frame {
  aspect-ratio: 3 / 4;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  border-bottom: none;
}
.med-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 18px rgba(26, 20, 16, .12)) contrast(1.05);
}
/* Monde Selection (N°02) — SVG filter로 흰색 픽셀 → 알파 0 */
.med:nth-child(2) .med-frame img {
  mix-blend-mode: normal;
  filter: url(#kill-white) drop-shadow(0 8px 18px rgba(26, 20, 16, .18));
}
.med-meta {
  padding: 28px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.med-year {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--mustard);
  text-transform: uppercase;
}
.med-rank {
  font-family: var(--pretendard);
  font-weight: 800;
  font-size: 32px;
  font-style: normal;
  letter-spacing: -0.025em;
  color: var(--wine);
  line-height: 1.1;
  margin: 4px 0 8px;
}
.med-name {
  font-family: var(--pretendard);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}
.med-cat {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-transform: none;
  line-height: 1.55;
  margin-top: 2px;
}

/* ═══════════ COLLECTION ═══════════ */
.collection {
  padding: 96px 0;
  background: var(--paper);
}
.collection .display-l { margin-bottom: 48px; }
.bot-row {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--mustard) transparent;
}
.bot-row::-webkit-scrollbar { height: 6px; }
.bot-row::-webkit-scrollbar-track { background: transparent; }
.bot-row::-webkit-scrollbar-thumb { background: var(--mustard); border-radius: 3px; }
.bot-row .bot {
  flex: 0 0 20%;
  min-width: 240px;
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .bot-row .bot { flex: 0 0 50%; min-width: 280px; }
}
@media (max-width: 640px) {
  .bot-row .bot { flex: 0 0 85%; }
}
.bot {
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 48px 28px 56px;
  background: var(--paper);
  transition: background .5s var(--ease);
}
.bot:last-child { border-right: none; }
.bot:hover { background: var(--bg-cream); }

/* 용량 배지 (750ml / 375ml / NEW) */
.bot-size {
  position: absolute;
  top: 48px;
  right: 28px;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--terra);
  background: rgba(181, 102, 74, .1);
  border: 1px solid var(--terra);
  padding: 4px 10px;
  text-transform: uppercase;
}
.bot-feature .bot-size {
  /* featured 카드는 우측에 '세계 1위' ribbon이 있으므로 size 배지는 좌측 N°번호 아래로 */
  top: 80px;
  right: auto;
  left: 28px;
  color: var(--mustard-soft);
  background: rgba(212, 181, 131, .15);
  border-color: var(--mustard-soft);
}
.bot-feature {
  background: linear-gradient(180deg, #2A1F1A 0%, #1A1410 100%);
  color: var(--sand);
  border-color: rgba(212, 181, 131, .15);
}
.bot-feature:hover { background: linear-gradient(180deg, #2F231C 0%, #1F1612 100%); }
.bot-feature .bot-name { color: var(--sand); }
.bot-feature .bot-en { color: var(--mustard-soft); }
.bot-feature .bot-medal { color: var(--mustard-soft); }
.bot-feature .bot-num { color: rgba(255, 252, 240, .55); }
.bot-feature .bot-desc { color: rgba(255, 252, 240, .75); }
.bot-feature .bot-desc .kr { color: rgba(255, 252, 240, .55); }

.bot-num {
  font-family: var(--display);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--mustard);
  margin-bottom: 24px;
}
.bot-ribbon {
  position: absolute;
  top: 48px;
  right: 28px;
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--mustard);
  border: none;
  padding: 5px 12px;
  text-transform: none;
}
.bot-img {
  aspect-ratio: 1 / 1.3;
  max-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bot-img::before {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 22%;
  right: 22%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .25), transparent 70%);
  filter: blur(8px);
}
.bot-feature .bot-img::before {
  background: radial-gradient(ellipse, rgba(212, 181, 131, .25), transparent 70%);
}
.bot-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform .8s var(--ease);
}
.bot:hover .bot-img img { transform: translateY(-12px) scale(1.04); }

/* 제품 카드 수상 뱃지 오버레이 (좌상단) */
.bot-badges {
  position: absolute; top: 6px; left: 6px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px;
  pointer-events: none;
}
.bot-badges .bot-badge {
  height: 54px !important; width: auto !important; max-width: none !important;
  display: block; object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.22));
}
@media (max-width: 600px) { .bot-badges .bot-badge { height: 44px !important; } }

.bot-text { text-align: left; }
.bot-medal {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--mustard);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bot-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.bot-en {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bot-desc {
  font-family: var(--pretendard);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.bot-desc .kr {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 6px;
  letter-spacing: 0;
}

/* ═══════════ ASIDE — witty pause ═══════════ */
.aside {
  padding: 100px 0;
  background: var(--olive);
  color: var(--sand);
  text-align: center;
  position: relative;
}
.aside-mark {
  display: inline-block;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--mustard-soft);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.aside-quote {
  font-family: var(--pretendard);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--sand);
  margin-bottom: 32px;
  word-break: keep-all;
}
.aside-quote em {
  font-style: normal;
  font-weight: 700;
  color: var(--mustard-soft);
}
.aside-kr {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 252, 240, .88);
  letter-spacing: -0.01em;
  max-width: 540px;
  margin: 0 auto;
  word-break: keep-all;
}

/* ═══════════ PARTNERS — full bleed ═══════════ */
.partners {
  position: relative;
  padding: 96px 40px;
  color: var(--sand);
  overflow: hidden;
}
.partners-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.partners-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) contrast(1.12) saturate(.72) sepia(.08);
}
.partners-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 19, 32, .5) 0%, rgba(26, 20, 16, .8) 100%);
}
.partners-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.partners .chapter { margin-bottom: 56px; }
.partners .display-l { margin-bottom: 80px; max-width: 900px; }

.venues {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 40px;
  padding: 12px 40px 32px;
  margin: 0 -40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mustard-soft) transparent;
}
.venues::-webkit-scrollbar { height: 6px; }
.venues::-webkit-scrollbar-track { background: rgba(255, 252, 240, .08); }
.venues::-webkit-scrollbar-thumb { background: var(--mustard-soft); border-radius: 3px; }
.venues .vn {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 220px;
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .venues .vn { flex: 0 0 200px; }
}
.vn {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
  cursor: default;
}
.vn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7) contrast(1.08) saturate(.78) sepia(.1);
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.vn:hover img {
  transform: scale(1.06);
  filter: brightness(.82) contrast(1.1) saturate(.92) sepia(.05);
}
.vn figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 20, 16, .35) 35%, rgba(26, 20, 16, .92) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: padding .35s var(--ease);
}
.vn:hover figcaption { padding-bottom: 32px; }

.vn-num {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--mustard-soft);
  margin-bottom: 6px;
}
.vn-name {
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.025em;
  color: var(--sand);
  word-break: keep-all;
}
.vn-sub {
  font-family: var(--pretendard);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: rgba(255, 252, 240, .72);
  word-break: keep-all;
}

/* ═══════════ QUOTE ═══════════ */
.quote-section {
  padding: 96px 0;
  background: var(--sand);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 럭셔리 톤: warm sepia + contrast + soft */
  filter: saturate(.55) contrast(1.08) brightness(.88) sepia(.18);
  transform: scale(1.04);
}
.quote-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--sand) 0%, rgba(241,229,205,.65) 18%, rgba(241,229,205,.55) 50%, rgba(241,229,205,.78) 82%, var(--sand) 100%),
    radial-gradient(circle at 50% 50%, rgba(241,229,205,.2) 0%, rgba(241,229,205,.7) 80%);
}
.quote-section > .container { position: relative; z-index: 1; }
.qmark {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 140px;
  color: var(--terra);
  line-height: 0.4;
  margin-bottom: 32px;
}
.big-quote {
  font-family: var(--pretendard);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 40px;
  word-break: keep-all;
}
.big-quote em {
  font-style: normal;
  font-weight: 700;
  color: var(--wine);
}
.qattr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  font-family: var(--pretendard);
  margin-bottom: 16px;
}
.qattr strong {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--terra);
}
.qattr span {
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.qattr-kr {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  word-break: keep-all;
}

/* ═══════════ NEXT ═══════════ */
.next {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--sand) 0%, var(--bg-cream) 100%);
}
.next .display-l { margin-bottom: 48px; }

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
/* 통합 카드 단일 표시 — 가운데 정렬, 더 큼직하게 */
.step-row-single {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  border: none;
  background: transparent;
}

/* 통합 카드 가로 레이아웃 — 텍스트 좌측, 버튼 우측 큼직 */
.step-feature-row {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
  padding: 56px 64px !important;
}
.step-feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.step-feature-row .step-cta {
  margin-top: 0 !important;
  padding: 24px 40px !important;
  font-size: 19px !important;
  letter-spacing: -0.015em !important;
  border-radius: 999px !important;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(217, 168, 92, .35);
  align-self: center;
}
.step-feature-row:hover .step-cta {
  transform: translateX(6px) !important;
  box-shadow: 0 12px 30px rgba(217, 168, 92, .5) !important;
}
@media (max-width: 900px) {
  .step-feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 32px !important;
  }
  .step-feature-row .step-cta { align-self: flex-start; }
}
.step {
  padding: 56px 40px 48px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: background .35s var(--ease);
  position: relative;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--bg-cream); }

/* 양옆 액센트 카드 */
.step-olive {
  background: linear-gradient(180deg, #EAEBD4 0%, #DFE2C2 100%);
  color: var(--ink);
}
.step-olive:hover { background: linear-gradient(180deg, #E1E3C5 0%, #D3D7B1 100%); }
.step-olive .step-num { color: var(--olive-deep); }
.step-olive .step-icon { color: var(--olive); }
.step-olive .step-arrow { color: var(--olive-deep); }

.step-terra {
  background: linear-gradient(180deg, #F4DBC8 0%, #ECC6AA 100%);
  color: var(--ink);
}
.step-terra:hover { background: linear-gradient(180deg, #EFCDB3 0%, #E5B695 100%); }
.step-terra .step-num { color: var(--wine); }
.step-terra .step-icon { color: var(--terra); }
.step-terra .step-arrow { color: var(--wine); }

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 252, 240, .55);
  margin-bottom: 24px;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.step:hover .step-icon {
  transform: rotate(-6deg) scale(1.08);
  background: rgba(255, 252, 240, .85);
}

.step-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 22px;
  transition: transform .25s var(--ease);
  align-self: flex-start;
}
.step:hover .step-arrow { transform: translateX(6px); }
.step-feature {
  background: linear-gradient(180deg, #2A1F1A 0%, #14100C 100%);
  color: var(--sand);
  position: relative;
  z-index: 2;
  transform: scale(1.04);
  box-shadow: 0 24px 56px rgba(26, 20, 16, .38), 0 0 0 1px var(--mustard);
  outline: 1px solid rgba(217, 168, 92, .35);
  outline-offset: 6px;
}
.step-feature:hover {
  background: linear-gradient(180deg, #322620 0%, #1A1410 100%);
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 32px 70px rgba(26, 20, 16, .5), 0 0 0 1px var(--mustard);
}
.step-feature h3 {
  color: #FFFFFF !important;
  font-family: var(--pretendard) !important;
  font-weight: 900 !important;
  font-size: clamp(32px, 3vw, 44px) !important;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  opacity: 1 !important;
}
.step-feature h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--mustard);
  margin-top: 16px;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(217, 168, 92, .7);
}
.step-feature .step-num { color: var(--mustard); font-weight: 600; }
.step-feature .step-kr {
  color: rgba(255, 252, 240, .96);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.step-feature .step-en {
  color: rgba(217, 168, 92, .55);
  font-size: 12px;
}

/* 추천 배지 */
.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.005em;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(201, 146, 61, .4);
  animation: badgeFloat 2.2s ease-in-out infinite;
  z-index: 3;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* 카드 안 CTA */
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 4px;
  align-self: flex-start;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step-feature:hover .step-cta {
  background: var(--mustard-soft);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(201, 146, 61, .35);
}

/* 펄스 글로우 — 가운데 카드 주변 */
.step-feature::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 146, 61, .25) 0%, transparent 70%);
  z-index: -1;
  animation: featurePulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes featurePulse {
  0%, 100% { opacity: .4; transform: scale(.98); }
  50% { opacity: .8; transform: scale(1.02); }
}

.step-num {
  font-family: var(--display);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--mustard);
  margin-bottom: 24px;
}
.step h3 {
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.step-en {
  font-family: var(--serif);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-top: 8px;
  letter-spacing: 0;
}
.step-kr {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
  line-height: 1.7;
  word-break: keep-all;
  flex: 1;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--ink);
  color: var(--sand);
  padding: 80px 0 32px;
}
.footer-mark-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-monogram {
  width: 56px; height: 56px;
  border: 1px solid var(--mustard);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: normal;
  font-size: 32px;
  color: var(--mustard-soft);
}
.footer-brand-en {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--sand);
}
.footer-brand-kr {
  font-family: var(--pretendard);
  font-size: 12px;
  color: rgba(255, 252, 240, .55);
  letter-spacing: 2px;
}
.footer-tagline {
  font-family: var(--display);
  font-style: normal;
  font-size: 17px;
  color: var(--mustard-soft);
  margin-bottom: 56px;
  letter-spacing: 0.5px;
}
.footer-tagline .dot { color: rgba(255, 252, 240, .35); margin: 0 12px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding: 56px 0;
  border-top: 1px solid rgba(255, 252, 240, .12);
  border-bottom: 1px solid rgba(255, 252, 240, .12);
}
.fc h4 {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--mustard);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.fc a {
  display: block;
  font-family: var(--pretendard);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 252, 240, .82);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  transition: color .25s var(--ease);
}
.fc a:hover { color: var(--mustard-soft); }
.fc p { font-size: 12px; color: rgba(255, 252, 240, .5); margin-top: 8px; }
.footer-base {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.muted {
  font-family: var(--pretendard);
  font-size: 11px;
  color: rgba(255, 252, 240, .42);
  letter-spacing: 0.5px;
  line-height: 1.7;
}

/* ═══════════ STICKY MOBILE CTA ═══════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--ink);
  color: var(--sand);
  padding: 16px 24px;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--mustard);
  box-shadow: 0 8px 24px rgba(26, 20, 16, .25);
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
}

/* ═══════════ FLOATING ACTIONS ═══════════ */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(26, 20, 16, .25);
  transition: all .3s var(--ease);
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px rgba(26, 20, 16, .3);
}
.float-kakao {
  background: #FEE500;
  color: #1A1410;
}
.float-phone {
  background: var(--wine);
  color: var(--sand);
}
@media (max-width: 768px) {
  .float-actions { bottom: 88px; right: 14px; }
  .float-btn { width: 46px; height: 46px; }
}

/* ═══════════ FORM PAGES ═══════════ */
.form-page {
  background: var(--sand);
  min-height: 100vh;
}
.form-page-hero {
  background: var(--ink);
  color: var(--sand);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 181, 131, .12), transparent 70%);
}
.form-page-hero > * { position: relative; z-index: 1; }
.form-page-hero .overline {
  color: var(--mustard-soft);
  display: inline-block;
  margin-bottom: 24px;
}
.form-page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--sand);
  margin-bottom: 24px;
  word-break: keep-all;
}
.form-page-hero h1 em { font-style: normal; color: var(--mustard-soft); }
.form-page-hero p {
  font-family: var(--pretendard);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 252, 240, .92);
  max-width: 620px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.form-back {
  position: absolute;
  top: 32px;
  left: 40px;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--mustard-soft);
  z-index: 5;
  text-transform: uppercase;
}

.form-wrap {
  max-width: 720px;
  margin: -56px auto 100px;
  background: var(--paper);
  padding: 56px 48px 40px;
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 48px rgba(26, 20, 16, .08);
}
.form-section-title {
  font-family: var(--pretendard);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--mustard);
  text-transform: none;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: none;
}
.field label .req { color: var(--terra); margin-left: 4px; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 0;
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  transition: border-color .3s var(--ease);
  letter-spacing: -0.012em;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--mustard);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field textarea { min-height: 100px; resize: vertical; padding-top: 12px; }
.field select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23C9923D" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 28px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.check-pill {
  padding: 14px 22px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-family: var(--pretendard);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s var(--ease);
  user-select: none;
  letter-spacing: -0.01em;
}
.check-pill:hover { border-color: var(--mustard); color: var(--ink); }
.check-pill input { display: none; }
.check-pill:has(input:checked) {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--ink);
}

.form-submit {
  width: 100%;
  margin-top: 32px;
  padding: 22px 32px;
  background: var(--ink);
  color: var(--sand);
  border: none;
  font-family: var(--pretendard);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  text-transform: none;
  cursor: pointer;
  transition: background .35s var(--ease);
}
.form-submit:hover { background: var(--wine); }

.form-status {
  margin-top: 20px;
  padding: 18px 24px;
  text-align: center;
  font-family: var(--pretendard);
  font-size: 14px;
  display: none;
  border-left: 2px solid transparent;
}
.form-status.success {
  display: block;
  background: rgba(201, 146, 61, .1);
  color: var(--ink-soft);
  border-left-color: var(--mustard);
}
.legal {
  font-family: var(--pretendard);
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 24px;
  line-height: 1.85;
  letter-spacing: -0.005em;
}

/* ─── 3종 샘플 킷 고정 카드 (sample.html) ─── */
.kit-fixed { margin: 4px 0 8px; }
.kit-card {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--paper) 100%);
  border: 1.5px solid var(--mustard);
  padding: 28px 28px 24px;
  position: relative;
}
.kit-card::before {
  content: 'FIXED';
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--inter);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 10px;
}
.kit-label {
  display: block;
  font-family: var(--pretendard);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.kit-items {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kit-items li {
  font-family: var(--pretendard);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.kit-items li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--mustard);
  font-weight: 900;
  font-size: 20px;
  top: -2px;
}
.kit-items li span {
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-left: 4px;
}
.kit-note {
  font-family: var(--pretendard);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quote-preview {
  margin-top: 36px;
  padding: 32px;
  background: var(--bg-cream);
  border: 1px solid var(--mustard);
  display: none;
  position: relative;
}
.quote-preview::before {
  content: 'AUTO QUOTE';
  position: absolute; top: -10px; left: 24px;
  background: var(--paper);
  padding: 0 12px;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--mustard);
}
.quote-preview.visible { display: block; }
.quote-preview h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--ink);
}
.quote-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--pretendard);
  font-size: 14px;
}
.quote-row:last-child {
  font-family: var(--display);
  font-size: 22px;
  border-bottom: none;
  border-top: 1px solid var(--ink);
  margin-top: 8px;
  padding-top: 14px;
  color: var(--wine);
}

/* ═══════════ TACTILE — 클릭감 ═══════════ */
.btn, .nav-cta, .sticky-cta, .float-btn,
.step, .bot, .vn, .hg-tile, .med,
.rnd-card, .hook-list li, .faq-item summary,
button[type=submit] {
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .25s var(--ease), background .25s var(--ease), filter .25s var(--ease);
  position: relative;
  will-change: transform;
}

/* 호버 — 살짝 위로 떠오름 (단, .btn 변종은 각자 그림자 유지) */
.nav-cta:hover, .sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,20,16,.18);
}
.btn:hover {
  transform: translateY(-3px);
}

/* 클릭 순간 — 눌리는 느낌 */
.btn:active, .nav-cta:active, .sticky-cta:active,
.float-btn:active,
button[type=submit]:active,
.step:active, .bot:active, .vn:active,
.rnd-card:active, .hg-tile:active, .med:active {
  transform: scale(.94) translateY(0);
  transition-duration: .08s;
  box-shadow: 0 1px 4px rgba(26,20,16,.25);
}

/* 플로팅 아이콘 — 호버 시 회전·확대 */
.float-btn {
  cursor: pointer;
  user-select: none;
}
.float-btn:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 30px rgba(26,20,16,.4);
  filter: brightness(1.08);
}
.float-btn:active {
  transform: scale(.88) rotate(0deg);
}

/* 리플 (클릭 시 퍼지는 원) */
.tap-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .55s linear;
  background: rgba(255, 255, 255, .55);
  pointer-events: none;
  z-index: 5;
}
.float-btn .tap-ripple { background: rgba(255, 255, 255, .7); }
.btn-cream .tap-ripple,
.step-feature .tap-ripple,
button[type=submit] .tap-ripple { background: rgba(255, 252, 240, .45); }

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 카드류 호버 그림자 */
.rnd-card:hover, .step:hover {
  box-shadow: 0 14px 40px rgba(26,20,16,.12);
  transform: translateY(-4px);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .menu { display: none; }
  .method-grid { grid-template-columns: 1fr; gap: 56px; }
  .medal-row { grid-template-columns: repeat(2, 1fr); }
  .heritage-grid { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto; max-height: none; min-height: 0; }
  .hg-large { grid-column: 1; grid-row: 1; aspect-ratio: 16 / 10; }
  .hg-tile:not(.hg-large) { aspect-ratio: 4 / 3; }
  .hook-list li { grid-template-columns: 40px 1fr; row-gap: 4px; }
  .hook-list i { grid-column: 2; text-align: left; font-size: 14px; }
  .rnd-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
  .rnd-card { padding: 32px 24px 28px; }
  .faq-item summary { padding: 22px 4px; gap: 16px; }
  .faq-item:hover summary { padding-left: 8px; }
  .reels-row { grid-template-columns: 1fr; gap: 24px; max-width: 360px; margin-top: 48px; }
  .motion { padding: 80px 0; }
  /* bot-row는 캐러셀이므로 grid-template-columns 더 이상 적용 안 함 */
  .bot { border-right: 1px solid var(--line); }
  .step-row { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .venues { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vn { aspect-ratio: 4 / 5; }
  .vn figcaption { padding: 18px 16px; }
  .hero-corner { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .hero { padding: 120px 24px 64px; }
  .hero-foot { gap: 16px; padding-top: 28px; margin-top: 64px; }
  .stat-num { font-size: 32px; }
  .stat-cap { font-size: 9px; letter-spacing: 2px; }
  .method, .awards, .collection, .partners, .quote-section, .next { padding: 80px 0; }
  .partners { padding: 80px 24px; }
  .medal-row { grid-template-columns: 1fr; }
  .bot-row { grid-template-columns: 1fr; }
  .bot { border-right: none; }
  .bot:nth-child(2n) { border-right: none; }
  .form-wrap { padding: 40px 24px; margin: -32px 16px 64px; }
  .form-page-hero { padding: 120px 24px 64px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-base { flex-direction: column; }
  .nav-row { padding: 0 24px; grid-template-columns: 1fr auto; }
  .brand-est { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 11px; }
  .footer-brand-en { font-size: 24px; }
  body { padding-bottom: 80px; }
}
