/* ═══════════════════════════════════════════════════════════
   V.AROMA — STYLES.CSS
   Brand-faithful, mobile-first, 3D e-commerce stylesheet
   Palette: Putty · Chalk · Ink · Graphite · Mist
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand Colours */
  --ink:       #1A1A1A;
  --graphite:  #4A4A4A;
  --putty:     #E8E0D0;
  --chalk:     #F5F0E8;
  --mist:      #C8B89A;
  --warm-mid:  #D4C8B0;
  --cream:     #FAF6EF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(26,26,26,0.06);
  --shadow-md:  0 8px 32px rgba(26,26,26,0.10);
  --shadow-lg:  0 20px 60px rgba(26,26,26,0.14);
  --shadow-3d:  0 30px 80px rgba(26,26,26,0.18);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   0.2s;
  --dur-mid:    0.4s;
  --dur-slow:   0.6s;

  /* Layout */
  --max-w: 1280px;
  --nav-h: 64px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.section-title em {
  font-style: italic;
  color: var(--graphite);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--graphite);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  transition: all var(--dur-mid) var(--ease);
  white-space: nowrap;
}

.btn--outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--chalk);
}

.btn--ghost {
  border: 1px solid transparent;
  color: var(--chalk);
  background: transparent;
}
.btn--ghost:hover {
  border-color: rgba(245,240,232,0.5);
}

.btn--filled {
  background: var(--ink);
  color: var(--chalk);
  border: 1px solid var(--ink);
}
.btn--filled:hover {
  background: var(--graphite);
  border-color: var(--graphite);
}

.btn--sm {
  font-size: 0.65rem;
  padding: 0.55rem 1.2rem;
}

.btn--full { width: 100%; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.nav.scrolled {
  background: var(--putty);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--chalk);
  transition: color var(--dur-mid) var(--ease);
  z-index: 2;
}

.nav.scrolled .nav__logo { color: var(--ink); }

.nav__links {
  display: none;
  gap: var(--sp-8);
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--dur-mid) var(--ease);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--chalk); }

.nav.scrolled .nav__link { color: var(--graphite); }
.nav.scrolled .nav__link:hover { color: var(--ink); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--chalk);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.nav.scrolled .nav__icon { color: var(--ink); }
.nav__icon:hover { opacity: 0.7; }

.nav__cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.6rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--dur-fast) var(--ease);
}

.nav__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.nav.scrolled .nav__cart-count {
  background: var(--ink);
  color: var(--chalk);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 2;
}

.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--chalk);
  transition: all var(--dur-mid) var(--ease);
  transform-origin: center;
}

.nav.scrolled .nav__hamburger span { background: var(--ink); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--putty);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-mid) var(--ease);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--warm-mid);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
}

/* ── Grainient canvas background ── */
.hero__grainient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 1200px;
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #D4C8B0, transparent);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C8B89A, transparent);
  bottom: 10%; left: -5%;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #E8E0D0, transparent);
  top: 40%; left: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* 3D Hero Card */
.hero__card-3d {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(340px, 42vw);
  aspect-ratio: 3/4;
  perspective: 800px;
  display: none;
}

.hero__card-inner {
  width: 100%; height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.1s linear;
  will-change: transform;
  position: relative;
}

.hero__card-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}

.hero__card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,184,154,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: var(--sp-4);
  transition-delay: 0.1s;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--chalk);
  margin-bottom: var(--sp-6);
  transition-delay: 0.2s;
}

.hero__title em {
  font-style: italic;
  color: var(--mist);
}

.hero__sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: var(--sp-8);
  transition-delay: 0.3s;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  transition-delay: 0.4s;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(245,240,232,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--mist);
  padding: var(--sp-4) 0;
  overflow: hidden;
  border-top: 1px solid rgba(200,184,154,0.15);
  border-bottom: 1px solid rgba(200,184,154,0.15);
}

.marquee__track {
  display: flex;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.marquee__dot {
  color: var(--mist);
  opacity: 0.4;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SHOP ───────────────────────────────────────────────── */
.shop {
  padding: var(--sp-20) 0;
  background: var(--cream);
}

/* Filter tabs */
.shop__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-12);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--warm-mid);
  color: var(--graphite);
  background: transparent;
  transition: all var(--dur-fast) var(--ease);
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

/* Product card */
.product-card {
  background: var(--chalk);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* 3D flip scene */
.product-card__scene {
  perspective: 900px;
  height: 280px;
  position: relative;
}

.product-card__3d {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-out);
  cursor: pointer;
}

