/* ============================================================
   BLOOM BOTANICALS — Design System
   Palette: Bone / Sage / Blush / Gold
   Type: Cormorant Garamond (serif display) + DM Sans (body)
   ============================================================ */

/* --- TOKENS --- */
:root {
  /* Color */
  --bone:       #f5f1eb;
  --bone-deep:  #ede8df;
  --cream:      #faf8f4;
  --sage:       #7a9985;
  --sage-light: #a8c1b0;
  --sage-dark:  #4e7060;
  --blush:      #d4a8a0;
  --blush-light:#ecddd9;
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --bark:       #4a3728;
  --bark-mid:   #7a5c47;
  --text-base:  #2c2418;
  --text-mid:   #6b5847;
  --text-muted: #9a8878;
  --text-inv:   #f5f1eb;
  --border:     rgba(74, 55, 40, 0.12);
  --border-mid: rgba(74, 55, 40, 0.2);

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.6875rem;  /* 11px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.375rem;   /* 22px */
  --text-xl:   1.75rem;    /* 28px */
  --text-2xl:  2.25rem;    /* 36px */
  --text-3xl:  3rem;       /* 48px */
  --text-4xl:  4rem;       /* 64px */
  --text-5xl:  5.25rem;    /* 84px */

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

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast: 180ms;
  --dur-base: 300ms;
  --dur-slow: 500ms;

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

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

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-base);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--bark);
  color: var(--cream);
  padding: var(--sp-2) var(--sp-4);
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  font-size: var(--text-sm);
}
.skip-link:focus { top: 0; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--bark);
  color: var(--cream);
  padding: 1rem 2rem;
}
.btn-primary:hover {
  background: var(--text-base);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2rem;
  border: 1px solid rgba(245, 241, 235, 0.5);
}
.btn-ghost:hover {
  background: rgba(245, 241, 235, 0.1);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--bark);
  padding: 1rem 2rem;
  border: 1px solid var(--border-mid);
}
.btn-outline:hover {
  background: var(--bark);
  color: var(--cream);
}

.btn-text {
  background: transparent;
  color: var(--sage-dark);
  padding: 0;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-text:hover { color: var(--bark); }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: var(--sage-dark);
  color: var(--cream);
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  font-weight: 400;
}

.announce-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: var(--sp-2);
  transition: color var(--dur-fast);
}
.announce-link:hover { color: var(--cream); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-base);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(44, 36, 24, 0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; gap: var(--sp-6); }

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--dur-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover {
  color: var(--bark);
}
.nav-link:hover::after { width: 100%; }

.nav-link:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.nav-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1px;
  transition: opacity var(--dur-fast);
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.logo-bloom {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--bark);
  text-transform: uppercase;
  line-height: 1;
}

.logo-botanicals {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1;
}

.nav-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: var(--sp-1);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  transition: color var(--dur-fast);
  position: relative;
}
.nav-cart-btn:hover { color: var(--bark); }
.nav-cart-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.cart-count {
  font-size: var(--text-xs);
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--sage);
  color: var(--cream);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -4px;
  line-height: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  color: var(--bark);
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: all var(--dur-base) var(--ease-out);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100dvh;
  background: var(--cream);
  z-index: 200;
  padding: var(--sp-16) var(--sp-8) var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  border-left: 1px solid var(--border);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: var(--sp-2);
}
.mobile-menu-close:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--bark);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast), padding-left var(--dur-base) var(--ease-out);
}
.mobile-nav-link:hover {
  color: var(--sage-dark);
  padding-left: var(--sp-3);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 24, 0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow);
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: calc(100svh - var(--header-h) - 36px);
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bone-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    155deg,
    #e8e0d4 0%,
    #d4c8b4 25%,
    #c2b89a 50%,
    #a8b8a8 75%,
    #8fa899 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(122, 153, 133, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(212, 168, 160, 0.2) 0%, transparent 50%);
}

.hero-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(44, 36, 24, 0.55) 100%
  );
}

