:root {
  --plum: #3C2E5C;
  --plum-deep: #2D2147;
  --dusk: #5D4B7A;
  --lilac: #8A6FAF;
  --cream: #F7F3EB;
  --cream-warm: #F2EBDB;
  --sand: #E8DCC2;
  --peach: #F2D5BE;
  --ink: #1F1B16;
  --ink-soft: #4A4439;
  --ink-mute: #7C7569;
  --line: #DCD2BC;
  --line-soft: #E8E0CD;
  --sage: #7A8B5C;
  --dusty-rose: #C97D5D;
  --light-rose: #E8B89B;
  --steel: #6B7280;
  --steel-soft: #D1D5DB;
  --berry-pink: #D8576B;
  --warm-honey: #C97D5D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Pretendard', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

:lang(ko), [lang="ko"], .ko {
  font-family: 'Pretendard', sans-serif;
}

.serif-italic { 
  font-family: 'Cormorant Garamond', serif; 
  font-style: italic;
  font-weight: 400;
}

.mono { 
  font-family: 'Inter', sans-serif; 
  font-weight: 500; 
  letter-spacing: 0.18em; 
  text-transform: uppercase; 
  font-size: 11px;
}

img { max-width: 100%; display: block; }

/* ===== UTILITY BAR ===== */
.util-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.util-bar-left, .util-bar-right { display: flex; gap: 24px; align-items: center; }
.util-bar a { color: var(--cream); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.util-bar a:hover { opacity: 1; }
.util-tag {
  background: var(--dusty-rose);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 10px;
}

@media (max-width: 768px) {
  .util-bar { padding: 8px 16px; font-size: 10px; }
  .util-bar-right { display: none; }
}

/* ===== NAV ===== */
nav {
  position: sticky; top: 0;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 0.5px solid var(--line-soft);
}

.logo {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--plum);
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--plum);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

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

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: var(--plum);
  padding: 11px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 500;
}
.nav-cta:hover { background: var(--dusk); }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  border: none; background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--plum);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  nav { padding: 16px 20px; flex-wrap: wrap; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    order: 10;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 0.5px solid var(--line-soft);
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 4px; font-size: 15px; }
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--cream);
}

.hero-content {
  padding: 80px 64px 24px;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 64px;
}
.hero-meta-tag {
  background: var(--dusty-rose);
  color: var(--cream);
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 600;
}

.hero-headline {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.hero h1 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 200;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  color: var(--plum);
  letter-spacing: -0.04em;
  margin: 0;
}
.hero h1 strong {
  font-weight: 800;
  letter-spacing: -0.045em;
}
.hero h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--dusty-rose);
  font-size: 0.95em;
}

.hero-headline-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.hero-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 500px;
}

.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--plum);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { background: var(--dusk); }
.btn-primary::after { content: '→'; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.hero-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
  max-width: 480px;
}
.hero-spec-item .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.hero-spec-item .value {
  font-size: 22px;
  font-weight: 200;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.hero-spec-item .value strong { font-weight: 700; }

.hero-image {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 480px;
  max-height: 720px;
  background: var(--peach);
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  bottom: 32px; left: 48px; right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-image-tag {
  background: var(--cream);
  color: var(--plum);
  padding: 14px 18px;
  border-radius: 4px;
}
.hero-image-tag .tag-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-image-tag .tag-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.hero-image-index {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(31, 27, 22, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-content { padding: 56px 24px 40px; }
  .hero-meta { margin-bottom: 40px; }
  .hero-headline { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; align-items: start; }
  .hero-headline-right { padding-bottom: 0; }
  .hero-image { height: 50vh; min-height: 360px; }
  .hero-image-overlay { left: 24px; right: 24px; bottom: 24px; }
}

/* ===== VALUES ===== */
.values {
  padding: 120px 48px;
  background: var(--cream-warm);
  position: relative;
}
.values-inner { max-width: 1400px; margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head h2 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  font-weight: 200;
  color: var(--plum);
  letter-spacing: -0.03em;
}
.section-head h2 strong { font-weight: 700; }
.section-head h2 .italic { 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--dusty-rose);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.section-head .label-col { padding-top: 8px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid var(--line);
}
.value-card {
  background: var(--cream-warm);
  padding: 40px 32px;
  position: relative;
  border-right: 0.5px solid var(--line);
  transition: background 0.3s;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--cream); }

.value-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--dusty-rose);
  font-weight: 500;
  margin-bottom: 32px;
}
.value-card h3 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.value-card .h3-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--dusty-rose);
  font-size: 14px;
  margin-bottom: 20px;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 900px) {
  .values { padding: 80px 24px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card { 
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
  }
  .value-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 0.5px solid var(--line); }
}

