:root {
  --bg: #FBF6EE;
  --bg-2: #F3EADB;
  --bg-3: #EADFC9;
  --ink: #3A2D32;
  --ink-soft: #5E4E52;
  --muted: #8F8078;
  --line: rgba(58, 45, 50, 0.14);
  --line-soft: rgba(58, 45, 50, 0.08);
  --accent: #C8724C;
  --accent-deep: #8B4A2E;
  --cream: #FFEFD7;
  --peach: #F0A395;
  --brown: #A87D56;
  --dark: #221E42;
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.mono  { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px) { .container { padding: 0 24px; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo {
  font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 8px;
}
.nav-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; transform: translateY(-2px); }
.nav-links { display: flex; gap: 36px; font-size: 14px; align-items: center; }
.nav-links > a,
.nav-links > .nav-products > a { position: relative; padding: 8px 0; display: inline-block; line-height: 1; }
.nav-links > a::after,
.nav-links > .nav-products > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.nav-links > a:hover::after,
.nav-links > .nav-products:hover > a::after { transform: scaleX(1); }
.nav-products { position: relative; display: inline-flex; align-items: center; }
.nav-products > a { cursor: pointer; }
.nav-dropdown {
  position: absolute; top: 100%; left: -16px; min-width: 280px; padding: 12px;
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: 14px;
  box-shadow: 0 20px 60px rgba(58,45,50,0.12);
  display: flex; flex-direction: column; gap: 2px;
  animation: drop .2s ease-out;
}
.nav-dropdown a {
  padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--bg-2); color: var(--ink); }
@keyframes drop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-cta { display: flex; gap: 16px; align-items: center; font-size: 14px; }
.nav-cta .cart { display:flex; gap:6px; align-items:center; padding: 10px 16px; border:1px solid var(--line); border-radius: 999px; transition: background .25s, border-color .25s; }
.nav-cta .cart:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- hero ---------- */
.hero { padding: 64px 0 96px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: end; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; color: var(--ink-soft); }
.hero-eyebrow .rule { width: 48px; height: 1px; background: var(--ink); opacity: .4; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 0.96; letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--accent-deep); font-weight: 500; }
.hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 460px; line-height: 1.65; margin: 0 0 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px; font-size: 15px;
  border: 1px solid var(--ink); background: var(--ink); color: var(--bg);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn .arrow { width: 18px; height: 18px; }

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
}
.hero-tag {
  position: absolute; left: 24px; top: 24px; padding: 10px 16px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 999px; font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.hero-tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; }
.hero-tag .pulse::before {
  content:""; position:absolute; inset:-4px; border-radius:50%;
  background: var(--accent); opacity: .4; animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(2);opacity:0} }

.hero-meta {
  position: absolute; right: 24px; bottom: 24px; display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); padding: 14px 20px; border-radius: 14px;
}
.hero-meta .big { font-family: var(--serif); font-size: 32px; line-height: 1; }
.hero-meta .small { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }

.hero-facts {
  margin-top: 96px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
  padding-top: 32px; border-top: 1px solid var(--line-soft);
}
.hero-fact .kv { font-family: var(--serif); font-size: 44px; line-height: 1; margin-bottom: 10px; letter-spacing: -0.02em; }
.hero-fact .lbl { font-size: 14px; color: var(--ink-soft); }

.product-img { width: 100%; height: 100%; }

/* ---------- placeholder ---------- */
.ph {
  position: relative; background: var(--bg-2); overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; padding: 20px;
}
.ph::before {
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(58,45,50,0.04) 18px 19px);
  pointer-events: none;
}
.ph-label { position: relative; z-index: 1; max-width: 70%; }
.ph-tone-warm { background: var(--bg-3); }
.ph-tone-cream { background: var(--cream); }
.ph-tone-dark { background: color-mix(in oklab, var(--dark) 88%, var(--bg)); color: rgba(255,255,255,0.7); }
.ph-tone-dark::before { background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.05) 18px 19px); }
.ph-tone-peach { background: color-mix(in oklab, var(--peach) 60%, var(--bg)); }

