:root {
  --bg: #000000;
  --bg-2: #0c0c0c;
  --bg-3: #141414;
  --bg-card: #141414;
  --gold: #c9a961;
  --gold-bright: #d4b876;
  --gold-deep: #8b7340;
  --champagne: #e8d5a3;
  --cream: #f5f0e6;
  --text: #ebe5d8;
  --text-2: #9c8f80;
  --text-3: #5c5247;
  --line: rgba(201, 169, 97, 0.12);
  --line-soft: rgba(255, 255, 255, 0.06);
  --price: #d4a574;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-weight: 300;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.serif { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; }
.label-eng { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic; color: var(--gold); font-size: 13px; letter-spacing: 4px; text-transform: uppercase; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeUp 1s ease-out backwards; }

/* ===== Header ===== */
.header { position: fixed; top: 0; left: 0; right: 0; height: 80px; z-index: 100; background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all 0.4s ease; }
.header.scrolled { background: rgba(10, 10, 10, 0.92); border-bottom: 1px solid var(--line); }
.header__inner { width: 100%; max-width: 1400px; height: 100%; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 60px; }
.logo { font-family: 'Cormorant Garamond', serif; color: var(--cream); font-size: 30px; font-weight: 400; letter-spacing: 6px; }
.nav { display: flex; gap: 44px; flex: 1; justify-content: center; }
.nav a { color: var(--text-2); font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; padding: 6px 0; position: relative; transition: color 0.3s; }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a.active::after { content: ''; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.header__right { display: flex; align-items: center; gap: 24px; }
.header__social { display: flex; gap: 8px; align-items: center; padding-right: 24px; border-right: 1px solid var(--line); }
.header__social-link { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; color: #fff; transition: all 0.3s; }
.header__social-link:hover { transform: translateY(-2px); filter: brightness(1.15); }
.header__social-link--ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.header__social-link--yt { background: #ff0000; }
.header__social-link--cafe { background: #03c75a; }
.header__social-link svg { display: block; }
.header__cta { display: flex; gap: 14px; align-items: center; }
.header__cta a { font-size: 13px; color: var(--cream); letter-spacing: 0.5px; transition: color 0.3s; font-weight: 500; }
.header__cta a:hover { color: var(--gold); }
.header__cta-divider { color: var(--text-3); }
@media (max-width: 900px) {
  .header__social { display: none; }
  .header__cta a { font-size: 12px; }
}

/* ===== Hero ===== */
.hero { min-height: 100vh; background: var(--bg); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 97, 0.06), transparent 50%), radial-gradient(ellipse at 70% 30%, rgba(201, 169, 97, 0.04), transparent 50%); pointer-events: none; }
.hero__inner { position: relative; width: 100%; max-width: 1400px; margin: 0 auto; padding: 100px 40px 60px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
.hero__brand { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 6px; margin-bottom: 32px; text-transform: uppercase; }
.hero__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-weight: 300; font-size: 64px; line-height: 1.15; letter-spacing: -0.01em; color: var(--cream); margin-bottom: 36px; }
.hero__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero__divider { width: 60px; height: 1px; background: var(--gold); margin-bottom: 36px; }
.hero__sub { font-size: 16px; color: var(--text-2); line-height: 1.9; margin-bottom: 56px; max-width: 480px; font-weight: 300; letter-spacing: 0.02em; }
.hero__cta { display: flex; gap: 20px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 36px; font-size: 12px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; transition: all 0.3s ease; cursor: pointer; border: 0; position: relative; overflow: hidden; }
.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: var(--gold-bright); letter-spacing: 4px; }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); letter-spacing: 4px; }
.btn--cream { background: var(--cream); color: var(--bg); }
.btn--cream:hover { background: var(--champagne); letter-spacing: 4px; }
.hero__product { position: relative; }
.hero__product::before { content: ''; position: absolute; inset: 10% 10%; border: 1px solid var(--line); border-radius: 50%; }
.hero__product::after { content: ''; position: absolute; inset: 25% 25%; border: 1px solid var(--line); border-radius: 50%; }
.hero__product img, .hero__product video { position: relative; width: 100%; max-width: 640px; margin: 0 auto; filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6)); display: block; background: #000; }
.hero__product-info { margin: 40px auto 0; max-width: 640px; text-align: left; }
.hero__product-title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 32px; font-weight: 300; line-height: 1.25; color: var(--cream); letter-spacing: -0.01em; margin-bottom: 0; }
.hero__product-divider { width: 60px; height: 1px; background: var(--gold); margin: 22px 0; }
.hero__product-desc { color: var(--text); line-height: 1.9; font-size: 14px; font-weight: 300; }
.hero__price { margin: 28px auto 20px; max-width: 640px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.hero__price-spec { color: var(--cream); font-size: 16px; letter-spacing: 0.5px; font-weight: 400; }
.hero__price-divider { color: var(--text-2); margin: 0 -4px; }
.hero__price-current { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 38px; font-weight: 500; color: #fff; letter-spacing: -0.01em; }
.hero__price-original { color: var(--text-2); text-decoration: line-through; font-size: 17px; }
.hero__price-discount { color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; font-weight: 500; letter-spacing: 1.5px; margin-left: auto; padding: 4px 12px; border: 1px solid var(--gold); border-radius: 2px; }
.hero__buy { margin: 0 auto; max-width: 640px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__buy .btn { width: 100%; padding: 0; }
.hero__rating { position: absolute; bottom: 60px; left: 40px; display: flex; align-items: center; gap: 16px; color: var(--text-2); font-size: 12px; letter-spacing: 2px; }
.hero__rating-stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; }
.hero__rating-line { width: 30px; height: 1px; background: var(--text-3); }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: var(--text-3); font-size: 10px; letter-spacing: 4px; writing-mode: vertical-rl; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__scroll::after { content: ''; width: 1px; height: 50px; background: linear-gradient(to bottom, var(--text-3), transparent); }

/* ===== Film Section ===== */
.film { background: var(--bg); padding: 60px 0; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.film__head { max-width: 800px; margin: 0 auto 60px; padding: 60px 40px 0; }
.film__eyebrow { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 24px; }
.film__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-weight: 300; font-size: 44px; color: var(--cream); margin-bottom: 24px; line-height: 1.3; }
.film__title em { font-style: italic; color: var(--gold); }
.film__divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 24px; }
.film__sub { color: var(--text-2); font-size: 14px; line-height: 1.9; font-weight: 300; }
.film__player { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; position: relative; }
.film__player-frame { position: relative; border: 1px solid var(--line); overflow: hidden; background: #000; }
.film__player video { display: block; width: 100%; height: auto; }
.film__player::before, .film__player::after { display: none; }

/* ===== Section base ===== */
.section { padding: 160px 0; position: relative; }
.section--bg2 { background: var(--bg-2); }
.section--bg3 { background: var(--bg-3); }
.section__head { text-align: center; margin-bottom: 100px; }
.section__eyebrow { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 24px; }
.section__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-weight: 300; font-size: 48px; line-height: 1.3; letter-spacing: -0.01em; color: var(--cream); margin-bottom: 24px; }
.section__title em { font-style: italic; color: var(--gold); }
.section__divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 24px; }
.section__sub { color: var(--cream); font-size: 16px; line-height: 1.9; font-weight: 400; letter-spacing: 0.02em; max-width: 620px; margin: 0 auto; }