/* ===== BOWLS ===== */
.bowls {
  padding: 64px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.bowls-image {
  width: 80%;
  margin: 0 auto 64px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--peach);
}
.bowls-image img { width: 100%; height: auto; }

.bowls-image-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 11px;
  font-weight: 500;
  color: var(--cream);
  background: var(--plum);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bowls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.bowl-item {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: 6px;
  padding: 18px 18px 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.bowl-item:hover {
  border-color: var(--dusty-rose);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(60,46,92,0.1);
}
.bowl-item-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream-warm);
}
.bowl-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bowl-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.bowl-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 500;
}
.bowl-tag {
  background: var(--plum-deep);
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 600;
}
.bowl-item h4 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.bowl-item-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--dusty-rose);
  font-size: 14px;
  margin-bottom: 16px;
}
.bowl-item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.bowl-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 0.5px dashed var(--line);
}
.bowl-spec {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-warm);
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.bowl-spec strong { color: var(--plum); font-weight: 700; }

.section-cta {
  text-align: center;
  padding-top: 32px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--plum);
  padding: 8px 0;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', 'Pretendard', sans-serif;
  border: none;
  border-bottom: 0.5px solid var(--plum);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.3s ease;
}
.btn-ghost:hover {
  color: var(--dusty-rose);
  border-bottom-color: var(--dusty-rose);
}
.btn-ghost:hover::after {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .bowls-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .bowls { padding: 80px 24px 64px; }
  .bowls-image { width: 100%; margin: 0 auto 40px; }
  .bowls-image-tag {
    top: 12px; left: 12px;
    font-size: 9px;
    padding: 4px 8px;
  }
}

/* ===== JOURNEY ===== */
.journey {
  padding: 140px 48px;
  background: var(--plum);
  color: var(--cream);
}
.journey-inner { max-width: 1400px; margin: 0 auto; }

.journey-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.journey-head .mono { color: var(--light-rose); }
.journey-head h2 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.journey-head h2 strong { font-weight: 700; }
.journey-head h2 .italic { 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--light-rose);
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 0.5px solid rgba(247, 243, 235, 0.15);
  border-bottom: 0.5px solid rgba(247, 243, 235, 0.15);
}

.journey-step {
  padding: 40px 32px;
  border-right: 0.5px solid rgba(247, 243, 235, 0.15);
  position: relative;
}
.journey-step:last-child { border-right: none; }

.journey-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--light-rose);
  font-weight: 600;
  margin-bottom: 32px;
}
.journey-step h4 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.journey-step p {
  font-size: 13px;
  color: rgba(247, 243, 235, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}
.journey-step .distance {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-rose);
  padding: 6px 12px;
  border: 0.5px solid var(--light-rose);
  border-radius: 2px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .journey { padding: 80px 24px; }
  .journey-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
  .journey-line { grid-template-columns: 1fr; }
  .journey-step { 
    border-right: none; 
    border-bottom: 0.5px solid rgba(247, 243, 235, 0.15);
    padding: 32px 0;
  }
  .journey-step:last-child { border-bottom: none; }
}

/* ===== BRAND STORY ===== */
/* 배경 리듬: 보라(배너) → 크림(01) → 보라(02) → 크림-웜(이름) → 샌드(03) → 크림(04) → 보라(클로징) */
.story { overflow: hidden; }

/* — 배너: --plum-deep (포인트) — */
.story-banner {
  background: var(--plum-deep);
  padding: 120px 64px 96px;
  max-width: 100%;
}
.story-banner-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.story-eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--light-rose); font-weight: 500; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.story-eyebrow::before { content:''; width:28px; height:.5px; background:var(--light-rose); display:block; }
.story-banner h2 {
  font-family: 'Inter','Pretendard',sans-serif; font-weight: 200;
  font-size: clamp(38px,5.2vw,72px); line-height: 0.98; letter-spacing: -0.04em; color: var(--cream);
}
.story-banner h2 strong { font-weight: 800; }
.story-banner h2 .s-accent {
  font-family: 'Cormorant Garamond',serif; font-style:italic; font-weight:400; color:var(--light-rose);
}
.story-banner-right p { font-size:16px; color:rgba(247,243,235,.68); line-height:1.85; max-width:420px; }

/* 챕터 레이블 — 밝은 배경 위 */
.story-chap-label {
  font-size:10px; letter-spacing:.24em; text-transform:uppercase;
  font-weight:500; margin-bottom:40px;
  display:flex; align-items:center; gap:14px;
}
.story-chap-label::before { content:''; width:22px; height:.5px; display:block; }