.hero-placeholder-inner {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 380px;
  background: linear-gradient(160deg, rgba(245, 241, 235, 0.25) 0%, rgba(184, 150, 90, 0.15) 100%);
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  border: 1px solid rgba(245, 241, 235, 0.2);
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-16) var(--sp-12) var(--sp-16);
  max-width: 640px;
  color: var(--cream);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-5);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 241, 235, 0.85);
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--sp-10);
  right: var(--sp-10);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(245, 241, 235, 0.6);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(245, 241, 235, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 241, 235, 0.8);
  animation: scrollPulse 2s ease-in-out 1.4s infinite;
}

.scroll-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   VALUES BAR
   ============================================================ */
.values-bar {
  background: var(--bone-deep);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
  overflow: hidden;
}

.values-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-mid);
}

.value-icon {
  color: var(--sage);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.value-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.value-divider {
  width: 1px;
  height: 16px;
  background: var(--border-mid);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--sp-4);
}

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

.section-header--center {
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 300;
  color: var(--bark);
  line-height: 1.1;
}

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

.section-title--center {
  max-width: 600px;
  margin-inline: auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--text-mid);
  font-weight: 300;
  margin-top: var(--sp-4);
  max-width: 500px;
}

.section-header--center .section-subtitle {
  margin-inline: auto;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-section {
  padding: var(--sp-24) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8) var(--sp-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone-deep);
  margin-bottom: var(--sp-4);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--dur-slow) var(--ease-out);
}

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

.product-img-icon {
  font-size: 2rem;
  color: rgba(245, 241, 235, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-base);
}

.product-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--gold);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-2);
  z-index: 1;
}

.product-badge--new {
  background: var(--sage-dark);
}

.product-badge--limited {
  background: var(--blush);
  color: var(--bark);
}

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bark);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-4);
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease-out);
  z-index: 2;
}

.product-card:hover .product-quick-add,
.product-card:focus-within .product-quick-add {
  transform: translateY(0);
}

.product-quick-add:hover { background: var(--text-base); }

.product-quick-add:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: -3px;
}

.product-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
}

.product-category {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--sage-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-rating {
  font-size: var(--text-xs);
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 3px;
}

.rating-count {
  color: var(--text-muted);
  font-size: 11px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
  transition: color var(--dur-fast);
}

.product-card:hover .product-name { color: var(--sage-dark); }

.product-desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: var(--sp-3);
  flex: 1;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: auto;
}

.product-price {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--bark);
}

.product-size {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.products-cta {
  text-align: center;
  margin-top: var(--sp-16);
}

/* ============================================================
   INGREDIENT SECTION
   ============================================================ */
.ingredient-section {
  background: var(--bone);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.ingredient-layout {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.ingredient-img-stack {
  position: relative;
  height: 580px;
}

.ingredient-img {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
}

.ingredient-img--main {
  top: 0;
  left: 0;
  width: 75%;
  height: 78%;
}

.ingredient-img--accent {
  bottom: 0;
  right: 0;
  width: 52%;
  height: 45%;
  border: 4px solid var(--cream);
}

.ingredient-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}

.ingredient-img-label {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(245, 241, 235, 0.9);
  letter-spacing: 0.04em;
}

.ingredient-heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: var(--sp-8);
}

.ingredient-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.ingredient-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.ingredient-body p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-8);
}

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

.ingredient-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.ingredient-name {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--bark);
  display: block;
  line-height: 1.3;
}

.ingredient-origin {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}

/* ============================================================
   RITUAL / HOW TO USE
   ============================================================ */
.ritual-section {
  background: var(--cream);
  padding: var(--sp-24) 0;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-4);
}

.ritual-step {
  display: flex;
  flex-direction: column;
}

.ritual-step-visual {
  position: relative;
  margin-bottom: var(--sp-5);
}

.ritual-step-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone-deep);
}

.ritual-img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}

.ritual-step:hover .ritual-img-placeholder {
  transform: scale(1.03);
}