/* ===== Manifesto ===== */
.manifesto { text-align: center; max-width: 880px; margin: 0 auto; padding: 0 40px; }
.manifesto__quote { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-weight: 300; font-size: 36px; line-height: 1.55; color: var(--cream); letter-spacing: -0.005em; margin-bottom: 40px; }
.manifesto__quote em { font-style: italic; color: var(--gold); }
.manifesto__sign { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 4px; }

/* ===== Pain Points ===== */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pain { background: var(--bg-2); padding: 60px 40px; text-align: center; transition: background 0.3s; }
.pain:hover { background: var(--bg-3); }
.pain__num { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 32px; margin-bottom: 28px; font-weight: 300; }
.pain__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 18px; letter-spacing: -0.01em; }
.pain__body { color: var(--text-2); font-size: 14px; line-height: 1.85; font-weight: 300; }

/* ===== Showcase ===== */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.showcase__main { background: var(--bg); border: 1px solid var(--line); aspect-ratio: 1/1; overflow: hidden; position: relative; }
.showcase__main::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%); z-index: 1; pointer-events: none; }
.showcase__main img { width: 100%; height: 100%; object-fit: cover; }
.showcase__thumbs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 12px; }
.showcase__thumbs button { border: 1px solid var(--line); overflow: hidden; aspect-ratio: 1/1; background: var(--bg); padding: 0; cursor: pointer; transition: border-color 0.3s; }
.showcase__thumbs button.active { border-color: var(--gold); }
.showcase__thumbs img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.3s; }
.showcase__thumbs button.active img, .showcase__thumbs button:hover img { opacity: 1; }
.showcase__eyebrow { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; text-transform: uppercase; }
.showcase__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-weight: 300; font-size: 42px; line-height: 1.25; color: var(--cream); letter-spacing: -0.01em; margin-bottom: 28px; }
.showcase__divider { width: 60px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.showcase__desc { color: var(--text-2); line-height: 1.9; margin-bottom: 48px; font-size: 14px; font-weight: 300; letter-spacing: 0.02em; }
.showcase__highlights { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 48px; border-top: 1px solid var(--line); }
.highlight { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.highlight:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
.highlight:nth-child(even) { padding-left: 24px; }
.highlight__label { color: var(--text-3); font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; }
.highlight__value { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; }
.showcase__price { display: flex; align-items: baseline; gap: 16px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.showcase__discount { color: var(--price); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; }
.showcase__current { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; color: var(--cream); letter-spacing: -0.01em; }
.showcase__original { color: var(--text-3); text-decoration: line-through; font-size: 14px; }
.showcase__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.showcase__actions .btn { width: 100%; padding: 0; }

/* ===== Ingredients ===== */
.ingredients { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ingredient { text-align: center; padding: 60px 36px; background: var(--bg-2); transition: all 0.4s ease; }
.ingredient:hover { background: var(--bg-3); }
.ingredient__num { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-bright); font-size: 30px; margin-bottom: 28px; font-weight: 400; }
.ingredient__name { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 14px; text-transform: uppercase; font-weight: 500; }
.ingredient__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 18px; letter-spacing: -0.01em; }
.ingredient__body { color: var(--cream); font-size: 15px; line-height: 1.85; font-weight: 400; }

/* ===== Ritual ===== */
.ritual-list { max-width: 760px; margin: 0 auto; }
.ritual { display: grid; grid-template-columns: 100px 1fr; gap: 60px; padding: 50px 0; border-top: 1px solid var(--line); align-items: baseline; }
.ritual:last-child { border-bottom: 1px solid var(--line); }
.ritual__num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--gold); letter-spacing: -0.02em; line-height: 1; }
.ritual__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 26px; font-weight: 400; color: var(--cream); margin-bottom: 14px; letter-spacing: -0.01em; }
.ritual__body { color: var(--text-2); font-size: 14px; line-height: 1.9; font-weight: 300; }

