/* =========================================================
   부대찌개대사관 — 디자인 시스템
   "어두운 냄비 안" 컨셉. 무쇠 갈색 배경 위에 백자색 텍스트.
   끓는 국물 옆에서 들여다보는 시점.
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Serif+KR:wght@300;400;500;600;700;900&family=Gowun+Batang:wght@400;700&display=swap');

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ---------- Variables — "어두운 냄비 안" 팔레트 ---------- */
:root {
  /* Canonical palette */
  --ink: #0f0a08;          /* 거의 검정 */
  --pot-dark: #1a120e;     /* 어두운 무쇠 — 메인 배경 */
  --pot-warm: #2a1d15;     /* 따뜻한 무쇠 — 섹션 구분 */
  --broth: #3d2818;        /* 졸인 국물 — 카드 배경 */
  --oil: #c9622d;          /* 기름 띠 — 부드러운 포인트 */
  --paper-cream: #f0e6d2;  /* 백자 그릇 — 텍스트 */
  --red: #c8321e;          /* 고추기름 빨강 — 강조 */
  --red-deep: #8b1d12;     /* 깊은 고추장 — 호버 */
  --gold-soft: #c9a766;    /* 희미한 황금 — 한자 */
  --line: rgba(240, 230, 210, 0.15);
  --line-strong: rgba(240, 230, 210, 0.4);

  /* Soft text variants */
  --text-soft: rgba(240, 230, 210, 0.72);
  --text-faint: rgba(240, 230, 210, 0.5);

  /* Legacy aliases (점진적 정리용 — 의미가 보존되는 매핑만) */
  --paper: var(--pot-dark);
  --paper-warm: var(--pot-warm);
  --paper-deep: var(--broth);
  --ink-soft: var(--text-soft);
  --broth-deep: var(--oil);

  /* Fonts */
  --font-serif: 'Noto Serif KR', 'Apple SD Gothic Neo', serif;
  --font-display: 'Black Han Sans', 'Noto Serif KR', sans-serif;
  --font-heavy: 'Noto Serif KR', serif;
  --font-quote: 'Gowun Batang', 'Noto Serif KR', serif;

  --container: 1200px;
  --header-h: 72px;
}

/* ---------- Base ---------- */
html,
body {
  background: var(--pot-dark);
  color: var(--paper-cream);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Disclaimer Banner ---------- */
.disclaimer {
  background: var(--ink);
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 6px 12px;
  font-family: var(--font-serif);
  border-bottom: 1px solid var(--line);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 10, 8, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-soft);
  line-height: 1;
  text-shadow: 0 0 14px rgba(201, 167, 102, 0.35);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--paper-cream);
  line-height: 1;
}

.logo-name small {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--paper-cream);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--oil);
  transition: width 0.25s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--oil);
}

.nav-list a.active::after,
.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--paper-cream);
  background: var(--red);
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.nav-cta-tel {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--paper-cream);
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (full-bleed photo background) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
  isolation: isolate;
}

/* 히어로 배경 사진 — object-fit cover로 영역 가득 */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: saturate(1.05) contrast(1.05);
}