/* ---------- marquee ---------- */
.marquee { padding: 28px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 56px; animation: roll 45s linear infinite; font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--ink-soft); }
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .sep { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes roll { to { transform: translateX(-50%); } }

/* ---------- section header ---------- */
.section { padding: 120px 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; gap: 48px; }
.section-head .title { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 4.5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 0; max-width: 720px; }
.section-head .title em { font-style: italic; color: var(--accent-deep); }
.section-head .meta { text-align: right; color: var(--ink-soft); font-size: 14px; max-width: 320px; }
.section-head .meta .mono { display: block; margin-bottom: 10px; color: var(--ink); }

/* ---------- benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-soft); }
.benefit { padding: 48px 32px 56px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); position: relative; transition: background .4s ease; }
.benefit:nth-child(4n) { border-right: none; }
.benefit:hover { background: var(--bg-2); }
.benefit .num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 20px; margin-bottom: 32px; }
.benefit h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 12px; line-height: 1.15; letter-spacing: -0.01em; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.benefit .mark { position: absolute; top: 32px; right: 32px; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--ink-soft); transition: border-color .3s, color .3s, background .3s; }
.benefit:hover .mark { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- catalog ---------- */
.catalog-tabs { display: flex; gap: 8px; margin-bottom: 48px; }
.tab { padding: 10px 22px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; background: transparent; color: var(--ink-soft); transition: all .3s; }
.tab.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tab:hover:not(.active) { border-color: var(--ink); color: var(--ink); }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card {
  position: relative; border-radius: 20px; overflow: hidden; background: var(--bg-2);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); }