/* Hide most decorative dividers — keep only hero + CTA */
.section__divider, .hero__product-divider, .film__divider { display: none; }

/* ===== About (슬간생이란?) ===== */
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 70px; max-width: 1100px; margin: 0 auto 80px; }
.about-point__title { font-family: 'Noto Sans KR', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.about-point__title em { color: var(--gold-bright); font-style: normal; }
.about-point__body { color: var(--cream); font-size: 15px; line-height: 1.85; font-weight: 400; }
.about-marks { display: flex; justify-content: center; gap: 80px; margin: 60px 0 24px; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-mark { display: flex; align-items: center; gap: 16px; }
.about-mark__badge { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 18px; letter-spacing: 1px; }
.about-mark__name { color: var(--cream); font-size: 13px; line-height: 1.6; font-weight: 500; }
.about-codes { text-align: center; color: var(--text-2); font-size: 13px; letter-spacing: 0.5px; }

/* ===== Natural Ingredients (9) ===== */
.natural-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 40px; max-width: 900px; margin: 0 auto; }
.natural { text-align: center; position: relative; cursor: help; }
.natural__circle { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 18px; border: 1px solid rgba(201, 169, 97, 0.3); transition: all 0.3s; position: relative; overflow: hidden; }
.natural:hover .natural__circle { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(201, 169, 97, 0.15); }
.natural__circle::after { content: ''; position: absolute; inset: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); }
.natural__circle--milk { background: radial-gradient(circle at 30% 30%, #b88fc7, #5a3a7d); }
.natural__circle--hovenia { background: radial-gradient(circle at 30% 30%, #6b4226, #2a1810); }
.natural__circle--houttuynia { background: radial-gradient(circle at 30% 30%, #d8e3a8, #6c8838); }
.natural__circle--mugwort { background: radial-gradient(circle at 30% 30%, #95b478, #3e5a26); }
.natural__circle--turmeric { background: radial-gradient(circle at 30% 30%, #f0c040, #a06010); }
.natural__circle--watercress { background: radial-gradient(circle at 30% 30%, #a8c878, #4a7028); }
.natural__circle--yeast { background: radial-gradient(circle at 30% 30%, #f0d99a, #a87c40); }
.natural__circle--ginseng { background: radial-gradient(circle at 30% 30%, #e85a5a, #8b1a1a); }
.natural__circle--citrus { background: radial-gradient(circle at 30% 30%, #f5a548, #c45a10); }
.natural__name { font-size: 17px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.natural__tooltip { position: absolute; bottom: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); width: 280px; background: var(--bg-3); border: 1px solid var(--gold); padding: 18px 20px; z-index: 10; opacity: 0; visibility: hidden; transition: all 0.25s ease; text-align: left; pointer-events: none; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); }
.natural__tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--gold); }
.natural:hover .natural__tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.natural__tip-h { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; color: var(--gold-bright); font-size: 18px; font-weight: 500; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); letter-spacing: -0.01em; }
.natural__tip-row { color: var(--cream); font-size: 13px; line-height: 1.7; margin-bottom: 6px; }
.natural__tip-row span { color: var(--gold); font-weight: 600; margin-right: 6px; letter-spacing: 1px; font-size: 11px; }

@media (max-width: 900px) {
  .about-points { grid-template-columns: 1fr; gap: 32px; }
  .about-marks { flex-direction: column; align-items: center; gap: 24px; }
  .natural-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .natural__circle { width: 110px; height: 110px; }
  .natural__tooltip { width: 240px; }
}

/* ===== Stores ===== */
.stores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.store { background: var(--bg-3); padding: 56px 28px; text-align: center; border: 1px solid rgba(201, 169, 97, 0.18); transition: all 0.3s; }
.store:hover { border-color: var(--gold); background: rgba(201, 169, 97, 0.05); }
.store__name { font-family: 'Cormorant Garamond', serif; color: var(--gold-bright); font-style: italic; font-size: 28px; letter-spacing: 3px; margin-bottom: 18px; font-weight: 500; line-height: 1.2; }
.store__desc { color: #fff; font-size: 14px; letter-spacing: 0.5px; font-weight: 400; }
.store--soon .store__name { color: var(--text-2); font-size: 22px; }
.store--soon .store__desc { color: var(--text-2); }
@media (max-width: 900px) { .stores-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Quality & Nutrition ===== */
.qn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.qn-block { display: flex; flex-direction: column; }
.qn-block__eyebrow { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px; }
.qn-block__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 38px; font-weight: 400; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.qn-block__sub { color: var(--cream); font-size: 15px; margin-bottom: 32px; font-weight: 400; }
.nutrition-list { border-top: 1px solid rgba(201, 169, 97, 0.25); }
.nutrition-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(201, 169, 97, 0.18); font-size: 16px; }
.nutrition-list__label { color: #fff; font-weight: 500; letter-spacing: 0.3px; }
.nutrition-list__value { font-family: 'Cormorant Garamond', serif; color: var(--gold-bright); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; }
.nutrition-list__value em { font-style: normal; font-size: 16px; color: var(--cream); margin-left: 2px; }
.nutrition-list__value small { font-family: 'Noto Sans KR', sans-serif; color: var(--gold); font-size: 12px; margin-left: 8px; letter-spacing: 1px; font-weight: 500; }
.nutrition-list__note { color: var(--text-2); font-size: 12px; margin-top: 20px; line-height: 1.7; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex: 1; }
.cert { padding: 28px 20px; border: 1px solid rgba(201, 169, 97, 0.35); text-align: center; background: rgba(201, 169, 97, 0.03); transition: all 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 130px; }
.cert:hover { background: rgba(201, 169, 97, 0.08); border-color: var(--gold); }
.cert__name { font-family: 'Cormorant Garamond', serif; color: var(--gold-bright); font-style: italic; font-size: 22px; letter-spacing: 3px; margin-bottom: 12px; font-weight: 500; }
.cert__desc { font-size: 13px; color: #fff; line-height: 1.6; font-weight: 400; }
@media (max-width: 900px) {
  .qn-grid { grid-template-columns: 1fr; gap: 60px; }
  .qn-block__title { font-size: 30px; }
  .nutrition-list__value { font-size: 20px; }
}

/* ===== Reviews ===== */
.review-feature { text-align: center; max-width: 800px; margin: 0 auto 100px; }
.review-feature__quote { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-style: italic; font-size: 32px; line-height: 1.5; color: var(--cream); margin-bottom: 32px; font-weight: 300; }
.review-feature__quote::before, .review-feature__quote::after { content: '"'; color: var(--gold); font-size: 60px; line-height: 0; margin: 0 8px; vertical-align: -20px; }
.review-feature__author { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; }
.review-feature__divider { width: 30px; height: 1px; background: var(--gold); margin: 24px auto; }
.review-feature__sub { color: var(--text-2); font-size: 13px; letter-spacing: 2px; }
.reviews-marquee { position: relative; overflow: hidden; margin: 0 calc(50% - 50vw); padding: 4px 0; }
.reviews-marquee::before, .reviews-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.reviews-marquee::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.reviews-marquee::after { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }
.reviews-track { display: flex; gap: 20px; width: max-content; animation: slide-left 120s linear infinite; padding: 0 20px; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes slide-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review { background: #ffe9e3; padding: 36px 32px; flex: 0 0 340px; width: 340px; border-radius: 28px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); }
.review__stars { color: #ff7373; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.review__body { color: #2a2a2a; line-height: 1.75; font-size: 14px; margin-bottom: 24px; font-weight: 400; min-height: 110px; }
.review__author { font-size: 13px; color: #e07060; font-weight: 500; letter-spacing: 0.3px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; padding: 32px 0; font-size: 18px; font-weight: 500; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.3s; font-family: 'Noto Sans KR', sans-serif; }
.faq__q:hover { color: var(--gold); }
.faq.open .faq__q { color: var(--gold-bright); }
.faq__q-num { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-style: italic; font-size: 20px; margin-right: 24px; font-weight: 500; flex-shrink: 0; }
.faq__q-text { flex: 1; }
.faq__q::after { content: '+'; color: var(--gold); font-size: 22px; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; color: var(--cream); line-height: 1.9; font-size: 16px; font-weight: 400; transition: max-height 0.4s ease, padding 0.4s ease; padding-left: 60px; }
.faq.open .faq__a { max-height: 300px; padding: 0 0 32px 60px; color: var(--gold-bright); }

/* ===== CTA ===== */
.cta-banner { background: var(--bg); text-align: center; padding: 160px 40px; position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06), transparent 60%); }
.cta-banner__inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-banner__eyebrow { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 32px; }
.cta-banner__title { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 44px; line-height: 1.3; font-weight: 300; color: var(--cream); margin-bottom: 24px; letter-spacing: -0.01em; }
.cta-banner__title em { font-style: italic; color: var(--gold); }
.cta-banner__divider { width: 30px; height: 1px; background: var(--gold); margin: 0 auto 24px; }
.cta-banner__sub { color: var(--text-2); margin-bottom: 48px; font-size: 14px; line-height: 1.9; font-weight: 300; }

/* ===== Footer ===== */
.footer { background: var(--bg); color: var(--text-2); padding: 100px 40px 40px; border-top: 1px solid var(--line); }
.footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer__brand { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; letter-spacing: 6px; margin-bottom: 20px; }
.footer__brand-sub { color: var(--text-2); font-size: 13px; line-height: 1.9; letter-spacing: 2px; text-transform: uppercase; }
.footer__info { font-size: 13px; line-height: 2.1; color: var(--cream); letter-spacing: 0.3px; font-weight: 400; }
.footer__info span { margin: 0 10px; color: var(--text-3); opacity: 0.4; }
.footer__links { margin-top: 24px; display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--cream); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; font-weight: 500; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { max-width: 1200px; margin: 0 auto; padding-top: 36px; color: var(--text-2); font-size: 12px; letter-spacing: 1px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header { height: 64px; }
  .header__inner { padding: 0 24px; gap: 12px; }
  .logo { font-size: 22px; letter-spacing: 4px; }
  .nav { display: none; }
  .header__cta { gap: 12px; }
  .header__cta a { font-size: 10px; }
  .hero__inner { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; text-align: center; }
  .hero__title { font-size: 38px; }
  .hero__divider { margin-left: auto; margin-right: auto; }
  .hero__sub { font-size: 14px; margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; flex-direction: column; }
  .btn { width: 100%; max-width: 320px; }
  .hero__rating { display: none; }
  .hero__scroll { display: none; }
  .section { padding: 100px 0; }
  .section__title { font-size: 32px; }
  .pains, .ingredients { grid-template-columns: 1fr; }
  .review { flex: 0 0 280px; width: 280px; padding: 32px 24px; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .showcase__title { font-size: 30px; }
  .showcase__highlights { grid-template-columns: 1fr; }
  .highlight:nth-child(odd) { border-right: 0; padding-right: 0; }
  .highlight:nth-child(even) { padding-left: 0; }
  .manifesto__quote { font-size: 24px; }
  .review-feature__quote { font-size: 22px; }
  .ritual { grid-template-columns: 60px 1fr; gap: 30px; padding: 36px 0; }
  .ritual__num { font-size: 36px; }
  .ritual__title { font-size: 22px; }
  .cta-banner { padding: 100px 24px; }
  .cta-banner__title { font-size: 30px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* === Logo image override === */
.logo { display: inline-flex; align-items: center; padding: 0; letter-spacing: 0; }
.logo img { height: 60px; width: auto; display: block; transition: opacity 0.2s; }
.logo:hover img { opacity: 0.85; }
@media (max-width: 900px) {
  .logo img { height: 42px; }
}

/* === Header improvements: bigger nav text, mobile visibility === */
.nav a {
  font-size: 14px !important;
  letter-spacing: 1.5px !important;
}

/* === MOBILE HEADER (< 900px) — 2 rows: logo+SNS / nav === */
@media (max-width: 900px) {
  .header {
    height: auto !important;
    padding: 10px 0 !important;
  }
  .header__inner {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "logo right"
      "nav  nav";
    align-items: center;
    gap: 8px 10px !important;
    padding: 0 14px !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .logo { grid-area: logo; }
  .logo img { height: 40px !important; }
  .header__right {
    grid-area: right;
    justify-self: end;
    display: flex !important;
    align-items: center;
    gap: 10px !important;
  }
  .header__social {
    display: flex !important;
    gap: 6px;
    padding-right: 10px;
    border-right: 1px solid var(--line);
  }
  .header__social-link {
    width: 30px !important;
    height: 30px !important;
  }
  .header__social-link svg {
    width: 14px;
    height: 14px;
  }
  .header__cta { gap: 8px !important; }
  .header__cta a { font-size: 12px !important; }
  .header__cta-divider { display: none !important; }
  .nav {
    grid-area: nav;
    display: flex !important;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 18px;
    padding: 6px 0 4px;
    margin-top: 2px;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap;
    padding: 6px 4px !important;
    text-transform: none !important;
  }
  .nav a.active::after { display: none !important; }
}