/* 어두운 오버레이 (가독성 + 분위기) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 10, 8, 0.55) 0%,
      rgba(15, 10, 8, 0.5) 35%,
      rgba(15, 10, 8, 0.78) 100%
    ),
    radial-gradient(ellipse at 25% 50%, rgba(15, 10, 8, 0.45) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-char {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(440px, 78vw, 1100px);
  color: var(--gold-soft);
  opacity: 0.25;
  line-height: 0.85;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  text-shadow:
    0 0 80px rgba(201, 167, 102, 0.4),
    0 0 200px rgba(0, 0, 0, 0.6);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-text {
  position: relative;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-quote);
  font-size: 15px;
  letter-spacing: 0.4em;
  color: var(--oil);
  margin-bottom: 32px;
  border-left: 3px solid var(--oil);
  padding-left: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 132px);
  line-height: 1.02;
  color: var(--paper-cream);
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 0, 0, 0.5);
}

.hero-title .accent {
  color: var(--oil);
  font-size: 1.18em;
  display: inline-block;
  transform: translateY(0.04em);
  text-shadow:
    0 0 40px rgba(201, 98, 45, 0.7),
    0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-sub {
  font-family: var(--font-quote);
  font-size: 19px;
  line-height: 1.95;
  color: var(--paper-cream);
  margin-bottom: 48px;
  max-width: 460px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  font-family: var(--font-quote);
  font-size: 13px;
  color: var(--paper-cream);
  letter-spacing: 0.18em;
  flex-wrap: wrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-meta span::before {
  content: '◆';
  margin-right: 8px;
  color: var(--oil);
  font-size: 9px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--paper-cream);
  box-shadow: 0 6px 18px rgba(200, 50, 30, 0.35);
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 50, 30, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--paper-cream);
  border-color: var(--paper-cream);
}

.btn-ghost:hover {
  background: var(--paper-cream);
  color: var(--ink);
}

.btn-arrow {
  font-family: var(--font-serif);
  font-weight: 700;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ----- Hero Stamp (오른쪽 하단 빨간 興 배지) ----- */
.hero-image-stamp {
  position: absolute;
  bottom: 56px;
  right: 56px;
  width: 132px;
  height: 132px;
  background: var(--red);
  color: var(--paper-cream);
  font-family: var(--font-display);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.7),
    0 0 0 6px rgba(15, 10, 8, 0.4),
    0 0 60px rgba(200, 50, 30, 0.4);
  z-index: 4;
  pointer-events: none;
}

/* ---------- Placeholder Image ---------- */
.ph {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(240, 230, 210, 0.02) 0,
      rgba(240, 230, 210, 0.02) 12px,
      rgba(240, 230, 210, 0.05) 12px,
      rgba(240, 230, 210, 0.05) 24px
    ),
    radial-gradient(ellipse at center, var(--broth) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-family: var(--font-quote);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
}

.ph::after {
  content: attr(data-label);
  opacity: 0.65;
}

.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 98, 45, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(200, 50, 30, 0.14) 0%, transparent 40%);
  pointer-events: none;
}

.ph.ph-warm {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201, 98, 45, 0.04) 0,
      rgba(201, 98, 45, 0.04) 12px,
      rgba(201, 98, 45, 0.08) 12px,
      rgba(201, 98, 45, 0.08) 24px
    ),
    radial-gradient(ellipse at center, var(--oil) 0%, var(--broth) 100%);
  color: var(--ink);
}