.product-card:hover .product-card__3d {
  transform: rotateY(180deg);
}

.product-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.product-card__face--front img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.product-card:hover .product-card__face--front img {
  transform: scale(1.04);
}

.product-card__face--back {
  transform: rotateY(180deg);
  background: var(--putty);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.product-card__back-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
}

.product-card__notes-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--graphite);
}

.product-card__notes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.product-card__notes span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink);
}

.product-card__burn {
  font-size: 0.7rem;
  color: var(--graphite);
  letter-spacing: 0.05em;
}

/* Badge */
.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.product-card__badge--new {
  background: var(--mist);
  color: var(--ink);
}

/* Card info */
.product-card__info {
  padding: var(--sp-5) var(--sp-5) var(--sp-5);
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.product-card__desc {
  font-size: 0.82rem;
  color: var(--graphite);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* Hidden cards (filter) */
.product-card.hidden {
  display: none;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: var(--sp-20) 0;
  background: var(--putty);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.about__visual {
  position: relative;
  padding: 0 var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.about__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.95);
}

.about__img-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

/* Stat cards */
.about__stat-card {
  position: absolute;
  background: var(--chalk);
  border: 1px solid var(--warm-mid);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 100px;
}

.about__stat-card--1 {
  bottom: var(--sp-6);
  left: var(--sp-3);
}

.about__stat-card--2 {
  top: var(--sp-6);
  right: var(--sp-3);
}

.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.about__stat-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: var(--sp-1);
}

/* About content */
.about__content {
  padding: 0 var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.about__body {
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: var(--sp-5);
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin: var(--sp-8) 0;
}

.about__pillar {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.about__pillar-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--warm-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
}

.about__pillar strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.about__pillar p {
  font-size: 0.82rem;
  color: var(--graphite);
  line-height: 1.6;
}

/* ─── SCENTS ─────────────────────────────────────────────── */
.scents {
  padding: var(--sp-20) 0;
  background: var(--cream);
}

/* Pyramid */
.scents__pyramid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--sp-16);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.scents__tier {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-bottom: 1px solid var(--warm-mid);
  transition: background var(--dur-fast) var(--ease);
}

.scents__tier:last-child { border-bottom: none; }

.scents__tier--top  { background: var(--chalk); }
.scents__tier--mid  { background: var(--putty); }
.scents__tier--base { background: var(--warm-mid); }

.scents__tier:hover { filter: brightness(0.97); }

.scents__tier-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.scents__tier-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--graphite);
  margin-top: var(--sp-1);
}

.scents__ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.scent-pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 100px;
  transition: all var(--dur-fast) var(--ease);
}

.scent-pill:hover {
  background: var(--ink);
  color: var(--chalk);
}

/* 3D Cube */
.scents__feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
  align-items: center;
}

.scents__cube-wrap {
  perspective: 800px;
  width: min(260px, 70vw);
  aspect-ratio: 1;
}

.scents__cube {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 12s linear infinite;
}

@keyframes cubeRotate {
  from { transform: rotateY(0deg) rotateX(8deg); }
  to   { transform: rotateY(360deg) rotateX(8deg); }
}

.scents__cube-face {
  position: absolute;
  width: 100%; height: 100%;
  overflow: hidden;
  border: 2px solid rgba(200,184,154,0.3);
}

.scents__cube-face img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.9);
}

.scents__cube-face--front  { transform: translateZ(calc(min(260px, 70vw) / 2)); }
.scents__cube-face--back   { transform: rotateY(180deg) translateZ(calc(min(260px, 70vw) / 2)); }
.scents__cube-face--right  { transform: rotateY(90deg)  translateZ(calc(min(260px, 70vw) / 2)); }
.scents__cube-face--left   { transform: rotateY(-90deg) translateZ(calc(min(260px, 70vw) / 2)); }

.scents__feature-text {
  text-align: center;
  max-width: 480px;
}

.scents__feature-text h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.scents__feature-text h3 em {
  font-style: italic;
  color: var(--graphite);
}

.scents__feature-text p {
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: var(--sp-20) 0;
  background: var(--ink);
  overflow: hidden;
}

.testimonials .section-eyebrow { color: var(--mist); }
.testimonials .section-title   { color: var(--chalk); }

.testimonials__track {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--sp-4);
  cursor: grab;
}

.testimonials__track::-webkit-scrollbar { display: none; }
.testimonials__track.dragging { cursor: grabbing; }