/* 밝은 배경(크림) 위 레이블 */
.story-chapter .story-chap-label,
.story-name-wrap .story-chap-label {
  color: var(--dusty-rose);
}
.story-chapter .story-chap-label::before,
.story-name-wrap .story-chap-label::before { background: var(--dusty-rose); }

/* 어두운 배경(보라) 위 레이블 */
.story-ch2-wrap .story-chap-label,
.story-vision-wrap .story-chap-label,
.story-promise-wrap .story-chap-label { color: var(--light-rose); }
.story-ch2-wrap .story-chap-label::before,
.story-vision-wrap .story-chap-label::before,
.story-promise-wrap .story-chap-label::before { background: var(--light-rose); }

/* — 01 Origin: --cream (밝음) — */
.story-chapter {
  background: var(--cream);
  padding: 88px 64px;
  border-top: .5px solid var(--line-soft);
}
.story-chapter-inner { max-width: 1400px; margin: 0 auto; }

.story-ch1 { display:grid; grid-template-columns:1fr 1.4fr; gap:72px; align-items:start; }
.story-pull {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:clamp(16px,2.6vw,28px); line-height:1.5;
  color: var(--plum);
  border-left:1.5px solid var(--dusty-rose); padding-left:24px;
}
.story-body p { font-size:15px; color:var(--ink-soft); line-height:1.95; margin-bottom:20px; }
.story-body p:last-child { margin-bottom:0; }
.story-body strong { color:var(--ink); font-weight:500; }

.story-ch1-photos {
  margin:64px auto 0;
  max-width:66.6667%;
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
}
.story-ch1-photo { aspect-ratio:4/5; overflow:hidden; border-radius:4px; }
.story-ch1-photo img { width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:768px) { .story-ch1-photos { grid-template-columns:1fr; max-width:100%; } }

/* — 02 전환점: --plum (포인트, 배너보다 한 단계 밝은 보라) — */
.story-ch2-wrap {
  background: var(--plum);
  padding: 88px 64px;
}
.story-ch2 { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1.2fr 1fr; gap:72px; align-items:center; }
.story-ch2-quote {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:clamp(20px,3vw,36px); line-height:1.38; color:var(--cream);
}
.story-ch2-body p { font-size:15px; color:rgba(247,243,235,.75); line-height:1.95; margin-bottom:18px; }
.story-ch2-body strong { color:var(--cream); font-weight:500; }

/* — 이름: --cream-warm (밝음, 크림보다 따뜻한 톤) — */
.story-name-wrap {
  background: var(--cream-warm);
  padding: 88px 64px;
  border-top: .5px solid var(--line);
}
.story-name-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:auto 1fr; gap:80px; align-items:center; }
.story-name-word {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:clamp(68px,9vw,124px); color:transparent;
  -webkit-text-stroke:1.5px var(--plum); line-height:1; letter-spacing:-0.02em; white-space:nowrap;
}
.story-name-breakdown { display:flex; flex-direction:column; gap:0; }
.story-name-row {
  display:grid; grid-template-columns:72px 1fr; gap:24px; align-items:start;
  padding:24px 0; border-bottom:.5px solid var(--line);
}
.story-name-row:last-child { border-bottom:none; }
.story-name-key { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:22px; color:var(--plum); padding-top:2px; }
.story-name-val h4 { font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--ink); margin-bottom:6px; }
.story-name-val p { font-size:14px; color:var(--ink-soft); line-height:1.75; }
.story-name-val em { color:var(--dusty-rose); font-style:italic; }

/* — 03 비전: --plum (journey 스타일) — */
.story-vision-wrap {
  background: var(--plum);
  padding: 140px 64px;
  color: var(--cream);
}
.story-vision-inner { max-width:1400px; margin:0 auto; }
.story-vision-header { display:grid; grid-template-columns:1.2fr 1fr; gap:80px; margin-bottom:80px; align-items:end; }
.story-vision-title {
  font-family:'Inter','Pretendard',sans-serif; font-weight:200;
  font-size:clamp(36px,4.8vw,56px); line-height:1.05; letter-spacing:-0.03em; color:var(--cream);
}
.story-vision-title strong { font-weight:700; }
.story-vision-intro p { font-size:15px; color:rgba(247,243,235,.72); line-height:1.9; margin-bottom:18px; }
.story-vision-intro p:last-child { margin-bottom:0; }
.story-vision-intro strong { color:var(--cream); font-weight:500; }

