/* =========================================
   SAINT FLAME — Premium Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Great+Vibes&family=Inter:wght@300;400;500&display=swap');

@font-face {
  font-family: 'Bergamasco';
  src: url('../fonts/BERGAMASCO REGULAR.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GothamPro';
  src: url('../fonts/GOTHAMPRO.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  --bg: #faf7f2;
  --bg-alt: #f2ebe0;
  --surface: #ede5d8;
  --surface-2: #e5ddd0;
  --border: #d4ccbc;
  --border-subtle: #e8e0d4;

  --text: #1c1008;
  --text-2: #5a4838;
  --text-3: #9a8878;

  --gold: #e86420;
  --gold-light: #f07838;
  --gold-dim: #a05818;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-brand: 'Bergamasco', 'Cormorant Garamond', serif;
  --font-tagline: 'GothamPro', 'Inter', sans-serif;

  --nav-h: 80px;
  --container: 1240px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t: 0.4s var(--ease);
  --t-slow: 0.7s var(--ease);
}

/* ─── Scroll Progress Bar ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  z-index: 9999;
  pointer-events: none;
  will-change: width;
  transition: width 0.06s linear;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input { font: inherit; }

/* ─── Typography ─── */
.font-display { font-family: var(--font-display); }

/* Script font applications */
.hero__title-line--italic {
  font-family: var(--font-script) !important;
  font-style: normal;
  font-size: clamp(2.8rem, 5vw, 4.8rem) !important;
  letter-spacing: 0.02em;
}
.ms-tagline {
  font-family: var(--font-script);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
}
.philosophy__quote blockquote {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-style: normal;
  line-height: 1.4;
}
.footer__tagline {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.5rem;
  color: var(--text-3);
}