.testimonial-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(200,184,154,0.2);
  border-radius: var(--radius);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: background var(--dur-mid) var(--ease);
}

.testimonial-card:hover {
  background: rgba(245,240,232,0.08);
}

.testimonial-card__stars {
  color: var(--mist);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.85);
  flex: 1;
}

.testimonial-card cite {
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}

.testimonials__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(200,184,154,0.3);
  transition: all var(--dur-fast) var(--ease);
}

.testimonials__dot--active {
  background: var(--mist);
  width: 20px;
  border-radius: 3px;
}

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  padding: var(--sp-20) 0;
  background: var(--putty);
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
  align-items: flex-start;
}

.newsletter__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.newsletter__title em {
  font-style: italic;
  color: var(--graphite);
}

.newsletter__text p {
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.7;
  max-width: 400px;
}

.newsletter__form {
  width: 100%;
  max-width: 480px;
}

.newsletter__input-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.newsletter__input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: var(--sp-3) 0;
  outline: none;
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease);
}

.newsletter__input::placeholder { color: var(--graphite); opacity: 0.6; }
.newsletter__input:focus { border-color: var(--ink); }

.newsletter__note {
  font-size: 0.7rem;
  color: var(--graphite);
  margin-top: var(--sp-3);
  opacity: 0.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--chalk);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--chalk);
  display: block;
  margin-bottom: var(--sp-3);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: var(--sp-5);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,184,154,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  transition: all var(--dur-fast) var(--ease);
}

.footer__social-link:hover {
  border-color: var(--mist);
  color: var(--chalk);
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  transition: color var(--dur-fast) var(--ease);
}

.footer__links a:hover { color: var(--chalk); }

.footer__bottom {
  border-top: 1px solid rgba(200,184,154,0.15);
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 0.72rem;
  color: rgba(245,240,232,0.4);
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal a {
  color: rgba(245,240,232,0.4);
  transition: color var(--dur-fast) var(--ease);
}

.footer__legal a:hover { color: var(--chalk); }

/* ─── CART DRAWER ────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100%;
  background: var(--chalk);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-3d);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid var(--warm-mid);
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  transition: color var(--dur-fast) var(--ease);
}

.cart-drawer__close:hover { color: var(--ink); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  height: 100%;
  text-align: center;
  color: var(--graphite);
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--warm-mid);
}

.cart-item__name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.cart-item__qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--warm-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease);
}

.cart-item__qty-btn:hover {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
}

.cart-item__qty-num {
  font-size: 0.85rem;
  min-width: 20px;
  text-align: center;
}

.cart-item__price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  min-width: 70px;
  text-align: right;
}

.cart-drawer__footer {
  padding: var(--sp-6);
  border-top: 1px solid var(--warm-mid);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.cart-drawer__note {
  font-size: 0.7rem;
  color: var(--graphite);
  text-align: center;
  opacity: 0.7;
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-mid) var(--ease);
  z-index: 2000;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── TABLET (≥ 640px) ───────────────────────────────────── */
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter__input-wrap {
    flex-direction: row;
  }

  .newsletter__input {
    flex: 1;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__pillars {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about__pillar {
    flex: 1 1 calc(50% - var(--sp-4));
  }
}

/* ─── DESKTOP (≥ 1024px) ─────────────────────────────────── */
@media (min-width: 1024px) {
  :root { --nav-h: 72px; }

  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
  .nav__mobile { display: none !important; }

  .hero__card-3d { display: block; }

  .hero__content {
    max-width: 55%;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about {
    flex-direction: row;
    align-items: center;
    padding: var(--sp-24) var(--sp-6);
    gap: var(--sp-16);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .about__visual,
  .about__content {
    flex: 1;
    padding: 0;
  }

  .about__pillars {
    flex-direction: column;
  }

  .about__pillar {
    flex: none;
  }

  .scents__feature {
    flex-direction: row;
    gap: var(--sp-16);
    align-items: center;
  }

  .scents__feature-text {
    text-align: left;
    flex: 1;
  }

  .scents__cube-wrap {
    flex-shrink: 0;
  }

  .newsletter__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-16);
  }

  .newsletter__text {
    flex: 1;
  }

  .newsletter__form {
    flex: 1;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .testimonial-card {
    flex: 0 0 360px;
  }
}

/* ─── LARGE DESKTOP (≥ 1280px) ──────────────────────────── */
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .scents__tier {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .scents__tier-label {
    min-width: 220px;
  }
}