.story-contrast {
  display:grid; grid-template-columns:1fr 1fr; gap:2px;
  margin-bottom:64px;
}
.story-contrast-side { padding:40px 36px; }
.story-contrast-side.bad {
  background: transparent;
}
.story-contrast-side.good {
  background: var(--dusk);
  border-radius: 4px;
}
.s-contrast-label { font-size:10px; letter-spacing:.22em; text-transform:uppercase; font-weight:600; margin-bottom:32px; }
.bad .s-contrast-label { color:rgba(247,243,235,.4); }
.good .s-contrast-label { color: var(--light-rose); }
.s-contrast-title { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:28px; margin-bottom:24px; line-height:1.3; }
.bad .s-contrast-title { color:rgba(247,243,235,.45); }
.good .s-contrast-title { color:var(--cream); }
.story-contrast-side ul { list-style:none; }
.story-contrast-side ul li { font-size:14px; padding:10px 0; border-bottom:0.5px solid rgba(247,243,235,.12); }
.story-contrast-side ul li:last-child { border-bottom:none; }
.bad ul li { color:rgba(247,243,235,.4); }
.bad ul li::before { content:'✕  '; color:rgba(247,243,235,.22); }
.good ul li { color:rgba(247,243,235,.88); }
.good ul li::before { content:'✓  '; color:var(--light-rose); }

.story-vision-body p { font-size:15px; color:rgba(247,243,235,.72); line-height:1.95; margin-bottom:18px; max-width:1020px; }
.story-vision-body strong { color:var(--cream); font-weight:500; }

/* — 04 약속: 참고 파일 스타일 — */
.story-promise-wrap {
  border-top: .5px solid rgba(247,243,235,.1);
  padding: 72px 64px;
  background: var(--plum-deep);
}
.story-promise-inner { max-width:1400px; margin:0 auto; }
.story-promise-wrap .story-chap-label { color: var(--light-rose); }
.story-promise-wrap .story-chap-label::before { background: var(--light-rose); }
.story-promise-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  margin-top:48px; background:rgba(247,243,235,.07);
}
.story-promise-card { background:var(--dusk); padding:32px 26px; transition:background .3s; }
.story-promise-card:hover { background: var(--lilac); }
.story-promise-num { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:42px; color:var(--dusty-rose); line-height:1; margin-bottom:18px; display:block; }
.story-promise-card h4 { font-size:15px; font-weight:600; color:var(--cream); margin-bottom:10px; letter-spacing:-.01em; }
.story-promise-card p { font-size:13px; color:rgba(247,243,235,.6); line-height:1.8; }

/* — 클로징: --plum-deep (포인트) — */
.story-closing {
  background: var(--plum-deep);
  padding:96px 64px; text-align:center; position:relative; overflow:hidden;
}
.story-closing::before {
  content:'superple.'; position:absolute; font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:180px; color:rgba(255,255,255,.025); top:50%; left:50%;
  transform:translate(-50%,-50%); white-space:nowrap; pointer-events:none; letter-spacing:-.02em;
}
.story-closing-inner { max-width:600px; margin:0 auto; position:relative; }
.story-closing-rule { width:36px; height:.5px; background:var(--dusty-rose); margin:0 auto 36px; }
.story-closing-title {
  font-family:'Inter','Pretendard',sans-serif; font-weight:200;
  font-size:clamp(26px,3.8vw,44px); line-height:1.15; letter-spacing:-.035em; color:var(--cream); margin-bottom:24px;
}
.story-closing-title strong { font-weight:800; }
.story-closing-title .s-accent { font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:400; color:var(--light-rose); }
.story-closing-body { font-size:15px; color:rgba(247,243,235,.62); line-height:1.95; margin-bottom:44px; }
.story-closing-mark { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:26px; color:var(--light-rose); display:block; margin-bottom:8px; }
.story-closing-sub { font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:rgba(247,243,235,.28); }

@media (max-width:1024px) {
  .story-banner-inner, .story-ch2, .story-vision-header { grid-template-columns:1fr; gap:40px; }
  .story-name-inner { grid-template-columns:1fr; }
  .story-name-word { font-size:80px; }
  .story-promise-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .story-banner, .story-chapter, .story-ch2-wrap, .story-name-wrap,
  .story-vision-wrap, .story-promise-wrap, .story-closing { padding-left:24px; padding-right:24px; }
  .story-banner { padding-top:80px; padding-bottom:64px; }
  .story-vision-wrap { padding-top:80px; padding-bottom:80px; }
  .story-ch1 { grid-template-columns:1fr; gap:32px; }
  .story-contrast { grid-template-columns:1fr; }
  .story-contrast-side { border-right:none; border-bottom:0.5px solid rgba(247,243,235,.15); }
  .story-contrast-side:last-child { border-bottom:none; }
  .story-promise-grid { grid-template-columns:1fr; }
}