/* ─── Layout ─── */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(28, 16, 8, 0.18);
  padding: 0.65rem 1.4rem;
  font-size: 0.7rem;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--text {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.btn--text:hover { color: var(--gold-light); }
.btn--icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  flex-shrink: 0;
}
.btn--icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 108, 0.08);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav__inner {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--t);
}
.nav.scrolled .nav__logo {
  opacity: 1;
}
.nav__logo-mark {
  width: 24px;
  height: 34px;
  flex-shrink: 0;
  margin-left: -4px;
  color: var(--gold);
  position: relative;
  top: -2px;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--t);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav__link:hover, .nav__link--active {
  color: var(--text);
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
}
.nav__burger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 2rem 1.5rem;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--t), opacity var(--t);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile__links { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile__link {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--text-2);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--t);
}
.nav-mobile__link:hover { color: var(--gold); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  animation: heroBgPulse 7s ease-in-out infinite;
}
@keyframes heroBgPulse {
  0%, 100% {
    background: radial-gradient(ellipse 80% 70% at 50% 38%, rgba(232, 100, 32, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 50% 38%, rgba(232, 100, 32, 0.04) 0%, transparent 50%);
  }
  50% {
    background: radial-gradient(ellipse 96% 80% at 50% 36%, rgba(232, 100, 32, 0.13) 0%, transparent 65%),
                radial-gradient(ellipse 62% 62% at 50% 36%, rgba(255, 160, 60, 0.07) 0%, transparent 55%);
  }
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(250, 247, 242, 0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  width: 100%;
  padding: 0 2rem 1rem;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.35s; }
.hero__title-line:nth-child(2) {
  animation-delay: 0.5s;
  font-style: italic;
  color: var(--gold);
  padding-left: 3.5rem;
}
.hero__subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 4.1s forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 4.4s forwards;
}

/* Hero brand name above animation */
.hero__brand {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.3s forwards;
  margin-top: 0.5rem;
}
.hero__brand-name {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  font-weight: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.hero__brand-sub {
  font-family: var(--font-tagline);
  font-size: clamp(0.55rem, 1vw, 0.72rem);
  font-weight: normal;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.5rem;
}

/* Hero Main Tagline — fire reveal animation */
.hero__main-tagline {
  font-family: var(--font-tagline);
  font-style: normal;
  font-size: clamp(1.3rem, 4.4vw, 2.8rem);
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  color: var(--text-2);
  animation: flameReveal 1.2s var(--ease) 0.8s forwards;
}

@keyframes flameReveal {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
    color: #e86420;
    text-shadow: 0 -4px 30px rgba(232, 100, 32, 0.8), 0 0 50px rgba(255, 120, 20, 0.6);
  }
  35% {
    opacity: 0.85;
    filter: blur(2px);
    color: #c87030;
    text-shadow: 0 0 20px rgba(232, 100, 32, 0.5);
  }
  70% {
    opacity: 1;
    filter: blur(0);
    color: #8a5830;
    text-shadow: 0 0 10px rgba(232, 100, 32, 0.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    color: var(--text-2);
    text-shadow: none;
  }
}

/* Hero Visual - meeting animation */
.hero__visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 460px;
  margin-top: 1.5rem;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.4s forwards;
  overflow: hidden;
  background: #0b0a08;
}
.hero__slideshow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
  height: 100%;
}
.hero__slide-slot {
  position: relative;
  overflow: hidden;
}
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero__slide-img.active {
  opacity: 1;
}
.candle-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.candle-hero__glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(255, 160, 60, 0.18) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.candle-hero__flame {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
  margin-bottom: -4px;
}
.candle-hero__flame-outer {
  width: 32px;
  height: 52px;
  background: linear-gradient(to top, #ff6b00, #ffa040, #ffd080);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  transform-origin: bottom center;
  animation: flameOuter 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.candle-hero__flame-inner {
  position: absolute;
  bottom: 8px;
  width: 16px;
  height: 30px;
  background: linear-gradient(to top, #ffd060, #fff4c0);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  transform-origin: bottom center;
  animation: flameInner 2.2s ease-in-out infinite;
  z-index: 3;
}
.candle-hero__wick {
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, #2a1a08, #1a1008);
  position: relative;
  z-index: 2;
}
.candle-hero__body {
  width: 100px;
  height: 220px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 30%, #f8f4ee 70%, #f0ece4 100%);
  position: relative;
  border-radius: 2px;
  box-shadow: inset -8px 0 20px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.4);
}
.candle-hero__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #ded6c6, #f2ece0, #ded6c6);
  border-radius: 2px 2px 0 0;
}
.candle-hero__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(180, 155, 100, 0.4);
  border-bottom: 1px solid rgba(180, 155, 100, 0.4);
}
.candle-hero__label-line {
  height: 1px;
  background: rgba(180, 155, 100, 0.3);
  margin: 0.4rem 0;
}
.candle-hero__label span {
  font-family: var(--font-body);
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(100, 80, 40, 0.6);
  text-transform: uppercase;
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── Features Strip ─── */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
}
.features-strip__grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.features-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.features-strip__icon {
  color: var(--gold);
  font-size: 0.45rem;
}

/* ─── Sections ─── */
.section {
  padding: 7rem 0;
}
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section__subtitle {
  font-size: 0.9rem;
  color: var(--text-2);
  font-style: italic;
  font-family: var(--font-display);
}
.section__footer {
  text-align: center;
  margin-top: 3.5rem;
}