/* 메뉴 카드별 미세한 톤 차이 — 각 메뉴 사진처럼 분위기 차별화 */
.menu-card:nth-child(6n + 1) .menu-card-img .ph {
  background:
    repeating-linear-gradient(45deg, rgba(240,230,210,0.02) 0, rgba(240,230,210,0.02) 12px, rgba(240,230,210,0.05) 12px, rgba(240,230,210,0.05) 24px),
    radial-gradient(ellipse at center, #4a2e1a 0%, #1a120e 100%);
}
.menu-card:nth-child(6n + 2) .menu-card-img .ph {
  background:
    repeating-linear-gradient(45deg, rgba(240,230,210,0.02) 0, rgba(240,230,210,0.02) 12px, rgba(240,230,210,0.05) 12px, rgba(240,230,210,0.05) 24px),
    radial-gradient(ellipse at center, #5a2818 0%, #2a1410 100%);
}
.menu-card:nth-child(6n + 3) .menu-card-img .ph {
  background:
    repeating-linear-gradient(45deg, rgba(240,230,210,0.02) 0, rgba(240,230,210,0.02) 12px, rgba(240,230,210,0.05) 12px, rgba(240,230,210,0.05) 24px),
    radial-gradient(ellipse at center, #3d2818 0%, #1a120e 100%);
}
.menu-card:nth-child(6n + 4) .menu-card-img .ph {
  background:
    repeating-linear-gradient(45deg, rgba(240,230,210,0.02) 0, rgba(240,230,210,0.02) 12px, rgba(240,230,210,0.05) 12px, rgba(240,230,210,0.05) 24px),
    radial-gradient(ellipse at center, #6a3a1c 0%, #2a1812 100%);
}
.menu-card:nth-child(6n + 5) .menu-card-img .ph {
  background:
    repeating-linear-gradient(45deg, rgba(240,230,210,0.02) 0, rgba(240,230,210,0.02) 12px, rgba(240,230,210,0.05) 12px, rgba(240,230,210,0.05) 24px),
    radial-gradient(ellipse at center, #4a3220 0%, #1a120e 100%);
}
.menu-card:nth-child(6n + 6) .menu-card-img .ph {
  background:
    repeating-linear-gradient(45deg, rgba(240,230,210,0.02) 0, rgba(240,230,210,0.02) 12px, rgba(240,230,210,0.05) 12px, rgba(240,230,210,0.05) 24px),
    radial-gradient(ellipse at center, #5a3018 0%, #1d130e 100%);
}

/* ---------- Section ---------- */
.section {
  padding: 130px 0;
  position: relative;
}

.section-dark {
  background: var(--ink);
  color: var(--paper-cream);
}

.section-warm {
  background: var(--pot-warm);
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-head .label {
  font-family: var(--font-quote);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--oil);
  margin-bottom: 20px;
  display: inline-block;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--paper-cream);
}

.section-head h2 .accent {
  color: var(--oil);
}

.section-head p {
  font-family: var(--font-quote);
  font-size: 17px;
  line-height: 1.95;
  color: var(--text-soft);
  margin-top: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Menu Slider ---------- */
.menu-slider {
  position: relative;
  margin: 0 -24px;
}

.menu-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 32px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-x;
  scroll-behavior: smooth;
}

.menu-track::-webkit-scrollbar {
  display: none;
}

.menu-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.menu-track.is-dragging .menu-card {
  pointer-events: none;
}

.menu-track.is-dragging .menu-card:hover {
  transform: none;
  box-shadow: none;
}

.menu-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--broth);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 98, 45, 0.4);
}

.menu-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}

.menu-card-img .ph {
  width: 100%;
  height: 100%;
}

.menu-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--paper-cream);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  z-index: 2;
}

.menu-card-body {
  padding: 28px 24px 30px;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--paper-cream);
  margin-bottom: 8px;
}

.menu-card .subtitle {
  font-family: var(--font-quote);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-bottom: 14px;
  display: block;
}

.menu-card p {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  background: transparent;
  color: var(--paper-cream);
  transition: all 0.2s;
}

.slider-btn:hover {
  background: var(--oil);
  color: var(--ink);
  border-color: var(--oil);
  transform: translateY(-2px);
}

/* ---------- 4가지 정성 — 거대 한자 + 황금 빛 ---------- */
.virtues {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.virtue {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 36px 56px;
  position: relative;
  background: var(--pot-dark);
  transition: background 0.4s;
  overflow: hidden;
}

.virtue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 167, 102, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.virtue:hover {
  background: var(--pot-warm);
}

.virtue:hover::before {
  opacity: 1;
}

.virtue-num {
  font-family: var(--font-display);
  font-size: clamp(140px, 14vw, 220px);
  line-height: 0.9;
  color: var(--gold-soft);
  margin-bottom: 32px;
  text-shadow:
    0 0 40px rgba(201, 167, 102, 0.4),
    0 0 80px rgba(201, 167, 102, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.4s, text-shadow 0.4s;
}

.virtue:hover .virtue-num {
  transform: scale(1.04);
  text-shadow:
    0 0 50px rgba(201, 167, 102, 0.6),
    0 0 120px rgba(201, 167, 102, 0.3);
}

.virtue-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--paper-cream);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

.virtue-title .ko {
  display: block;
  font-family: var(--font-quote);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--oil);
  margin-bottom: 8px;
  font-weight: 400;
}