.card-img { aspect-ratio: 4/5; }
.card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.card-title { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.card-price { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.card-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.card-meta { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.card-badge { position: absolute; top: 20px; right: 20px; background: var(--bg); color: var(--ink); padding: 6px 12px; border-radius: 999px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.card-badge.accent { background: var(--accent); color: #fff; }
.card-img-wrap { position: relative; }

/* ---------- ingredients ---------- */
.ing-wrap { background: var(--bg-2); border-radius: 28px; padding: 80px; }
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ing-list { display: flex; flex-direction: column; }
.ing-row {
  display: grid; grid-template-columns: 40px 1fr auto;
  gap: 24px; padding: 28px 0; border-top: 1px solid var(--line-soft); align-items: baseline;
  transition: padding-left .4s ease;
}
.ing-row:last-child { border-bottom: 1px solid var(--line-soft); }
.ing-row:hover { padding-left: 16px; }
.ing-row .no { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 14px; }
.ing-row .name { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -0.01em; }
.ing-row .sci { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 14px; }
.ing-row .pct { font-family: var(--serif); font-size: 16px; color: var(--accent-deep); }
.ing-visual { aspect-ratio: 1; border-radius: 20px; overflow: hidden; }

/* ---------- ritual ---------- */
.ritual-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.ritual-steps { display: flex; flex-direction: column; gap: 8px; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 32px 0; border-top: 1px solid var(--line-soft);
  cursor: pointer;
  transition: padding-left .4s;
}
.step:hover, .step.open { padding-left: 12px; }
.step .num { font-family: var(--serif); font-size: 48px; font-weight: 500; color: var(--ink); line-height: 1; }
.step.open .num { color: var(--accent); }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 0 0 6px; letter-spacing: -0.01em; }
.step .time { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.step-body { max-height: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s ease; opacity: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; max-width: 480px; }
.step.open .step-body { max-height: 200px; opacity: 1; margin-top: 6px; }
.ritual-img { position: sticky; top: 100px; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; }

/* ---------- story ---------- */
.story { background: var(--dark); color: var(--bg); padding: 72px 0; border-radius: 28px; margin: 40px 144px; overflow: hidden; position: relative; }
.story .container { max-width: 1200px; padding: 0 48px; }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: center; max-width: 720px; }
.story h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 32px; color: var(--bg); }
.story h2 em { color: color-mix(in oklab, var(--peach) 80%, white); font-style: italic; }
.story p { color: rgba(251,246,238,0.75); font-size: 19px; line-height: 1.75; margin: 0 0 24px; }
.story .sig { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--bg); margin-top: 32px; }
.story .sig small { display: block; font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(251,246,238,0.5); margin-top: 6px; }
.story-img { aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; }

/* ---------- faq ---------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line-soft); padding: 28px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.faq-q h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.faq-q .plus { width: 28px; height: 28px; flex-shrink: 0; position: relative; transition: transform .4s; }
.faq-q .plus::before, .faq-q .plus::after { content:""; position:absolute; background: var(--ink); }
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; transition: transform .4s; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s ease, margin-top .4s; color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 640px; }
.faq-item.open .faq-a { max-height: 300px; margin-top: 16px; }

/* ---------- catalog ---------- (additions) */
.catalog-section { padding-top: 40px; }
.card-sub { color: var(--muted); }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--bg); padding: 120px 0 48px; margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 72px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h4 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin: 0 0 24px; color: var(--bg); letter-spacing: -0.01em; }
.footer p { color: rgba(251,246,238,0.65); font-size: 14px; line-height: 1.7; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.footer-menu a { color: rgba(251,246,238,0.7); transition: color .25s; }
.footer-menu a:hover { color: var(--bg); }
.footer .news { display: flex; background: rgba(255,255,255,0.08); border-radius: 999px; padding: 4px; margin-top: 20px; }
.footer .news input { flex: 1; background: transparent; border: none; outline: none; padding: 12px 18px; color: var(--bg); font: inherit; font-size: 14px; }
.footer .news input::placeholder { color: rgba(251,246,238,0.4); }
.footer .news button { background: var(--accent); color: #fff; border: none; border-radius: 999px; padding: 10px 22px; font-size: 13px; letter-spacing: 0.05em; }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(251,246,238,0.5); }
.footer-mega { font-family: var(--serif); font-weight: 500; font-size: clamp(100px, 14vw, 200px); line-height: .8; letter-spacing: -0.04em; color: var(--bg); margin: 80px 0 60px; white-space: nowrap; overflow: hidden; opacity: .95; }
.footer-mega em { color: var(--peach); font-style: italic; }
.footer-brand-title { font-family: var(--serif); font-size: 20px; margin: 0 0 24px; font-weight: 500; }
.footer-brand-dot { color: var(--peach); }
.footer-address { font-style: normal; }
.footer-phone { color: var(--bg); }
.footer-legal-links { display: flex; gap: 32px; }
.footer-contact-link { display: inline-block; margin-top: 16px; font-size: 13px; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.footer-contact-link:hover { color: var(--ink); border-color: var(--ink); }

body.hide-placeholders .ph-label { display: none; }
body.hide-placeholders .ph::before { opacity: 0.4; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- mobile nav ---------- */
.nav-burger { display: none; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; gap: 6px; flex-direction: column; align-items: center; }
.nav-burger span { display: block; width: 18px; height: 1px; background: var(--ink); transition: transform .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.nav-mobile {
  position: fixed; left: 0; right: 0; top: 76px; background: var(--bg);
  border-bottom: 1px solid var(--line-soft); padding: 24px;
  display: flex; flex-direction: column; gap: 4px; z-index: 30;
  animation: drop .2s ease-out;
}
.nav-mobile a { padding: 14px 4px; font-size: 18px; font-family: var(--serif); border-bottom: 1px solid var(--line-soft); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .sub { font-size: 14px; font-family: var(--sans); color: var(--ink-soft); padding-left: 20px; }

/* ---------- contact ---------- */
.contact-map { width: 100%; height: 360px; border-radius: 20px; overflow: hidden; margin-bottom: 72px; }
.contact-map iframe { display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.contact-info-block { margin-bottom: 48px; }
.contact-phone { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.contact-phone:hover { color: var(--accent); }
.contact-topics { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.contact-topics li { font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.contact-topics li::before { content: '—'; color: var(--accent); font-family: var(--mono); font-size: 12px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 4px; padding: 12px 16px; outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--accent); background: var(--bg); }
.contact-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238F8078' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.contact-field textarea { resize: vertical; min-height: 120px; }
.contact-submit {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  background: var(--ink); color: var(--bg); border: none;
  padding: 14px 28px; font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  cursor: pointer; transition: background .2s, opacity .2s;
}
.contact-submit:hover { background: var(--accent); }
.contact-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.contact-success { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 48px 0; }
.contact-success-mark { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-success h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0; }
.contact-success p { color: var(--ink-soft); margin: 0; }
.btn-ghost { background: none; border: 1px solid var(--line); color: var(--ink); padding: 10px 20px; font-size: 13px; cursor: pointer; transition: border-color .2s; }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- story ---------- (additions) */
.story-eyebrow { color: rgba(251,246,238,0.5); margin-bottom: 28px; }
.story-phone { color: var(--bg); }

/* ---------- nav ---------- (additions) */
.nav-divider { opacity: 0.5; }
.nav-mobile-phone { color: var(--accent); }

/* ---------- marquee ---------- (additions) */
.marquee-item { font-style: italic; }

/* ---------- section kicker ---------- */
.section-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; color: var(--ink-soft); }

/* ---------- set configurator ---------- (additions) */
.set-detail-label { color: var(--muted); }

/* ---------- contact ---------- (additions) */
.contact-info-label { margin-bottom: 8px; }
.contact-info-sub { color: var(--ink-soft); font-size: 14px; margin: 8px 0 0; }

/* ---------- faq / hero ---------- (additions) */
.faq-a { margin: 0; }
.lbl { margin: 0; }

/* ---------- fragrance library ---------- */
.fragrance-library { padding-top: 40px; }
.fl-controls { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.fl-line-toggle { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; align-self: flex-start; }
.fl-line-toggle button {
  padding: 10px 20px; border: none; background: transparent; border-radius: 999px;
  font-size: 13px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s;
}
.fl-line-toggle button.active { background: var(--ink); color: var(--bg); }
.fl-line-toggle button .mono { font-size: 12px; opacity: .7; }
.fl-search {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-2);
  max-width: 540px;
}
.fl-search svg { color: var(--muted); flex-shrink: 0; }
.fl-search input { flex: 1; border: none; background: transparent; font-family: var(--sans); font-size: 15px; color: var(--ink); outline: none; }
.fl-search input::placeholder { color: var(--muted); }
.fl-clear { border: none; background: transparent; color: var(--muted); font-size: 20px; line-height: 1; padding: 0 4px; }
.fl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fl-chip {
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12px; background: transparent; color: var(--ink-soft); transition: all .2s;
  font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.fl-chip:hover { border-color: var(--ink); color: var(--ink); }
.fl-chip.active { background: var(--accent); color: white; border-color: var(--accent); }
.fl-gender { display: inline-flex; gap: 4px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; align-self: flex-start; }
.fl-gender-btn { padding: 8px 16px; border: none; background: transparent; border-radius: 999px; font-size: 12px; color: var(--ink-soft); font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.fl-gender-btn.active { background: var(--ink); color: var(--bg); }
.fl-count { color: var(--muted); margin-bottom: 20px; }
.fl-count span { color: var(--ink); }
.fl-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.fl-card {
  position: relative; background: var(--bg); padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s;
}
.fl-card:hover { background: var(--bg-2); }
.fl-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.fl-num { color: var(--muted); font-size: 12px; }
.fl-gender-tag { font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.fl-name { font-family: var(--serif); font-size: 18px; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; }
.fl-meta { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; font-size: 12px; }
.fl-brand { color: var(--ink-soft); }
.fl-family { color: var(--muted); font-size: 12px; }
.fl-type-tag { position: absolute; top: 20px; right: 22px; display: none; }
.fl-more, .fl-empty { padding: 32px 24px; text-align: center; color: var(--muted); }
.fl-empty { display: flex; flex-direction: column; gap: 12px; align-items: center; padding: 60px 24px; }
.fl-disclaimer {
  margin-top: 48px; padding: 20px 24px; border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 12px; line-height: 1.7; max-width: 980px;
}

/* ---------- set configurator ---------- */
.set-config { background: var(--bg-2); }
.sets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.set-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 28px 24px; border: 1px solid var(--line); border-radius: 4px;
  background: var(--bg); text-align: left; transition: all .3s;
}
.set-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.set-card.active { border-color: var(--accent); background: var(--bg); box-shadow: 0 0 0 2px var(--accent); }
.set-code { color: var(--muted); font-size: 12px; }
.set-card.active .set-code { color: var(--accent); }
.set-pcs { display: flex; align-items: baseline; gap: 6px; }
.set-pcs-big { font-family: var(--serif); font-size: 52px; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.set-pcs-lbl { color: var(--muted); font-size: 14px; }
.set-line { font-size: 14px; color: var(--ink-soft); }
.set-display { color: var(--ink); font-size: 12px; }
.set-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 48px; background: var(--bg); border-radius: 8px; border: 1px solid var(--line-soft); }
.set-detail-title { font-family: var(--serif); font-size: 40px; font-weight: 500; letter-spacing: -0.02em; margin: 12px 0 16px; }
.set-detail-desc { color: var(--ink-soft); margin-bottom: 32px; max-width: 440px; }
.set-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); margin: 0 0 32px; border: 1px solid var(--line-soft); }
.set-spec > div { background: var(--bg); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.set-spec dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0; }
.set-spec dd { margin: 0; font-size: 14px; color: var(--ink); }
.set-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.set-visual { aspect-ratio: 4/5; background: var(--bg-3); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.set-rack { flex: 1; display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; align-items: end; }
.set-bottle {
  aspect-ratio: 1/2.4; border-radius: 2px 2px 1px 1px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.05);
  animation: bottleFloat .6s ease backwards;
}
@keyframes bottleFloat { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.set-caption { margin-top: 16px; text-align: center; color: var(--ink); }

/* ---------- compliance ---------- */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.comp-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.comp-badge {
  display: flex; flex-direction: column; gap: 4px; padding: 14px 18px;
  border: 1px solid var(--line); border-radius: 4px; background: var(--bg-2);
}
.comp-badge .mono { color: var(--accent); font-size: 12px; }
.comp-badge span:last-child { font-size: 14px; color: var(--ink); }
.comp-subtitle { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -0.01em; margin: 24px 0 16px; }
.comp-text { color: var(--ink-soft); margin: 0 0 16px; max-width: 520px; }
.comp-spec-head { padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); margin-bottom: 20px; }
.comp-spec-head .mono { color: var(--muted); display: block; margin-bottom: 6px; }
.comp-spec-head h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0; letter-spacing: -0.01em; }
.comp-spec { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-spec thead th { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.comp-spec tbody th { text-align: left; padding: 12px 0; font-weight: 400; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.comp-spec tbody td { text-align: right; padding: 12px 0; color: var(--ink); border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.comp-footnote { margin-top: 16px; color: var(--muted); font-size: 12px; }
.comp-legal { padding: 28px 32px; border: 1px solid var(--line); border-radius: 4px; background: var(--bg-2); }
.comp-legal-head { color: var(--accent); margin-bottom: 12px; }
.comp-legal p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; max-width: 980px; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hero { padding: 40px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 64px; }
  .hero-fact .kv { font-size: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit { padding: 36px 24px 40px; }
  .benefit:nth-child(2n) { border-right: none !important; }
  .benefit:nth-child(4n) { border-right: 1px solid var(--line-soft); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ing-grid, .ritual-grid, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .ing-wrap { padding: 40px 32px; border-radius: 20px; }
  .ritual-img { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta > a:first-child { display: none; }
  .section { padding: 96px 0; }
  .section-head { margin-bottom: 56px; gap: 24px; }
  .story { margin: 24px 24px; padding: 100px 0; border-radius: 20px; }
  .story .container { padding: 0 40px; }
  .fl-grid { grid-template-columns: repeat(3, 1fr); }
  .sets-grid { grid-template-columns: repeat(2, 1fr); }
  .set-detail { grid-template-columns: 1fr; gap: 48px; padding: 32px; }
  .comp-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { height: 64px; }
  .nav-mobile { top: 64px; }
  .nav-logo { font-size: 20px; }
  .nav-cta { font-size: 13px; gap: 10px; }
  .nav-cta .cart { padding: 8px 14px; }
  .hero { padding: 24px 0 56px; }
  .hero h1 { font-size: clamp(44px, 11vw, 72px); }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero .lede { font-size: 16px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn { justify-content: center; padding: 16px 22px; }
  .hero-visual { border-radius: 18px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 24px; }
  .hero-fact .kv { font-size: 30px; }
  .hero-fact .lbl { font-size: 12px; }
  .section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .section-head .title { font-size: clamp(32px, 8vw, 44px); }
  .section-head .meta { text-align: left; max-width: none; font-size: 13px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { border-right: none !important; padding: 32px 4px 36px; }
  .benefit:nth-child(4n) { border-right: none !important; }
  .catalog-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-body { padding: 20px 22px 24px; }
  .card-title { font-size: 22px; }
  .ing-wrap { padding: 28px 20px; border-radius: 18px; }
  .ing-row { grid-template-columns: 28px 1fr auto; gap: 16px; padding: 20px 0; }
  .ing-row .name { font-size: 22px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; }
  .step .num { font-size: 36px; }
  .step h3 { font-size: 22px; }
  .story { margin: 16px 16px; padding: 64px 0; border-radius: 18px; }
  .story .container { padding: 0 24px; }
  .story h2 { font-size: clamp(32px, 8vw, 44px); }
  .story p { font-size: 15px; }
  .faq-q h3 { font-size: 18px; }
  .faq-q { gap: 16px; }
  .footer { padding: 80px 0 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 48px; }
  .footer .news { flex-direction: column; background: transparent; padding: 0; gap: 10px; }
  .footer .news input { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 18px; }
  .footer .news button { border-radius: 12px; padding: 14px 18px; font-size: 14px; }
  .footer-mega { font-size: clamp(64px, 18vw, 120px); margin: 48px 0 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; font-size: 12px; }
  .marquee-track { font-size: 22px; gap: 40px; }
  .marquee-track span { gap: 40px; }
  .fl-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-card { padding: 16px 14px 18px; }
  .fl-name { font-size: 15px; }
  .sets-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .set-card { padding: 20px 16px; }
  .set-pcs-big { font-size: 40px; }
  .set-detail { padding: 24px; gap: 32px; }
  .set-detail-title { font-size: 28px; }
  .set-spec { grid-template-columns: 1fr; }
  .set-rack { grid-template-columns: repeat(8, 1fr); }
  .comp-subtitle { font-size: 22px; }
  .comp-legal { padding: 20px 22px; }
}
@media (max-width: 480px) {
  .fl-grid { grid-template-columns: 1fr; }
  .fl-chips { gap: 4px; }
  .fl-chip { padding: 6px 10px; font-size: 12px; }
}