/* ─── Product Cards ─── */
.products-grid {
  display: grid;
  gap: 1.5px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.products-grid--featured {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.product-card {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color var(--t);
  pointer-events: none;
  z-index: 3;
}
.product-card:hover::before {
  border-color: rgba(201, 168, 108, 0.25);
}

.product-card__visual {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card--tall .product-card__visual {
  aspect-ratio: 2/3;
}
.product-card__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(237, 229, 216, 0.55), transparent);
  pointer-events: none;
}
.product-card:hover .product-card__visual > .product-visual {
  transform: scale(1.04);
  transition: transform 0.6s var(--ease);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__img {
  transform: scale(1.04);
}
.product-visual {
  transition: transform 0.6s var(--ease);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  z-index: 2;
}

.product-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}
.product-card__category {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}
.product-card__notes {
  font-size: 0.75rem;
  color: var(--text-3);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ─── CSS Product Art ─── */
.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Candle Visual */
.candle-visual {
  flex-direction: column;
  position: relative;
}
.cv__flame {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: -2px;
  z-index: 2;
}
.cv__flame-outer {
  width: 18px;
  height: 28px;
  background: linear-gradient(to top, #ff6b00, #ffa040, #ffd080);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  transform-origin: bottom center;
  animation: flameOuter 2.8s ease-in-out infinite;
}
.cv__flame-inner {
  position: absolute;
  bottom: 4px;
  width: 9px;
  height: 16px;
  background: linear-gradient(to top, #ffd060, #fff4c0);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  animation: flameInner 2.3s ease-in-out infinite;
}
.cv__wick {
  width: 1.5px;
  height: 10px;
  background: #2a1a08;
  z-index: 2;
}
.cv__body {
  width: 60px;
  height: 120px;
  background: linear-gradient(135deg, #ffffff, #f5f0e8, #f8f4ee);
  border-radius: 1px;
  position: relative;
  box-shadow: inset -5px 0 14px rgba(0,0,0,0.09), 0 8px 24px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
}
.cv__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(160, 130, 80, 0.35);
  border-bottom: 1px solid rgba(160, 130, 80, 0.35);
  text-align: center;
}
.cv__label span {
  font-size: 0.28rem;
  letter-spacing: 0.3em;
  color: rgba(100, 80, 40, 0.6);
  text-transform: uppercase;
  font-weight: 500;
}

/* Diffuser Visual */
.diffuser-visual {
  align-items: flex-end;
  padding-bottom: 1.5rem;
  gap: 0;
  position: relative;
}
.dv__bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.dv__neck {
  width: 18px;
  height: 40px;
  background: linear-gradient(135deg, #1a2535, #0f1820, #1a2535);
  border-radius: 2px 2px 0 0;
}
.dv__body {
  width: 68px;
  height: 110px;
  background: linear-gradient(135deg, #1a2535, #0f1820, #1a2535);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.dv__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 10%;
  height: 100%;
  background: rgba(255,255,255,0.04);
}
.dv__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(201, 168, 108, 0.25);
  border-bottom: 1px solid rgba(201, 168, 108, 0.25);
  text-align: center;
}
.dv__label span {
  font-size: 0.28rem;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 108, 0.5);
  text-transform: uppercase;
  font-weight: 500;
}
.dv__sticks {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: flex-end;
  z-index: 3;
}
.dv__stick {
  width: 2px;
  background: linear-gradient(to top, rgba(180, 155, 100, 0.8), rgba(180, 155, 100, 0.3), transparent);
  border-radius: 1px;
}
.dv__stick:nth-child(1) { height: 55px; }
.dv__stick:nth-child(2) { height: 70px; }
.dv__stick:nth-child(3) { height: 80px; }
.dv__stick:nth-child(4) { height: 65px; }
.dv__stick:nth-child(5) { height: 50px; }

/* Spray Visual */
.spray-visual {
  flex-direction: row;
  align-items: flex-end;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
}
.sv__bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sv__head {
  width: 30px;
  height: 18px;
  background: linear-gradient(135deg, #2a2030, #1a1525);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.sv__head::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 6px;
  width: 8px;
  height: 3px;
  background: #2a2030;
  border-radius: 0 2px 2px 0;
}
.sv__neck {
  width: 22px;
  height: 16px;
  background: linear-gradient(135deg, #2a2030, #1a1525);
}
.sv__body {
  width: 55px;
  height: 100px;
  background: linear-gradient(135deg, #2a2030, #1a1525, #2a2030);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.sv__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 8%;
  height: 100%;
  background: rgba(255,255,255,0.03);
}
.sv__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(201, 168, 108, 0.25);
  border-bottom: 1px solid rgba(201, 168, 108, 0.25);
  text-align: center;
}
.sv__label span {
  font-size: 0.28rem;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 108, 0.5);
  text-transform: uppercase;
  font-weight: 500;
}
.sv__mist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: center;
  margin-bottom: 0.5rem;
}
.sv__mist-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.2);
  animation: mistFloat 2.5s ease-in-out infinite;
}
.sv__mist-dot:nth-child(2) { animation-delay: 0.3s; width: 7px; height: 7px; }
.sv__mist-dot:nth-child(3) { animation-delay: 0.6s; width: 4px; height: 4px; }

/* ─── Philosophy Section ─── */
.philosophy {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.philosophy__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.philosophy__title em { font-style: italic; color: var(--gold); }
.philosophy__body {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.philosophy__quote {
  padding: 3rem;
  border: 1px solid var(--border);
  position: relative;
}
.philosophy__quote::before {
  content: '❝';
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--surface);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 0.5rem;
  font-family: var(--font-display);
}
.philosophy__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.philosophy__quote cite {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Categories Section ─── */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.category-card {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  transition: var(--t);
  overflow: hidden;
}
.category-card:hover {
  border-color: rgba(201, 168, 108, 0.2);
}
.category-card__visual {
  height: 220px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--t);
}
.category-card:hover .category-card__visual {
  background: var(--surface-2);
}
.category-card__info {
  padding: 1.75rem;
}
.category-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.category-card__info p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.category-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--t);
}
.category-card:hover .category-card__link { color: var(--gold-light); }

/* Category Art */
.cca__row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding-bottom: 1rem;
}
.cca__candle {
  background: linear-gradient(135deg, #ffffff, #f5f0e8);
  border-radius: 1px;
  width: 26px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
}
.cca__candle::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 14px;
  background: linear-gradient(to top, #ff7020, #ffc060);
  border-radius: 50% 50% 20% 20% / 60% 60% 30% 30%;
  animation: flameOuter 2.8s ease-in-out infinite;
}
.cca__candle--tall { height: 90px; }
.cca__candle--medium { height: 70px; animation-delay: 0.3s; }
.cca__candle--short { height: 50px; animation-delay: 0.6s; }

.csa__bottle {
  width: 56px;
  height: 120px;
  background: linear-gradient(135deg, #2a2030, #1a1525);
  border-radius: 2px;
  position: relative;
}
.csa__bottle::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 22px;
  background: linear-gradient(135deg, #2a2030, #1a1525);
  border-radius: 3px 3px 0 0;
}
.csa__bottle::after {
  content: 'SAINT FLAME';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  font-size: 0.3rem;
  letter-spacing: 0.25em;
  color: rgba(201, 168, 108, 0.4);
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
}

.cda__bottle {
  width: 54px;
  height: 100px;
  background: linear-gradient(135deg, #1a2535, #0f1820);
  border-radius: 2px;
  position: relative;
}
.cda__bottle::before {
  content: '';
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 50px;
  border-left: 1.5px solid rgba(180,155,100,0.35);
  border-right: 1.5px solid rgba(180,155,100,0.35);
  border-top: 1.5px solid rgba(180,155,100,0.35);
  border-radius: 2px 2px 0 0;
}

/* ─── Newsletter ─── */
.newsletter {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.newsletter__text p {
  font-size: 0.85rem;
  color: var(--text-2);
}
.newsletter__form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 460px;
}
.newsletter__input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t);
}
.newsletter__input:focus { border-color: var(--gold-dim); }
.newsletter__input::placeholder { color: var(--text-3); }
.newsletter__form .btn { border-radius: 0; }

/* ─── Footer ─── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer__logo-icon { color: var(--gold); font-size: 0.75rem; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-3);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer__nav-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav-col a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color var(--t);
}
.footer__nav-col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-3);
}

/* ─── Page Hero ─── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  text-align: center;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201, 168, 108, 0.05) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__subtitle {
  font-size: 0.9rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Catalog ─── */
.catalog-filters {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-alt);
}
.catalog-filters__inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  color: var(--text-2);
  background: transparent;
  cursor: pointer;
  transition: var(--t);
}
.filter-btn:hover {
  border-color: var(--gold-dim);
  color: var(--text);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.catalog-section {
  padding: 4rem 0 7rem;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5px;
}
.catalog-count {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

/* ─── About Page ─── */
.about-story {
  padding: 7rem 0;
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-story__visual {
  position: relative;
  height: 500px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}
.about-story__visual::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}
.about-candles {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.about-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ac__flame {
  width: 14px;
  height: 22px;
  background: linear-gradient(to top, #ff6b00, #ffa040, #ffd080);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  transform-origin: bottom center;
  animation: flameOuter 2.8s ease-in-out infinite;
  margin-bottom: -2px;
}
.ac__body {
  background: linear-gradient(135deg, #ffffff, #f5f0e8, #f8f4ee);
  border-radius: 1px;
  width: 36px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06);
}
.ac__body--tall { height: 160px; animation-delay: 0.2s; }
.ac__body--medium { height: 120px; }
.ac__body--short { height: 80px; animation-delay: 0.5s; }

.about-story__text { }
.about-story__text .section__eyebrow { text-align: left; margin-bottom: 0.75rem; }
.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.about-story__title em { font-style: italic; color: var(--gold); }
.about-story__text p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* Values */
.values {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 7rem 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.value-card {
  background: var(--bg-alt);
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  transition: var(--t);
}
.value-card:hover {
  border-color: rgba(201, 168, 108, 0.2);
  background: var(--bg);
}
.value-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.value-card__text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* Process */
.process {
  padding: 7rem 0;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
}
.process-step {
  padding: 0 1.5rem;
  padding-top: 0;
  text-align: center;
  position: relative;
}
.process-step__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.process-step__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  opacity: 0.4;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.process-step__text {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Ingredients */
.ingredients {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  padding: 7rem 0;
}
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.ingredient-item {
  background: var(--bg-alt);
  padding: 2rem 2.5rem;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.ingredient-item__mark {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.ingredient-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.ingredient-item__text {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes flameOuter {
  0%, 100% { transform: scaleX(1) translateY(0) rotate(0deg); }
  20%  { transform: scaleX(0.88) translateY(-2px) rotate(-3deg); }
  40%  { transform: scaleX(1.08) translateY(-1px) rotate(2deg); }
  60%  { transform: scaleX(0.92) translateY(-3px) rotate(-2deg); }
  80%  { transform: scaleX(1.04) translateY(-1px) rotate(1deg); }
}
@keyframes flameInner {
  0%, 100% { transform: scaleX(1) translateY(0); }
  30%  { transform: scaleX(0.85) translateY(-3px); }
  60%  { transform: scaleX(1.1) translateY(-2px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
@keyframes scrollLine {
  0%   { left: -100%; }
  50%, 100% { left: 100%; }
}
@keyframes mistFloat {
  0%, 100% { opacity: 0.15; transform: translateY(0) scale(1); }
  50% { opacity: 0.35; transform: translateY(-4px) scale(1.1); }
}

/* ─── Meeting Animation Scene ─── */
.meeting-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ms-candle-side {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  animation: msCandleEnter 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s both;
}

.ms-hand-side {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: msHandEnter 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s both;
}

@keyframes msCandleEnter {
  0%   { transform: translateX(-600px); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes msHandEnter {
  0%   { transform: translateX(600px); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Meeting glow — radiates when candle & hand meet */
.ms-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232, 100, 32, 0.22) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: msGlowReveal 1.2s ease-out 3.2s forwards;
}

@keyframes msGlowReveal {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-60px) scale(0.4); }
  100% { opacity: 1; transform: translateX(-50%) translateY(-60px) scale(1); }
}

/* Candle art in meeting scene */
.ms-candle-art {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Flame is hidden until they meet */
.ms-flame {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
  margin-bottom: -3px;
  opacity: 0;
  animation: msFlameReveal 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 3.2s both;
}

@keyframes msFlameReveal {
  0%   { opacity: 0; transform: scaleY(0) scaleX(0.4); }
  65%  { opacity: 1; transform: scaleY(1.35) scaleX(0.9); }
  100% { opacity: 1; transform: scaleY(1) scaleX(1); }
}

.ms-flame-outer {
  width: 26px;
  height: 42px;
  background: linear-gradient(to top, #e86420, #f07838, #ffd080);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  transform-origin: bottom center;
  animation: flameOuter 2.8s ease-in-out infinite 2.2s;
}

.ms-flame-inner {
  position: absolute;
  bottom: 5px;
  width: 13px;
  height: 24px;
  background: linear-gradient(to top, #ffd060, #fff4c0);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  animation: flameInner 2.3s ease-in-out infinite 2.2s;
}

.ms-candle-wick {
  width: 1.5px;
  height: 12px;
  background: #2a1a08;
  z-index: 2;
}

.ms-candle-body {
  width: 72px;
  height: 180px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 30%, #f8f4ee 70%, #f0ece4 100%);
  border-radius: 2px;
  position: relative;
  box-shadow: inset -6px 0 16px rgba(0,0,0,0.10), 0 16px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.07);
}

.ms-candle-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #ded6c6, #f2ece0, #ded6c6);
  border-radius: 2px 2px 0 0;
}

.ms-candle-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(160, 130, 80, 0.35);
  border-bottom: 1px solid rgba(160, 130, 80, 0.35);
}

.ms-candle-label span {
  font-size: 0.3rem;
  letter-spacing: 0.32em;
  color: rgba(100, 80, 40, 0.6);
  text-transform: uppercase;
  font-weight: 500;
}

/* Hand SVG */
.ms-hand-svg {
  width: 260px;
  height: auto;
  display: block;
  /* warm orange glow from candle on left side of hand */
  filter: drop-shadow(-12px 0 28px rgba(232, 100, 32, 0.28));
}

/* Tagline below animation */
.ms-tagline {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 1s ease 3.9s both;
}

/* ─── Soap / Cream Visual ─── */
.soap-visual {
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
}

.spv__bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spv__pump-head {
  width: 28px;
  height: 14px;
  background: linear-gradient(135deg, #1e1a14, #141008);
  border-radius: 4px 4px 0 0;
  position: relative;
}

.spv__pump-head::before {
  content: '';
  position: absolute;
  right: -14px;
  top: 3px;
  width: 14px;
  height: 8px;
  background: #1e1a14;
  border-radius: 0 4px 4px 0;
}

.spv__pump-head::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 22px;
  background: #241e16;
  transform: translateX(-50%);
}

.spv__pump-gap {
  height: 20px;
}

.spv__body {
  width: 72px;
  height: 110px;
  background: linear-gradient(155deg, #ffffff 0%, #f5f0e8 40%, #f8f4ee 100%);
  border-radius: 6px 6px 4px 4px;
  position: relative;
  box-shadow: inset -5px 0 14px rgba(0,0,0,0.09), 0 12px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
}

.spv__body::before {
  content: '';
  position: absolute;
  top: 6%;
  left: 12%;
  width: 7%;
  height: 88%;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
}

.spv__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(160, 130, 80, 0.32);
  border-bottom: 1px solid rgba(160, 130, 80, 0.32);
  text-align: center;
}

.spv__label span {
  font-size: 0.28rem;
  letter-spacing: 0.3em;
  color: rgba(100, 80, 40, 0.55);
  text-transform: uppercase;
  font-weight: 500;
}

/* Category soap art */
.csoap__bottle {
  width: 52px;
  height: 90px;
  background: linear-gradient(155deg, #ffffff, #f5f0e8);
  border-radius: 6px 6px 3px 3px;
  position: relative;
}
.csoap__bottle::before {
  content: '';
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 36px;
  background: linear-gradient(to bottom, #1e1a14, #1e1a14);
  border-radius: 2px 2px 0 0;
}
.csoap__bottle::after {
  content: 'SAINT FLAME';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.28rem;
  letter-spacing: 0.25em;
  color: rgba(160, 130, 80, 0.5);
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── Page hero updated gradient ─── */
.page-hero {
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(232, 100, 32, 0.05) 0%, transparent 70%);
}

/* ─── Custom Cursor ─── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .product-card, .category-card, .filter-btn { cursor: none; }

  #custom-cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    box-shadow: 0 0 8px 2px rgba(232, 100, 32, 0.4);
    transition: width 0.2s var(--ease), height 0.2s var(--ease),
                background 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.3s;
    will-change: transform;
    left: -100px; top: -100px;
  }
  #custom-cursor.cursor--hover {
    width: 36px;
    height: 36px;
    background: rgba(232, 100, 32, 0.12);
    box-shadow: 0 0 20px 6px rgba(232, 100, 32, 0.4),
                0 0 0 1px rgba(232, 100, 32, 0.35);
  }
  #custom-cursor.cursor--hidden { opacity: 0; }
}

/* ─── 3D Card Tilt ─── */
.products-grid,
.products-grid--featured,
.catalog-grid,
.categories__grid {
  perspective: 1200px;
}
.product-card {
  transform-style: preserve-3d;
}
.product-card__tilt-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(232, 100, 32, 0.12) 0%,
    transparent 60%
  );
}
.product-card:hover .product-card__tilt-glow { opacity: 1; }

/* ─── Ember Particles ─── */
.ember {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  background: radial-gradient(circle, #ffd080 0%, #e86420 40%, transparent 70%);
  animation: emberRise var(--dur, 2.5s) ease-out var(--delay, 0s) forwards;
}
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.9; }
  30%  { opacity: 0.8; }
  60%  { transform: translateY(var(--rise, -120px)) translateX(var(--drift, 20px)) scale(0.7); opacity: 0.5; }
  100% { transform: translateY(calc(var(--rise, -120px) * 1.6)) translateX(calc(var(--drift, 20px) * 1.8)) scale(0.2); opacity: 0; }
}

/* ─── Shimmer on product price ─── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.product-card:hover .product-card__price {
  background: linear-gradient(
    90deg,
    var(--text) 0%,
    var(--gold-light) 35%,
    #fff8e8 50%,
    var(--gold-light) 65%,
    var(--text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ─── Smoke wisps on diffuser cards ─── */
.dv__smoke {
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.5s;
}
.product-card:hover .dv__smoke { opacity: 1; }

.dv__wisp {
  border-radius: 40% 60% 60% 40% / 0% 0% 100% 100%;
  transform-origin: bottom center;
  animation: wispRise var(--wisp-dur, 3s) ease-in-out infinite;
  animation-play-state: paused;
  background: linear-gradient(to top,
    rgba(200, 185, 160, 0.35) 0%,
    rgba(200, 185, 160, 0.12) 60%,
    transparent 100%
  );
}
.product-card:hover .dv__wisp { animation-play-state: running; }

.dv__wisp:nth-child(1) { width: 5px; height: 38px; --wisp-dur: 2.8s; animation-delay: 0s; }
.dv__wisp:nth-child(2) { width: 6px; height: 54px; --wisp-dur: 3.4s; animation-delay: 0.6s; }
.dv__wisp:nth-child(3) { width: 5px; height: 44px; --wisp-dur: 3.1s; animation-delay: 1.2s; }

@keyframes wispRise {
  0%   { transform: scaleX(1) translateY(0) rotate(0deg); opacity: 0.7; }
  25%  { transform: scaleX(1.5) translateY(-10px) rotate(5deg); }
  50%  { transform: scaleX(0.7) translateY(-22px) rotate(-6deg); opacity: 0.4; }
  75%  { transform: scaleX(1.4) translateY(-34px) rotate(4deg); opacity: 0.2; }
  100% { transform: scaleX(1) translateY(-50px) rotate(0deg); opacity: 0; }
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .products-grid--featured { grid-template-columns: repeat(2, 1fr); }
  .products-grid--featured .product-card:last-child { grid-column: 1 / -1; }
  .philosophy__inner { gap: 3rem; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process__steps::before { display: none; }
  .about-story__inner { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Navigation */
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero { padding-top: var(--nav-h); padding-bottom: 3rem; gap: 0; }
  .hero__content { padding: 0 1.5rem 1rem; }
  .hero__main-tagline { font-size: clamp(0.75rem, 3.8vw, 1.2rem); white-space: nowrap; letter-spacing: 0.07em; }
  .hero__scroll { display: none; }

  /* Hero visual */
  .hero__visual { height: 320px; margin-top: 1rem; }
  .ms-hand-svg { width: 160px; }
  .ms-candle-body { width: 54px; height: 120px; }
  .meeting-scene { gap: 0; }

  /* Products */
  .products-grid--featured { grid-template-columns: 1fr; }
  .products-grid--featured .product-card:last-child { grid-column: auto; }

  /* Philosophy */
  .philosophy__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy__quote { padding: 1.75rem; }
  .philosophy__quote blockquote { font-size: clamp(1.1rem, 5vw, 1.6rem); }

  /* Categories, Values, Story */
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; }
  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__visual { height: 280px; }

  /* Process & Ingredients */
  .process__steps { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter__inner { flex-direction: column; }
  .newsletter__form { width: 100%; max-width: 100%; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .section { padding: 4rem 0; }
  .section__header { margin-bottom: 2.5rem; }
  .features-strip__grid { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 32px); }

  /* Hero */
  .hero__main-tagline { font-size: clamp(0.68rem, 3.5vw, 1rem); letter-spacing: 0.06em; }
  .hero__subtitle { font-size: 0.85rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { min-width: 220px; justify-content: center; }
  .hero__visual { height: 260px; margin-top: 0.75rem; }

  /* Features strip: 2-column grid */
  .features-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    justify-items: start;
  }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .page-hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; }
  .page-hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }

  /* Philosophy */
  .philosophy__quote { padding: 1.25rem; }

  /* Categories: 1 column */
  .categories__grid { grid-template-columns: 1fr; }

  /* Value cards */
  .value-card { padding: 1.5rem; }

  /* Ingredient items */
  .ingredient-item { padding: 1.25rem 1.5rem; gap: 1rem; }

  /* About visual */
  .about-story__visual { height: 220px; }

  /* Footer */
  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer { padding: 3.5rem 0 2rem; }

  /* Catalog & product cards */
  .catalog-filters__inner { gap: 0.35rem; }
  .product-card__info { padding: 1rem 1.25rem 1.25rem; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 24px); }
  .hero__main-tagline { font-size: 0.9rem; letter-spacing: 0.06em; }
  .hero__visual { height: 200px; margin-top: 0.5rem; }
  .btn { padding: 0.8rem 1.25rem; font-size: 0.7rem; }
  .section { padding: 3rem 0; }
  .hero__visual { height: 180px; }
}

/* ─── Lightbox Gallery ─── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(5,4,3,0.94);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox__img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
  display: block;
}
#lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: var(--text);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  padding: 0.4rem; opacity: 0.6; transition: opacity 0.2s;
}
#lightbox__close:hover { opacity: 1; }
#lightbox__prev, #lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); font-size: 1.8rem; cursor: pointer;
  width: 48px; height: 48px; display: flex; align-items: center;
  justify-content: center; transition: background 0.2s; padding: 0;
}
#lightbox__prev:hover, #lightbox__next:hover { background: rgba(255,255,255,0.14); }
#lightbox__prev { left: 1.5rem; }
#lightbox__next { right: 1.5rem; }
#lightbox__counter {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.2em; color: var(--text-3);
  font-family: var(--font-body);
}
.product-card__visual.js-gallery { cursor: zoom-in; }

@media (max-width: 768px) {
  #lightbox__prev, #lightbox__next { display: none; }
  #lightbox__img { max-width: 95vw; max-height: 80vh; }
  #lightbox__close { top: 1rem; right: 1rem; font-size: 2rem; opacity: 0.9; }
  #lightbox__counter { font-size: 0.75rem; bottom: 1.5rem; }
}

/* ─── Telegram button ─── */
.btn--tg {
  background: transparent;
  border: 1px solid rgba(38,169,224,0.5);
  color: #29b5e8;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.btn--tg::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2329b5e8'%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.894 8.221-1.97 9.28c-.145.658-.537.818-1.084.508l-3-2.21-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.12L7.88 13.67l-2.96-.924c-.643-.204-.657-.643.136-.953l11.57-4.461c.537-.194 1.006.131.268.889z'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
}
.btn--tg:hover {
  background: rgba(38,169,224,0.1);
  border-color: #29b5e8;
  color: #29b5e8;
}
@media (max-width: 768px) {
  .nav__actions .btn--tg { display: none; }
}