.virtue-desc {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

/* ---------- Quote Section ---------- */
.quote-section {
  padding: 160px 0;
  background: var(--ink);
  color: var(--paper-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '興';
  position: absolute;
  font-family: var(--font-display);
  font-size: 700px;
  color: var(--gold-soft);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0.8;
  text-shadow: 0 0 100px rgba(201, 167, 102, 0.3);
}

.quote-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 98, 45, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--oil);
  line-height: 0.5;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.quote-text {
  font-family: var(--font-quote);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.85;
  color: var(--paper-cream);
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-cite {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

/* ---------- Numbers / Stats — 가맹주 타겟 임팩트 ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--pot-dark);
  border: 1px solid var(--line);
}

.stat {
  padding: 80px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 98, 45, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat:hover {
  background: var(--pot-warm);
}

.stat:hover::before {
  opacity: 1;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 140px);
  color: var(--oil);
  line-height: 0.95;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px rgba(201, 98, 45, 0.35);
}

.stat-num small {
  font-size: 0.32em;
  color: var(--paper-cream);
  margin-left: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-shadow: none;
}

.stat-label {
  font-family: var(--font-quote);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

/* ---------- CTA Bands ---------- */
.cta-bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-band {
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: transform 0.3s;
}

.cta-band-stores {
  background: var(--pot-warm);
  color: var(--paper-cream);
}

.cta-band-fc {
  background:
    radial-gradient(ellipse at top right, rgba(200, 50, 30, 0.18) 0%, transparent 60%),
    var(--ink);
  color: var(--paper-cream);
}

.cta-band:hover {
  transform: translateY(-4px);
}

.cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--paper-cream);
}

.cta-band p {
  font-family: var(--font-quote);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 380px;
  color: var(--text-soft);
}

.cta-band .btn {
  align-self: flex-start;
}

.cta-band-fc .btn {
  background: var(--oil);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(201, 98, 45, 0.35);
}

.cta-band-fc .btn:hover {
  background: var(--paper-cream);
}

.cta-band-bg {
  position: absolute;
  font-family: var(--font-display);
  font-size: 360px;
  line-height: 0.8;
  right: -40px;
  bottom: -100px;
  color: var(--gold-soft);
  opacity: 0.08;
  pointer-events: none;
}

/* ---------- Press / Media ---------- */
.press {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}

.press-item {
  padding: 40px 16px;
  border: 1px solid var(--line);
  background: var(--pot-warm);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper-cream);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.press-item:hover {
  border-color: var(--oil);
  color: var(--oil);
  transform: translateY(-3px);
}

.press-item small {
  display: block;
  font-family: var(--font-quote);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  margin-bottom: 10px;
  font-weight: 400;
}

/* ---------- Footer — 가맹문의 강조 ---------- */
.site-footer {
  background: var(--ink);
  color: var(--text-soft);
  padding: 90px 0 44px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo-mark {
  font-size: 56px;
  color: var(--gold-soft);
  text-shadow: 0 0 20px rgba(201, 167, 102, 0.4);
}

.footer-brand .logo-name {
  font-size: 22px;
  color: var(--paper-cream);
  margin-top: 12px;
  display: block;
}

.footer-brand p {
  font-family: var(--font-quote);
  margin-top: 22px;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 13.5px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--paper-cream);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--oil);
}

/* 푸터 가맹문의 — 큰 임팩트 */
.footer-tel {
  background:
    radial-gradient(ellipse at top right, rgba(201, 98, 45, 0.25) 0%, transparent 60%),
    var(--red-deep);
  padding: 32px 36px;
  margin-top: 14px;
  display: block;
  border: 1px solid rgba(201, 98, 45, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.footer-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(139, 29, 18, 0.5);
}

.footer-tel small {
  font-family: var(--font-quote);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 12px;
}

.footer-tel-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  color: var(--paper-cream);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer-tel-hours {
  display: block;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  margin-top: 12px;
}

.footer-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--font-serif);
}

.footer-bottom .copy {
  letter-spacing: 0.05em;
}