.ritual-step-num {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(245, 241, 235, 0.7);
  line-height: 1;
}

.ritual-step-content {
  padding-top: var(--sp-2);
}

.ritual-step-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--bark);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.ritual-step-body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.ritual-step-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}
.ritual-step-link:hover { color: var(--bark); }
.ritual-step-link:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ============================================================
   SPOTLIGHT / BUNDLE
   ============================================================ */
.spotlight-section {
  background: var(--bone);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.spotlight-layout {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.spotlight-eyebrow {
  color: var(--gold);
}

.spotlight-heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}

.spotlight-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.spotlight-body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.spotlight-pricing-block {
  margin-bottom: var(--sp-8);
  padding: var(--sp-6) var(--sp-6);
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.spotlight-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.spotlight-price {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--bark);
  line-height: 1;
}

.spotlight-was {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: line-through;
}

.spotlight-save {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--sage-dark);
  background: rgba(122, 153, 133, 0.12);
  padding: var(--sp-1) var(--sp-2);
  border-radius: 2px;
}

.spotlight-subscribe-hint {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.spotlight-features li {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.spotlight-features li::before {
  content: '✓';
  color: var(--sage);
  font-size: 11px;
  font-weight: 500;
}

.spotlight-img {
  aspect-ratio: 1 / 1.1;
  background: var(--bone-deep);
  position: relative;
  overflow: hidden;
}

.spotlight-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8e0d4 0%, #d0c4b0 50%, #bfcfc2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  position: relative;
}

.spotlight-products-mock {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  width: 200px;
  justify-content: center;
}

.mock-product {
  border-radius: 50% 50% 40% 40% / 55% 55% 45% 45%;
  flex-shrink: 0;
}

.mock-1 {
  width: 44px;
  height: 80px;
  background: linear-gradient(160deg, #c9b49a, #a88c6e);
}
.mock-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(160deg, #afc3b3, #7a9985);
  border-radius: 50%;
}
.mock-3 {
  width: 44px;
  height: 80px;
  background: linear-gradient(160deg, #e3cdb0, #c8a87a);
}
.mock-4 {
  width: 60px;
  height: 60px;
  background: linear-gradient(160deg, #e8d0d0, #d4a8a0);
  border-radius: 50%;
}

.spotlight-img-label {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-style: italic;
  color: rgba(74, 55, 40, 0.6);
  text-align: center;
  position: absolute;
  bottom: var(--sp-6);
  left: 0;
  right: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--cream);
  padding: var(--sp-24) 0;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.agg-score {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
}

.agg-stars {
  color: var(--gold);
  font-size: var(--text-lg);
  letter-spacing: 2px;
}

.agg-count {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}

.review-card {
  background: var(--bone);
  padding: var(--sp-8);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--dur-base);
}

.review-card:hover { border-color: var(--border-mid); }

.review-card--featured {
  background: var(--bone-deep);
  border-color: var(--border-mid);
}

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

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--bark);
  display: block;
  margin-bottom: 2px;
}

.review-stars {
  color: var(--gold);
  font-size: var(--text-xs);
  letter-spacing: 1px;
}

.review-verified {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--sage-dark);
  letter-spacing: 0.04em;
}

.review-product {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--sage-dark);
  letter-spacing: 0.06em;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-3);
}

.review-text {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--bark);
  line-height: 1.55;
  flex: 1;
}

.review-date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 300;
  margin-top: auto;
}

.reviews-ugc-strip {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-10);
}

.ugc-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  text-align: center;
}

.ugc-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
}

.ugc-photo {
  aspect-ratio: 1;
  background: var(--bone-deep);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity var(--dur-base);
}