/* ===== CAREERS ===== */
.careers-section { overflow: hidden; }

/* 탭 헤더 */
.careers-hero {
  background: var(--plum-deep);
  padding: 96px 64px 80px;
}
.careers-hero-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.careers-eyebrow {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--light-rose); font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.careers-eyebrow::before { content:''; width:28px; height:.5px; background:var(--light-rose); display:block; }
.careers-hero h2 {
  font-family: 'Inter','Pretendard',sans-serif; font-weight: 200;
  font-size: clamp(40px, 5.5vw, 72px); line-height: .98; letter-spacing: -0.04em; color: var(--cream);
}
.careers-hero h2 strong { font-weight: 800; }
.careers-hero h2 .c-italic {
  font-family: 'Cormorant Garamond',serif; font-style: italic; font-weight: 400; color: var(--light-rose);
}
.careers-hero-right p { font-size: 16px; color: rgba(247,243,235,.92); line-height: 1.85; max-width: 440px; margin-bottom: 32px; }
.careers-cta { display: flex; gap: 12px; }
.c-btn-primary {
  background: var(--dusty-rose); color: var(--cream); border: none; cursor: pointer;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; text-decoration: none; transition: opacity .2s; display: inline-block;
}
.c-btn-primary:hover { opacity: .85; }
.c-btn-ghost {
  background: transparent; color: var(--cream);
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; border: .5px solid rgba(247,243,235,.35);
  text-decoration: none; transition: border-color .2s; display: inline-block;
}
.c-btn-ghost:hover { border-color: rgba(247,243,235,.7); }

/* 탭 버튼 */
.careers-tabs {
  background: var(--plum); display: flex;
  border-bottom: .5px solid rgba(247,243,235,.1);
}
.careers-tab {
  padding: 18px 48px; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(247,243,235,.45); cursor: pointer;
  border-bottom: 1.5px solid transparent; transition: color .2s, border-color .2s;
}
.careers-tab.active { color: var(--cream); border-bottom-color: var(--light-rose); }

/* 탭 콘텐츠 */
.careers-page { display: none; }
.careers-page.active { display: block; }