/* ---------- Page Hero (서브 페이지) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at center top, rgba(201, 98, 45, 0.1) 0%, transparent 55%),
    var(--ink);
  color: var(--paper-cream);
  padding: 130px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-char);
  position: absolute;
  font-family: var(--font-display);
  font-size: 660px;
  color: var(--gold-soft);
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0.8;
  pointer-events: none;
  text-shadow: 0 0 80px rgba(201, 167, 102, 0.3);
}

.page-hero .label {
  font-family: var(--font-quote);
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--oil);
  margin-bottom: 24px;
  display: inline-block;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.5vw, 86px);
  line-height: 1.1;
  position: relative;
  z-index: 2;
  letter-spacing: -0.005em;
  color: var(--paper-cream);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.page-hero h1 .accent {
  color: var(--oil);
  text-shadow: 0 0 30px rgba(201, 98, 45, 0.5);
}

.page-hero p {
  font-family: var(--font-quote);
  font-size: 17px;
  margin-top: 26px;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.95;
}

/* ---------- About / Story ---------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.story-block:nth-child(even) > .story-text {
  order: 2;
}

.story-block:last-child {
  border-bottom: none;
}

.story-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}

.story-img .ph {
  width: 100%;
  height: 100%;
}

.story-text .label {
  font-family: var(--font-quote);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--oil);
  margin-bottom: 20px;
  display: inline-block;
}

.story-text h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--paper-cream);
}

.story-text p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.story-text .quote {
  font-family: var(--font-quote);
  font-size: 19px;
  line-height: 1.85;
  color: var(--oil);
  border-left: 3px solid var(--oil);
  padding-left: 20px;
  margin: 30px 0 0;
}

/* ---------- Menu Page ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.menu-grid .menu-card {
  flex: none;
}

.menu-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: center;
  background: var(--pot-warm);
  padding: 60px;
  border: 1px solid var(--line);
}

.menu-intro h3 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 22px;
  color: var(--paper-cream);
}

.menu-intro p {
  font-family: var(--font-quote);
  font-size: 16px;
  line-height: 2;
  color: var(--text-soft);
}

.menu-intro-img {
  aspect-ratio: 1;
  background: var(--ink);
  border: 1px solid var(--line);
}

.menu-intro-img .ph {
  width: 100%;
  height: 100%;
}

/* ---------- Location Page ---------- */
.locations {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.location-map {
  background: var(--ink);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.location-map .ph {
  width: 100%;
  height: 100%;
}

.location-list {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 12px;
}

.location-list h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--paper-cream);
  position: sticky;
  top: 0;
  background: var(--pot-dark);
  padding: 12px 0;
  z-index: 2;
}

.location-search {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-serif);
  font-size: 14px;
  background: var(--pot-warm);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  outline: none;
  color: var(--paper-cream);
}

.location-search::placeholder {
  color: var(--text-faint);
}

.location-search:focus {
  border-color: var(--oil);
}

.location-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.location-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--paper-cream);
}

.location-item p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.location-item .tel {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--oil);
  margin-top: 6px;
  display: inline-block;
}

/* 스크롤바 dark theme */
.location-list::-webkit-scrollbar {
  width: 6px;
}
.location-list::-webkit-scrollbar-thumb {
  background: var(--broth);
  border-radius: 3px;
}
.location-list::-webkit-scrollbar-track {
  background: transparent;
}

/* ---------- Franchisor Page ---------- */
.fc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ink);
  border: 1px solid var(--line);
  margin-bottom: 90px;
}

.fc-stat {
  padding: 80px 32px;
  text-align: center;
  border-right: 1px solid var(--line);
  color: var(--paper-cream);
  position: relative;
  overflow: hidden;
}

.fc-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 98, 45, 0.1) 0%, transparent 60%);
}

.fc-stat:last-child {
  border-right: none;
}

.fc-stat-label {
  font-family: var(--font-quote);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 2;
}

.fc-stat-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  color: var(--oil);
  line-height: 0.95;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px rgba(201, 98, 45, 0.35);
}

.fc-stat-num small {
  font-size: 0.4em;
  color: var(--paper-cream);
  margin-left: 6px;
  font-family: var(--font-display);
  text-shadow: none;
}