.ugc-photo:nth-child(1) { background: linear-gradient(135deg, #d4c8b4 0%, #bfcfc2 100%); }
.ugc-photo:nth-child(2) { background: linear-gradient(135deg, #e8e0d4 0%, #d4b8a8 100%); }
.ugc-photo:nth-child(3) { background: linear-gradient(135deg, #c8d8ca 0%, #afc3b3 100%); }
.ugc-photo:nth-child(4) { background: linear-gradient(135deg, #ecddd4 0%, #d4b8a8 100%); }
.ugc-photo:nth-child(5) { background: linear-gradient(135deg, #e3cdb0 0%, #c8a87a 100%); }

.ugc-photo:hover { opacity: 0.85; }
.ugc-photo:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ============================================================
   SUBSCRIBE & SAVE
   ============================================================ */
.subscribe-section {
  background: var(--bone);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.subscribe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.subscribe-eyebrow { color: var(--gold); }

.subscribe-heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}

.subscribe-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.subscribe-body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 460px;
}

.subscribe-perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.subscribe-perks li {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.perk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.subscribe-img {
  aspect-ratio: 1 / 1;
  background: var(--bone-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4e0d6 0%, #8fa899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.sub-cycle-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.85);
}

.sub-cycle-arrow {
  font-size: 3rem;
  color: rgba(245, 241, 235, 0.7);
  animation: rotateSlow 6s linear infinite;
}

.sub-cycle-savings {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--cream);
  font-weight: 300;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--bark);
  padding: var(--sp-20) 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.newsletter-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
}

.newsletter-heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}

.newsletter-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.newsletter-body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(245, 241, 235, 0.7);
  line-height: 1.75;
}

.newsletter-label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.6);
  margin-bottom: var(--sp-3);
}

.newsletter-input-row {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: rgba(245, 241, 235, 0.08);
  border: 1px solid rgba(245, 241, 235, 0.2);
  border-right: none;
  color: var(--cream);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  outline: none;
  transition: border-color var(--dur-base), background var(--dur-base);
  border-radius: 0;
  -webkit-appearance: none;
}

.newsletter-input::placeholder {
  color: rgba(245, 241, 235, 0.35);
}

.newsletter-input:focus {
  background: rgba(245, 241, 235, 0.12);
  border-color: rgba(245, 241, 235, 0.4);
}

.newsletter-submit {
  background: var(--gold);
  color: var(--bark);
  border-radius: 0;
  flex-shrink: 0;
  font-weight: 500;
}
.newsletter-submit:hover {
  background: var(--gold-light);
  transform: none;
}

.newsletter-privacy {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(245, 241, 235, 0.4);
  margin-top: var(--sp-3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bone-deep);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-20);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-20);
  margin-bottom: var(--sp-16);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--sp-4);
  transition: opacity var(--dur-fast);
}
.footer-logo:hover { opacity: 0.75; }
.footer-logo:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: var(--sp-6);
}

.footer-social {
  display: flex;
  gap: var(--sp-4);
}

.social-link {
  color: var(--text-muted);
  padding: var(--sp-1);
  display: flex;
  align-items: center;
  transition: color var(--dur-fast);
}
.social-link:hover { color: var(--bark); }
.social-link:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer-nav-heading {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: var(--sp-5);
}

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

.footer-link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
  transition: color var(--dur-fast);
  line-height: 1.4;
}
.footer-link:hover { color: var(--bark); }
.footer-link:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--sp-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-legal {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 300;
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-link-small {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast);
}
.footer-link-small:hover { color: var(--bark); }
.footer-link-small:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

/* ============================================================
   REAL PHOTOGRAPHY — image fit rules
   ============================================================ */

/* Hero */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  /* Preserve the original gradient overlay */
}

/* Overlay on top of hero image — matches old .hero-placeholder::after */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(44, 36, 24, 0.6) 100%
  );
  pointer-events: none;
}

/* Product cards */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}

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

/* Ingredient images */
.ingredient-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Ritual step images */
.ritual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}

.ritual-step:hover .ritual-img {
  transform: scale(1.03);
}

/* Spotlight bundle */
.spotlight-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subscribe visual */
.subscribe-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* UGC strip */
.ugc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity var(--dur-base);
}