/* 공통 레이블 */
.c-section-label {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.c-section-label::before { content:''; width:28px; height:.5px; display:block; }
.c-section-label.dark { color: var(--dusty-rose); }
.c-section-label.dark::before { background: var(--dusty-rose); }
.c-section-label.light { color: var(--light-rose); }
.c-section-label.light::before { background: var(--light-rose); }

/* ─ 통계 바 ─ */
.c-stats {
  background: var(--cream-warm);
  border-top: .5px solid var(--line); border-bottom: .5px solid var(--line);
}
.c-stats-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.c-stat { padding: 48px 40px; border-right: .5px solid var(--line); transition: background .2s; }
.c-stat:last-child { border-right: none; }
.c-stat:hover { background: var(--sand); }
.c-stat-num {
  font-family: 'Cormorant Garamond',serif; font-style: italic;
  font-size: 52px; color: var(--plum); line-height: 1; margin-bottom: 8px; display: block;
}
.c-stat-label { font-size: 12px; color: var(--ink-mute); }

/* ─ 가맹 장점 ─ */
.c-why { background: var(--cream); padding: 96px 64px; border-top: .5px solid var(--line-soft); }
.c-why-inner { max-width: 1400px; margin: 0 auto; }
.c-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.c-why-card {
  background: var(--cream-warm); padding: 40px 32px;
  border: .5px solid var(--line-soft); transition: border-color .25s;
}
.c-why-card:hover { border-color: var(--plum); }
.c-why-num { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 40px; color: var(--dusty-rose); line-height: 1; margin-bottom: 20px; display: block; }
.c-why-card h3 { font-size: 17px; font-weight: 600; color: var(--plum); margin-bottom: 12px; }
.c-why-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

/* ─ 프로세스 ─ */
.c-process { background: var(--plum); padding: 96px 64px; }
.c-process-inner { max-width: 1400px; margin: 0 auto; }
.c-process-title {
  font-family: 'Inter','Pretendard',sans-serif; font-weight: 200;
  font-size: clamp(32px,4vw,52px); line-height: 1.05; letter-spacing: -0.03em; color: var(--cream); margin-bottom: 64px;
}
.c-process-title strong { font-weight: 800; }
.c-process-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  border-top: .5px solid rgba(247,243,235,.15);
}
.c-process-step { padding: 40px 24px; border-right: .5px solid rgba(247,243,235,.15); position: relative; }
.c-process-step:last-child { border-right: none; }
.c-process-num { font-size: 10px; letter-spacing: .2em; color: var(--light-rose); font-weight: 600; text-transform: uppercase; margin-bottom: 28px; }
.c-process-step h4 { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.c-process-step p { font-size: 13px; color: rgba(247,243,235,.65); line-height: 1.75; }
.c-process-arrow { position: absolute; top: 40px; right: -10px; font-size: 16px; color: var(--dusty-rose); }
.c-process-step:last-child .c-process-arrow { display: none; }

/* ─ 가맹 조건 ─ */
.c-condition { background: var(--cream-warm); padding: 96px 64px; border-top: .5px solid var(--line); }
.c-condition-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.c-condition-left h2 {
  font-family: 'Inter','Pretendard',sans-serif; font-weight: 200;
  font-size: clamp(26px,3.2vw,42px); line-height: 1.1; letter-spacing: -0.03em; color: var(--plum); margin-bottom: 20px;
}
.c-condition-left h2 strong { font-weight: 800; }
.c-condition-left p { font-size: 15px; color: var(--ink-soft); line-height: 1.9; }
.c-table { width: 100%; border-collapse: collapse; }
.c-table tr { border-bottom: .5px solid var(--line); }
.c-table tr:last-child { border-bottom: none; }
.c-table td { padding: 16px 0; font-size: 14px; vertical-align: top; }
.c-table td:first-child { color: var(--ink-mute); width: 40%; font-weight: 500; }
.c-table td:last-child { color: var(--ink); }

/* ─ 팀 가치 ─ */
.c-values { background: var(--cream); padding: 96px 64px; border-top: .5px solid var(--line-soft); }
.c-values-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.c-values-left h2 {
  font-family: 'Inter','Pretendard',sans-serif; font-weight: 200;
  font-size: clamp(26px,3.2vw,42px); line-height: 1.1; letter-spacing: -0.03em; color: var(--plum);
}
.c-values-left h2 strong { font-weight: 800; }
.c-values-list { display: flex; flex-direction: column; }
.c-value-item { display: grid; grid-template-columns: 48px 1fr; gap: 24px; align-items: start; padding: 28px 0; border-bottom: .5px solid var(--line-soft); }
.c-value-item:last-child { border-bottom: none; }
.c-value-idx { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 20px; color: var(--dusty-rose); padding-top: 2px; }
.c-value-item h4 { font-size: 16px; font-weight: 600; color: var(--plum); margin-bottom: 8px; }
.c-value-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

/* ─ 포지션 ─ */
.c-positions { background: var(--cream-warm); padding: 96px 64px; border-top: .5px solid var(--line); }
.c-positions-inner { max-width: 1400px; margin: 0 auto; }
.c-position-list { display: flex; flex-direction: column; gap: 2px; margin-top: 48px; }
.c-position-card {
  background: var(--cream); border: .5px solid var(--line);
  padding: 28px 32px; display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px; transition: border-color .2s, background .2s;
}
.c-position-card:hover { border-color: var(--plum); background: #FAF7F2; }
.c-position-tags { display: flex; gap: 8px; margin-bottom: 8px; }
.c-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border: .5px solid var(--line);
}
.c-tag.full { color: var(--plum); border-color: var(--plum); }
.c-tag.part { color: var(--dusty-rose); border-color: var(--dusty-rose); }
.c-tag.store { background: var(--sand); color: var(--ink-soft); border-color: transparent; }
.c-tag.hq { background: var(--peach); color: var(--ink-soft); border-color: transparent; }
.c-position-title { font-size: 18px; font-weight: 600; color: var(--plum); margin-bottom: 4px; }
.c-position-desc { font-size: 13px; color: var(--ink-mute); }
.c-position-arrow { font-size: 20px; color: var(--dusty-rose); }

/* ─ 혜택 ─ */
.c-benefits { background: var(--plum-deep); padding: 96px 64px; }
.c-benefits-inner { max-width: 1400px; margin: 0 auto; }
.c-benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 48px; background: rgba(247,243,235,.08); }
.c-benefit-card { background: var(--plum-deep); padding: 36px 28px; transition: background .2s; }
.c-benefit-card:hover { background: var(--dusk); }
.c-benefit-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.c-benefit-card h4 { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.c-benefit-card p { font-size: 13px; color: rgba(247,243,235,.6); line-height: 1.75; }

/* ─ 문의·지원 폼 ─ */
.c-form-wrap { padding: 96px 64px; }
.c-form-wrap.franchise-form-bg { background: var(--plum-deep); }
.c-form-wrap.careers-form-bg { background: var(--plum); }
.c-form-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.c-form-left h2 {
  font-family: 'Inter','Pretendard',sans-serif; font-weight: 200;
  font-size: clamp(26px,3.2vw,42px); line-height: 1.1; letter-spacing: -0.03em; color: var(--cream); margin-bottom: 20px;
}
.c-form-left h2 strong { font-weight: 800; }
.c-form-left p { font-size: 15px; color: rgba(247,243,235,.65); line-height: 1.85; margin-bottom: 28px; }
.c-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.c-contact-lbl { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--light-rose); font-weight: 600; width: 48px; }
.c-contact-val { font-size: 14px; color: rgba(247,243,235,.7); }
.c-inquiry-form { display: flex; flex-direction: column; gap: 14px; }
.c-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-form-group { display: flex; flex-direction: column; gap: 8px; }
.c-form-group label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--light-rose); font-weight: 600; }
.c-form-group input,
.c-form-group select,
.c-form-group textarea {
  background: rgba(255,255,255,.06); border: .5px solid rgba(247,243,235,.2);
  color: var(--cream); font-family: 'Pretendard','Inter',sans-serif; font-size: 14px;
  padding: 14px 16px; outline: none; transition: border-color .2s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.c-form-group input::placeholder,
.c-form-group textarea::placeholder { color: rgba(247,243,235,.3); }
.c-form-group input:focus,
.c-form-group select:focus,
.c-form-group textarea:focus { border-color: var(--light-rose); }
.c-form-group select option { background: var(--plum-deep); color: var(--cream); }
.c-form-group textarea { resize: vertical; min-height: 120px; }
.c-form-submit {
  background: var(--dusty-rose); color: var(--cream); border: none; cursor: pointer;
  font-family: 'Pretendard','Inter',sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 18px 40px;
  transition: opacity .2s; align-self: flex-start; margin-top: 8px;
}
.c-form-submit:hover { opacity: .85; }
.c-form-notice { font-size: 12px; color: rgba(247,243,235,.35); line-height: 1.7; margin-top: 10px; }

/* ─ 반응형 ─ */
@media (max-width: 1024px) {
  .careers-hero-inner, .c-condition-inner, .c-values-inner, .c-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .c-stats-inner { grid-template-columns: repeat(2,1fr); }
  .c-why-grid { grid-template-columns: 1fr 1fr; }
  .c-process-steps { grid-template-columns: 1fr 1fr; }
  .c-benefits-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .careers-hero, .c-why, .c-process, .c-condition,
  .c-values, .c-positions, .c-benefits, .c-form-wrap { padding-left: 24px; padding-right: 24px; }
  .careers-tab { padding: 16px 24px; }
  .c-why-grid { grid-template-columns: 1fr; }
  .c-process-steps { grid-template-columns: 1fr; }
  .c-form-row { grid-template-columns: 1fr; }
  .c-position-card { grid-template-columns: 1fr; gap: 12px; }
  .c-benefits-grid { grid-template-columns: 1fr 1fr; }
}
.sources {
  padding: 140px 48px;
  background: var(--cream);
}
.sources-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sources h2 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.08;
  font-weight: 200;
  margin-bottom: 28px;
  color: var(--plum);
  letter-spacing: -0.03em;
}
.sources h2 strong { font-weight: 700; }
.sources h2 .italic { 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--dusty-rose);
}
.sources-eyebrow { color: var(--dusty-rose); margin-bottom: 28px; }
.sources p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.sources-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 480px;
}
.sources-stat {
  padding: 20px;
  background: var(--cream-warm);
  border-radius: 4px;
  border-left: 3px solid var(--dusty-rose);
}
.sources-stat .num {
  font-size: 32px;
  font-weight: 200;
  color: var(--plum);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.sources-stat .num strong { font-weight: 600; }
.sources-stat .label {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.sources-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.sources-link:hover { opacity: 0.6; }

.sources-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.sources-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .sources { padding: 80px 24px; }
  .sources-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== STORES ===== */
.stores {
  padding: 140px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.store-card {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.store-link-icon {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-mute);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.store-card:hover .store-link-icon {
  color: var(--dusty-rose);
  transform: translate(2px, -2px);
}
.store-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--peach);
  position: relative;
}
.store-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: saturate(0.85) contrast(0.95);
}
.store-card:hover .store-img img { 
  transform: scale(1.04); 
  filter: saturate(1) contrast(1);
}

.store-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  color: var(--plum);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 600;
}