.fc-stat-desc {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.fc-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.fc-step {
  padding: 40px 22px;
  text-align: center;
  position: relative;
  background: var(--pot-dark);
  border: 1px solid var(--line);
}

.fc-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--pot-warm);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--oil);
  z-index: 2;
  font-size: 16px;
  border: 1px solid var(--line);
}

.fc-step:last-child::after {
  display: none;
}

.fc-step .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--oil);
  margin-bottom: 14px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(201, 98, 45, 0.3);
}

.fc-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--paper-cream);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.fc-step p {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.fc-cost-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-serif);
  margin-top: 32px;
  background: var(--pot-warm);
}

.fc-cost-table th,
.fc-cost-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--paper-cream);
}

.fc-cost-table th {
  background: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
}

.fc-cost-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  color: var(--oil);
  font-size: 16px;
}

.fc-cost-table tfoot td {
  background: var(--ink);
  color: var(--paper-cream);
  font-size: 18px;
}

.fc-cost-table tfoot td:last-child {
  color: var(--oil);
  font-size: 24px;
  text-shadow: 0 0 20px rgba(201, 98, 45, 0.3);
}

/* ---------- Inquiry ---------- */
.fc-inquiry h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--paper-cream);
}

.fc-inquiry h3 .accent {
  color: var(--oil);
  text-shadow: 0 0 30px rgba(201, 98, 45, 0.4);
}

.fc-inquiry p {
  font-family: var(--font-quote);
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 40px;
}

.fc-inquiry-tel {
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 92px);
  color: var(--oil);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(201, 98, 45, 0.45);
}

.fc-inquiry-hours {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
}

/* ---------- Animation: fade-in on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .header-inner {
    padding: 0 20px;
  }

  .nav-cta-tel {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--pot-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 28px 32px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 50;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
    padding: 16px;
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 110px;
    min-height: 80vh;
  }

  .hero-bg-img {
    object-position: center center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(15, 10, 8, 0.62) 0%,
        rgba(15, 10, 8, 0.55) 30%,
        rgba(15, 10, 8, 0.85) 100%
      );
  }

  .hero-meta {
    gap: 18px;
    font-size: 12px;
    margin-top: 32px;
  }

  .hero-image-stamp {
    bottom: 28px;
    right: 24px;
    width: 88px;
    height: 88px;
    font-size: 40px;
  }

  .section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 56px;
  }

  .virtues {
    grid-template-columns: 1fr 1fr;
  }

  .virtue {
    padding: 48px 28px 40px;
  }

  .virtue-num {
    font-size: clamp(110px, 22vw, 160px);
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    border-bottom: 1px solid var(--line);
    padding: 56px 20px;
  }

  .stat-num {
    font-size: clamp(64px, 14vw, 96px);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .cta-bands {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 60px 32px;
    min-height: 280px;
  }

  .menu-card {
    flex-basis: 280px;
  }

  .press {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .press-item {
    padding: 32px 12px;
    font-size: 18px;
  }

  .quote-section {
    padding: 100px 24px;
  }

  .quote-section::before {
    font-size: 400px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-tel-num {
    font-size: clamp(34px, 9vw, 50px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .story-block:nth-child(even) > .story-text {
    order: unset;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .menu-intro {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }

  .locations {
    grid-template-columns: 1fr;
  }

  .location-list {
    max-height: none;
  }

  .fc-stats {
    grid-template-columns: 1fr;
  }

  .fc-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 56px 24px;
  }

  .fc-process {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .fc-step::after {
    display: none;
  }

  .hero-title {
    font-size: clamp(52px, 12vw, 80px);
  }
}

@media (max-width: 540px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .virtues {
    grid-template-columns: 1fr;
  }

  .virtue-num {
    font-size: 140px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
  }

  .stat-num {
    font-size: 88px;
  }

  .fc-process {
    grid-template-columns: 1fr;
  }

  .menu-card {
    flex-basis: 80%;
  }

  .fc-cost-table th,
  .fc-cost-table td {
    padding: 14px 12px;
    font-size: 13px;
  }
}

/* =========================================================
   추가 섹션 — 4 WAYS / 3 HIGH / WHY BUDAEJJIGAE / FOUNDER QUOTE
   ========================================================= */