.ugc-photo:hover .ugc-img {
  opacity: 0.85;
}

/* ============================================================
   SCROLL REVEAL (JS-controlled)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6) var(--sp-5);
  }

  .ingredient-layout,
  .spotlight-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .ingredient-img-stack {
    height: 420px;
  }

  .ritual-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8) var(--sp-6);
  }

  .subscribe-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .subscribe-visual {
    display: none;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

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

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }

  .reviews-grid article:last-child {
    display: none;
  }

  .ugc-photos {
    grid-template-columns: repeat(4, 1fr);
  }

  .ugc-photo:last-child { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }

  .container {
    padding-inline: var(--sp-5);
  }

  /* Nav */
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    padding-inline: var(--sp-4);
    gap: var(--sp-2);
  }

  .nav-links { display: none; }

  .nav-hamburger {
    display: flex;
    grid-column: 1;
  }

  .nav-logo {
    grid-column: 2;
    justify-self: center;
  }

  .nav-right {
    grid-column: 3;
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 520px;
    max-height: 700px;
    align-items: flex-end;
  }

  .hero-content {
    padding: var(--sp-10) var(--sp-5) var(--sp-10);
    max-width: 100%;
  }

  .hero-heading { font-size: clamp(2rem, 9vw, 3rem); }

  .hero-body { font-size: var(--text-base); }

  .hero-actions {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .hero-actions .btn { width: 100%; text-align: center; }

  .hero-scroll-indicator { display: none; }

  .break-desktop { display: none; }

  /* Values */
  .values-list {
    gap: var(--sp-3) var(--sp-4);
    justify-content: flex-start;
  }

  .value-divider { display: none; }

  /* Products */
  .products-section { padding: var(--sp-16) 0; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5) var(--sp-3);
  }

  .section-header { margin-bottom: var(--sp-8); }

  .section-title {
    font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  }

  .product-name { font-size: var(--text-md); }
  .product-desc { display: none; }

  /* Ingredients */
  .ingredient-section { padding: var(--sp-16) 0; }

  .ingredient-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .ingredient-img-stack { height: 300px; }

  .ingredient-heading {
    font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  }

  /* Ritual */
  .ritual-section { padding: var(--sp-16) 0; }

  .ritual-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6) var(--sp-3);
  }

  .ritual-step-body { display: none; }

  /* Spotlight */
  .spotlight-section { padding: var(--sp-16) 0; }

  .spotlight-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .spotlight-media {
    order: -1;
  }

  .spotlight-img {
    aspect-ratio: 16 / 9;
  }

  .spotlight-heading { font-size: clamp(var(--text-xl), 6vw, var(--text-2xl)); }

  /* Reviews */
  .reviews-section { padding: var(--sp-16) 0; }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .reviews-grid article:last-child { display: flex; }
  .reviews-grid article:nth-child(3) { display: none; }

  .reviews-aggregate { flex-direction: column; gap: var(--sp-2); }

  .ugc-photos { grid-template-columns: repeat(3, 1fr); }
  .ugc-photo:last-child,
  .ugc-photo:nth-child(4) { display: none; }

  /* Subscribe */
  .subscribe-section { padding: var(--sp-16) 0; }
  .subscribe-visual { display: none; }

  /* Newsletter */
  .newsletter-section { padding: var(--sp-16) 0; }

  .newsletter-inner { grid-template-columns: 1fr; gap: var(--sp-8); }

  .newsletter-input-row {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .newsletter-input { border-right: 1px solid rgba(245, 241, 235, 0.2); }

  .newsletter-submit { width: 100%; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }

  .footer-nav { grid-template-columns: 1fr 1fr; }

  .footer-nav-col:last-child { display: none; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .reviews-aggregate {
    gap: var(--sp-1);
  }
}

/* ============================================================
   FOCUS MANAGEMENT (keyboard users)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-eyebrow,
  .hero-heading,
  .hero-body,
  .hero-actions,
  .hero-scroll-indicator {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