.store-num-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(31, 27, 22, 0.7);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 500;
}

.store-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.store-card h4 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.015em;
}
.store-card h4 .en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--dusty-rose);
  font-size: 14px;
  margin-left: 8px;
}
.store-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 4px;
}
.store-hours {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 12px;
  letter-spacing: 0.05em;
  display: flex;
  gap: 12px;
  align-items: center;
}
.store-hours span:first-child {
  color: var(--sage);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 900px) {
  .stores { padding: 80px 24px; }
  .stores-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== JOURNAL ===== */
.journal {
  background: var(--cream-warm);
  padding: 140px 48px;
}
.journal-inner { max-width: 1400px; margin: 0 auto; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.article-card {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.article-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.article-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
  filter: saturate(0.85) contrast(0.95);
}
.article-card:hover .article-img img { transform: scale(1.04); }

.article-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  font-weight: 600;
}
.article-meta .read-time { color: var(--ink-mute); font-weight: 400; }

.article-card h4 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.article-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .journal { padding: 80px 24px; }
  .journal-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  background: var(--cream);
}
.newsletter-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }

.newsletter-eyebrow {
  color: var(--dusty-rose);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.newsletter-eyebrow::before, .newsletter-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--dusty-rose);
}

.newsletter h2 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 200;
  color: var(--plum);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.newsletter h2 strong { font-weight: 700; }