/* ---------- 4 WAYS — 한 식당, 네 가지 매출 ---------- */
.ways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.way {
  background: var(--broth);
  border: 1px solid var(--line);
  padding: 56px 36px 52px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.way::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(201, 167, 102, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.way:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 167, 102, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.way:hover::before {
  opacity: 1;
}

.way-num {
  font-family: var(--font-display);
  font-size: clamp(120px, 13vw, 180px);
  line-height: 0.9;
  color: var(--gold-soft);
  margin-bottom: 28px;
  text-shadow:
    0 0 35px rgba(201, 167, 102, 0.4),
    0 0 80px rgba(201, 167, 102, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.4s, text-shadow 0.4s;
}

.way:hover .way-num {
  transform: scale(1.05);
  text-shadow:
    0 0 50px rgba(201, 167, 102, 0.6),
    0 0 120px rgba(201, 167, 102, 0.3);
}

.way-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper-cream);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

.way-title .ko {
  display: block;
  font-family: var(--font-quote);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--oil);
  margin-bottom: 8px;
  font-weight: 400;
}

.way-desc {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

/* ---------- 3 HIGH — 검증된 세 가지 지표 ---------- */
.high-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.high-card {
  background: var(--pot-warm);
  border: 1px solid var(--line);
  padding: 64px 36px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.high-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 167, 102, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.high-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 167, 102, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.high-card:hover::before {
  opacity: 1;
}

.high-card-eyebrow {
  font-family: var(--font-quote);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--oil);
  display: block;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.high-card-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 128px);
  color: var(--gold-soft);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 0 50px rgba(201, 167, 102, 0.45);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.high-card-num small {
  font-size: 0.3em;
  color: var(--paper-cream);
  margin-left: 6px;
  font-family: var(--font-display);
  text-shadow: none;
}

.high-card-stars {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--oil);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(201, 98, 45, 0.4);
}

.high-card-meta {
  font-family: var(--font-quote);
  font-size: 14px;
  color: var(--paper-cream);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.high-card-desc {
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

/* ---------- WHY BUDAEJJIGAE — 단일메뉴 강점 ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--pot-warm);
  border: 1px solid var(--line);
  padding: 56px 40px 52px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(201, 167, 102, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 167, 102, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.why-card:hover::before {
  opacity: 1;
}

.why-num {
  font-family: var(--font-display);
  font-size: clamp(120px, 12vw, 180px);
  line-height: 0.9;
  color: var(--gold-soft);
  margin-bottom: 28px;
  text-shadow:
    0 0 40px rgba(201, 167, 102, 0.4),
    0 0 100px rgba(201, 167, 102, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.4s, text-shadow 0.4s;
}

.why-card:hover .why-num {
  transform: scale(1.05);
}

.why-eyebrow {
  font-family: var(--font-quote);
  font-size: 11.5px;
  letter-spacing: 0.4em;
  color: var(--oil);
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 2;
}

.why-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper-cream);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

.why-desc {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

/* ---------- FOUNDER QUOTE — 풀 너비 큰 인용 영역 ---------- */
.founder-quote {
  padding: 160px 0;
  background: var(--pot-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.founder-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 167, 102, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 98, 45, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.founder-quote-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.founder-quote-char {
  font-family: var(--font-display);
  font-size: clamp(280px, 36vw, 540px);
  line-height: 0.85;
  color: var(--gold-soft);
  opacity: 0.5;
  text-align: center;
  text-shadow:
    0 0 80px rgba(201, 167, 102, 0.5),
    0 0 200px rgba(201, 167, 102, 0.3);
  user-select: none;
  pointer-events: none;
}

.founder-quote-body {
  position: relative;
}

.founder-quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.5;
  color: var(--oil);
  margin-bottom: 18px;
}

.founder-quote-text {
  font-family: var(--font-quote);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.85;
  color: var(--paper-cream);
}

.founder-quote-text strong {
  color: var(--gold-soft);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(201, 167, 102, 0.6);
}

.founder-quote-cite {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-top: 40px;
  display: block;
}

/* ---------- 추가 섹션 반응형 ---------- */
@media (max-width: 960px) {
  .ways {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .way {
    padding: 40px 26px 36px;
  }
  .way-num {
    font-size: clamp(90px, 22vw, 130px);
    margin-bottom: 22px;
  }

  .high-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .high-card {
    padding: 48px 28px;
  }
  .high-card-num {
    font-size: clamp(64px, 16vw, 100px);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card {
    padding: 44px 28px 40px;
  }
  .why-num {
    font-size: clamp(90px, 22vw, 130px);
    margin-bottom: 22px;
  }

  .founder-quote {
    padding: 90px 0;
  }
  .founder-quote-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .founder-quote-char {
    font-size: clamp(220px, 60vw, 360px);
  }
  .founder-quote-mark {
    font-size: 70px;
  }
}

@media (max-width: 540px) {
  .ways {
    grid-template-columns: 1fr;
  }
  .way-num,
  .why-num {
    font-size: 130px;
  }
  .high-card-num {
    font-size: 80px;
  }
}

/* =========================================================
   메인 티저 카드 — index.html 4 카드
   ========================================================= */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.teaser-card {
  display: block;
  background: var(--pot-warm);
  border: 1px solid var(--line);
  padding: 44px 32px 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.teaser-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(201, 167, 102, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.teaser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 98, 45, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.teaser-card:hover::before {
  opacity: 1;
}

.teaser-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 24px rgba(201, 167, 102, 0.35);
}

.teaser-body {
  position: relative;
  z-index: 2;
}

.teaser-eyebrow {
  font-family: var(--font-quote);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--oil);
  display: block;
  margin-bottom: 10px;
}

.teaser-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.005em;
  color: var(--paper-cream);
  margin-bottom: 14px;
}

.teaser-desc {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.teaser-link {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--paper-cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.25s;
}

.teaser-card:hover .teaser-link {
  color: var(--oil);
  gap: 12px;
}

.teaser-link .btn-arrow {
  font-family: var(--font-serif);
  font-weight: 700;
}

/* 누락된 .high-card-meta */
.high-card-meta {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--paper-cream);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* =========================================================
   폰트 weight 정리 — Black Han Sans → Noto Serif KR
   섹션 타이틀과 데이터 숫자를 좀더 정제된 톤으로
   (Hero 타이틀, 데코 한자/숫자, 로고는 Black Han Sans 유지)
   ========================================================= */

.section-head h2,
.page-hero h1,
.menu-card h3,
.virtue-title,
.way-title,
.why-title,
.cta-band h3,
.menu-intro h3,
.story-text h3,
.fc-step h4,
.location-list > h3,
.location-item h4,
.fc-cost-table th,
.footer-col h4,
.fc-inquiry h3,
.footer-brand .logo-name {
  font-family: var(--font-serif);
  font-weight: 600;
}

.section-head h2,
.page-hero h1 {
  letter-spacing: -0.015em;
}

/* 데이터 숫자 — Noto Serif KR 700 */
.stat-num,
.stat-num small,
.fc-stat-num,
.fc-stat-num small,
.high-card-num,
.high-card-num small,
.footer-tel-num {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* 보조 작은 숫자 단위는 600 */
.stat-num small,
.fc-stat-num small,
.high-card-num small {
  font-weight: 600;
  letter-spacing: 0;
}

/* 푸터 tfoot 합계 숫자 */
.fc-cost-table tfoot td:last-child {
  font-family: var(--font-serif);
  font-weight: 700;
}

/* 작은 라벨 / 메뉴 카드 태그는 디스플레이 유지 (간판 느낌) */
/* .menu-card-tag, .nav-cta, .nav-cta-tel, .btn 은 그대로 */

/* 모바일에서 데이터 숫자 자간 보정 */
@media (max-width: 540px) {
  .stat-num,
  .fc-stat-num,
  .high-card-num {
    letter-spacing: -0.03em;
  }
}