.newsletter h2 .italic { 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--dusty-rose);
}

.newsletter > .newsletter-inner > p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 20px;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid var(--ink);
  background: var(--cream);
  padding: 14px 16px;
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  font-weight: 400;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--plum); }
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form button {
  border: none;
  background: var(--plum);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  padding: 14px 24px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--dusk); }

.newsletter-fine {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .newsletter { padding: 100px 24px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--plum);
  color: var(--cream);
  padding: 64px 48px 32px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(247, 243, 235, 0.15);
}

.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p {
  color: rgba(247, 243, 235, 0.65);
  font-size: 13px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-tagline {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--light-rose);
  font-size: 16px;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-rose);
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(247, 243, 235, 0.78);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(247, 243, 235, 0.45);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 48px 24px 28px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

.observe { opacity: 0; transform: translateY(24px); transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.observe.in { opacity: 1; transform: translateY(0); }

/* ===== MENU MODAL ===== */
.menu-modal {
  display: none;
}
.menu-modal.is-open {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(31, 27, 22, 0.75) !important;
  z-index: 2147483647 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  isolation: isolate;
  animation: modalFadeIn 0.25s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.menu-modal-content {
  background: var(--cream);
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  padding: 56px 48px 48px;
  animation: modalSlideUp 0.3s ease;
  box-shadow: 0 30px 80px rgba(31, 27, 22, 0.25);
}
@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.menu-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-bottom: -40px;
  display: flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--line);
  background: var(--cream);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  z-index: 10;
}
.menu-modal-close:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  transform: rotate(90deg);
}

.menu-modal-header {
  margin-bottom: 32px;
  text-align: center;
}
.menu-modal-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  font-weight: 600;
  margin-bottom: 12px;
}
.menu-modal-header h3 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 200;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.menu-modal-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-warm);
}
.menu-modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .menu-modal.is-open { padding: 12px; }
  .menu-modal-content { padding: 48px 20px 24px; }
  .menu-modal-header h3 { font-size: 22px; }
}

/* ===== Language Selector ===== */
.lang-selector {
  position: relative;
  margin-right: 12px;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0.5px solid var(--line);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-trigger:hover {
  border-color: var(--plum);
  color: var(--plum);
}
.lang-arrow {
  font-size: 9px;
  transition: transform 0.2s;
}
.lang-selector.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(31, 27, 22, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 200;
  overflow: hidden;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: block;
  padding: 12px 16px;
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
}
.lang-option:hover {
  background: var(--cream-warm);
  color: var(--plum);
}
.lang-option.active {
  background: var(--cream-warm);
  color: var(--plum);
  font-weight: 600;
}
.lang-option.active::after {
  content: '✓';
  float: right;
  color: var(--dusty-rose);
  font-weight: 700;
}
@media (max-width: 768px) {
  .lang-selector { margin-right: 8px; }
  .lang-trigger { padding: 7px 10px; font-size: 11px; }
}

