/* ===========================================================
   BURNISH & BLOOM — Editorial luxury system
   =========================================================== */

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

:root {
  /* Palette — locked */
  --black:        #0A0A0A;
  --off-black:    #1A1A1A;
  --gold:         #C6A664;
  --gold-light:   #D4BA82;
  --gold-deep:    #A8883E;
  --cream:        #F5F0E8;
  --cream-dark:   #E8E0D2;
  --warm-white:   #FDFBF7;
  --muted:        #8A8275;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --fast: 180ms;
  --medium: 450ms;
  --slow: 750ms;

  /* Spacing tokens — generous */
  --gutter: 24px;
  --margin: 56px;
  --section-pad: 140px;

  /* Typography */
  --display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --body: 'Outfit', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  background: var(--black);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ===========================================================
   GRAIN OVERLAY — subtle film texture on dark sections
   =========================================================== */
.grain::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

/* ===========================================================
   TYPE SCALE
   =========================================================== */
.h-hero {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.h-hero .italic { font-style: italic; font-weight: 300; }

.h-section {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.015em;
}

.h-card {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.t-large {
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.5;
  font-weight: 300;
}

.t-label {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.t-muted { color: var(--muted); }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.gold-deep { color: var(--gold-deep); }

/* ===========================================================
   LAYOUT
   =========================================================== */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--margin);
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section.dark { background: var(--black); color: var(--cream); }
.section.off  { background: var(--off-black); color: var(--cream); }
.section.cream { background: var(--cream); color: var(--black); }
.section.warm { background: var(--warm-white); color: var(--black); }
.section.gold-bar { background: var(--gold); color: var(--black); padding: 96px 0; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.0);
  backdrop-filter: blur(0);
  transition: background var(--medium) var(--ease), backdrop-filter var(--medium) var(--ease), padding var(--medium) var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav.on-light .nav-mark, .nav.on-light .nav-link, .nav.on-light .nav-cart { color: var(--black); }
.nav.on-light.scrolled { background: rgba(245, 240, 232, 0.9); }

.nav-mark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-mark .amp { font-style: italic; font-weight: 300; color: var(--gold); margin: 0 6px; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  transition: color var(--fast) var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); }

.nav-cart {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  display: flex; align-items: center; gap: 10px;
  transition: color var(--fast) var(--ease);
}
.nav-cart:hover { color: var(--gold); }
.nav-cart-count {
  display: inline-block;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  padding: 0 6px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 500;
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--fast) var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--cream); }

.btn-block { display: block; width: 100%; }

.btn:disabled, .btn[aria-disabled="true"] {
  border-color: rgba(245, 240, 232, 0.24);
  color: var(--muted);
  background: transparent;
  cursor: not-allowed;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-amp {
  position: absolute;
  top: 18%;
  right: -4%;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(360px, 55vw, 820px);
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  min-height: calc(100vh - 240px);
}

.hero-copy { padding-bottom: 40px; }
.hero-eyebrow { color: var(--gold); margin-bottom: 36px; }
.hero-headline { margin-bottom: 28px; }
.hero-tagline {
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: rgba(245, 240, 232, 0.85);
}
.hero-tagline .gold { font-weight: 500; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 78vh;
  max-height: 720px;
}

.hero-product-glow {
  position: absolute;
  inset: -10% -10% 0 -10%;
  background: radial-gradient(ellipse at center 60%, rgba(198, 166, 100, 0.18), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-1 { transition-delay: 0ms; }
.reveal-2 { transition-delay: 120ms; }
.reveal-3 { transition-delay: 240ms; }
.reveal-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-amp { transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ===========================================================
   BRAND STATEMENT
   =========================================================== */
.statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.statement-quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 48px;
}
.statement-sub { color: var(--muted); }

/* ===========================================================
   SECTION HEADERS
   =========================================================== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 96px;
}
.section-head .t-label { color: var(--gold); }
.section-head.centered { align-items: center; text-align: center; }
.section-head.cream-style .t-label { color: var(--gold-deep); }

/* ===========================================================
   PRODUCT CARDS
   =========================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  cursor: pointer;
}

.product-card-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(198,166,100,0.0) 100%);
  transition: background var(--medium) var(--ease);
  z-index: 1;
  pointer-events: none;
}

.product-card-visual.dark-bg { background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%); }
.product-card-visual.cream-bg { background: linear-gradient(180deg, #F8F4ED 0%, #EFE7D7 100%); }
.product-card-visual.amber-bg { background: linear-gradient(180deg, #1c1410 0%, #0A0A0A 100%); }

.product-card-visual svg {
  position: relative; z-index: 2;
  height: 78%;
  transition: transform var(--medium) var(--ease);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

.product-card-visual:hover svg { transform: scale(1.035) translateY(-4px); }
.product-card-visual:hover::before {
  background: radial-gradient(ellipse at center, rgba(198,166,100,0.14) 0%, transparent 70%);
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.product-card-type { color: var(--muted); }
.product-card.on-dark .product-card-type { color: var(--muted); }

.product-card-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.product-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 24px;
  max-width: 36ch;
}
.product-card.on-light .product-card-desc { color: rgba(10, 10, 10, 0.72); }

.product-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}
.product-card.on-light .product-card-foot { border-color: rgba(10, 10, 10, 0.08); }

.product-card-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
}
.product-card.on-light .product-card-price { color: var(--gold-deep); }

.product-card-add {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--fast) var(--ease);
  background: none;
  padding: 0;
}
.product-card.on-light .product-card-add { color: var(--gold-deep); }
.product-card-add:hover { color: var(--gold-light); }
.product-card.on-light .product-card-add:hover { color: var(--black); }

/* ===========================================================
   RITUAL STORY (home)
   =========================================================== */
.ritual-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.ritual-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.ritual-body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.78);
  max-width: 44ch;
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ritual-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.ritual-step-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
}
.ritual-step h4 {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ritual-step p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.78);
}

/* ===========================================================
   INGREDIENTS ROW
   =========================================================== */
.ingredients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  align-items: center;
}
.ingredient {
  flex: 1 1 0;
  text-align: center;
  padding: 0 24px;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--cream);
  position: relative;
  letter-spacing: -0.005em;
}
.ingredient + .ingredient::before {
  content: '·';
  position: absolute;
  left: -6px;
  color: var(--gold);
  opacity: 0.6;
}

/* ===========================================================
   GOLD BANNER
   =========================================================== */
.gold-banner {
  text-align: center;
}
.gold-banner-headline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 24px;
}
.gold-banner-sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.65);
}

/* ===========================================================
   EMAIL CAPTURE
   =========================================================== */
.email {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.email-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.email-help {
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 48px;
  font-size: 15px;
}
.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(10, 10, 10, 0.25);
}
.email-input {
  flex: 1;
  padding: 16px 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
}
.email-input::placeholder { color: rgba(10, 10, 10, 0.4); }
.email-submit {
  padding: 16px 8px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  transition: color var(--fast) var(--ease);
}
.email-submit:hover { color: var(--gold-deep); }
.email-success {
  display: none;
  font-size: 14px;
  color: var(--gold-deep);
  margin-top: 24px;
  font-style: italic;
}
.email-success.show { display: block; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 96px var(--margin) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand .nav-mark { font-size: 22px; margin-bottom: 16px; }
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: rgba(245, 240, 232, 0.6);
  font-size: 13px;
  transition: color var(--fast) var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); margin-left: 24px; transition: color var(--fast) var(--ease); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================================================
   CART DRAWER
   =========================================================== */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0);
  z-index: 200;
  pointer-events: none;
  transition: background 280ms var(--ease);
}
.cart-backdrop.open {
  background: rgba(10, 10, 10, 0.48);
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  color: var(--black);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 380ms var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.cart-head h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
}
.cart-close {
  font-size: 24px;
  color: var(--black);
  line-height: 1;
  padding: 4px;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-empty {
  padding: 80px 0;
  text-align: center;
}
.cart-empty p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  align-items: center;
}
.cart-item-vis {
  width: 80px; height: 100px;
  background: linear-gradient(180deg, #F8F4ED 0%, #EFE7D7 100%);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-vis svg { height: 80%; }
.cart-item-info h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-item-info .meta { font-size: 12px; color: var(--muted); }
.cart-item-price { font-family: var(--display); font-size: 18px; color: var(--gold-deep); }

.cart-foot {
  padding: 24px 32px 32px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}
.cart-totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 20px;
}
.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-actions .btn { padding: 14px; }
.cart-help {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ===========================================================
   SHOP PAGE
   =========================================================== */
.shop-head {
  padding: 200px var(--margin) 80px;
  text-align: left;
  background: var(--black);
}
.shop-head h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.shop-head .italic { color: var(--gold); }

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: baseline;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 80px;
}
.shop-filter-group {
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.shop-filter-group label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 12px;
}
.shop-filter {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  padding: 4px 0;
  margin-right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--fast) var(--ease);
}
.shop-filter:hover { color: var(--gold); }
.shop-filter.active {
  color: var(--gold);
}
.shop-filter.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
}

/* ===========================================================
   PRODUCT DETAIL (PDP)
   =========================================================== */
.pdp-hero {
  padding: 140px var(--margin) 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
  background: var(--black);
  min-height: 90vh;
}
.pdp-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: radial-gradient(ellipse at center 60%, rgba(198,166,100,0.10), transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.pdp-visual svg {
  height: 88%;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.6));
}
.pdp-info { padding-bottom: 48px; }
.pdp-eyebrow {
  color: var(--gold);
  margin-bottom: 32px;
}
.pdp-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.pdp-name .italic { font-style: italic; color: var(--gold); }

.pdp-type {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

.pdp-lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 48px;
  max-width: 48ch;
}

.variant-group { margin-bottom: 32px; }
.variant-group label {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.variant-options { display: flex; gap: 12px; }
.variant-option {
  flex: 1;
  padding: 16px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  background: transparent;
  color: var(--cream);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--fast) var(--ease);
  text-align: center;
}
.variant-option:hover { border-color: var(--gold); }
.variant-option.selected {
  border-color: var(--gold);
  background: rgba(198, 166, 100, 0.08);
  color: var(--gold);
}
.variant-option .v-size { display: block; font-family: var(--display); font-size: 20px; margin-bottom: 2px; }
.variant-option .v-price { display: block; font-size: 12px; color: var(--muted); }
.variant-option.selected .v-price { color: rgba(198, 166, 100, 0.7); }

.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
}
.pdp-price {
  font-family: var(--display);
  font-weight: 300;
  font-size: 40px;
  color: var(--gold);
  transition: opacity var(--fast) var(--ease);
}
.pdp-price.fade { opacity: 0; }
.pdp-price-vol { font-size: 13px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

.pdp-add-row {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.pdp-add-row .btn-primary { flex: 1; padding: 20px; font-size: 12px; }

.pdp-stock {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pdp-stock .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 8px; vertical-align: middle; }

/* Sticky ATC */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  padding: 16px var(--margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 90;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 180ms var(--ease);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}
.sticky-atc.show { transform: translateY(0); opacity: 1; }
.sticky-atc-info { display: flex; align-items: baseline; gap: 16px; }
.sticky-atc-name { font-family: var(--display); font-size: 22px; font-weight: 300; }
.sticky-atc-price { font-size: 14px; color: var(--gold); }
.sticky-atc .btn { padding: 14px 32px; }

/* PDP body sections */
.pdp-section { padding: 100px 0; }
.pdp-section.cream { background: var(--cream); color: var(--black); }
.pdp-section.off { background: var(--off-black); }

.pdp-block-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}
.pdp-block-grid h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.pdp-block-grid h2 .italic { color: var(--gold-deep); font-style: italic; }

.pdp-block-body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(10, 10, 10, 0.78);
  max-width: 56ch;
}
.pdp-section.off .pdp-block-body p { color: rgba(245, 240, 232, 0.78); }

.ingredient-list {
  list-style: none;
  margin-top: 32px;
}
.ingredient-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 15px;
  align-items: baseline;
}
.pdp-section.off .ingredient-list li { border-color: rgba(245, 240, 232, 0.08); }
.ingredient-list .inci { color: var(--muted); font-size: 12px; font-style: italic; display: block; margin-top: 2px; }
.ingredient-list .pct { font-family: var(--display); color: var(--gold-deep); }
.pdp-section.off .ingredient-list .pct { color: var(--gold); }

.pdp-ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.pdp-ritual-step .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.pdp-ritual-step h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold);
}
.pdp-ritual-step p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.78);
}

.pairs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
}

/* ===========================================================
   THE RITUAL PAGE
   =========================================================== */
.ritual-hero {
  padding: 200px var(--margin) 140px;
  text-align: left;
}
.ritual-hero-eyebrow { color: var(--gold); margin-bottom: 40px; }
.ritual-hero-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.93;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 14ch;
}
.ritual-hero-headline .italic { color: var(--gold); font-style: italic; }

.ritual-hero-lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: rgba(245, 240, 232, 0.85);
  max-width: 30ch;
}

.ritual-feature {
  padding: 120px 0;
  background: var(--cream);
  color: var(--black);
}
.ritual-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.ritual-feature-grid.reverse > :first-child { order: 2; }

.ritual-feature-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 220px;
  line-height: 0.85;
  color: var(--gold-deep);
  opacity: 0.5;
  margin-bottom: 24px;
}
.ritual-feature h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.ritual-feature h2 .italic { color: var(--gold-deep); font-style: italic; }
.ritual-feature p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.75);
  max-width: 50ch;
  margin-bottom: 16px;
}

.ritual-feature-visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #F8F4ED 0%, #EFE7D7 50%, #E0D4B8 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ritual-feature-visual svg { height: 78%; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.18)); }

.ritual-feature.dark { background: var(--off-black); color: var(--cream); }
.ritual-feature.dark p { color: rgba(245, 240, 232, 0.78); }
.ritual-feature.dark .ritual-feature-num { color: var(--gold); opacity: 0.4; }
.ritual-feature.dark .ritual-feature-visual { background: linear-gradient(135deg, #161616 0%, #0A0A0A 100%); }
.ritual-feature.dark .ritual-feature-visual svg { filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)); }

.ritual-pullquote {
  background: var(--black);
  color: var(--cream);
  padding: 180px var(--margin);
  text-align: center;
}
.ritual-pullquote blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 0 auto;
}
.ritual-pullquote blockquote .gold { color: var(--gold); }

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-hero {
  padding: 220px var(--margin) 140px;
}
.about-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 64px;
}
.about-hero h1 .italic { color: var(--gold); font-style: italic; }

.about-hero-lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: rgba(245, 240, 232, 0.78);
  max-width: 38ch;
}

.about-section {
  padding: 100px 0;
}
.about-section.cream { background: var(--cream); color: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}
.about-grid .t-label { color: var(--gold-deep); }
.about-section.dark .about-grid .t-label { color: var(--gold); }
.about-grid h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.about-grid h2 .italic { color: var(--gold-deep); font-style: italic; }
.about-section.dark .about-grid h2 .italic { color: var(--gold); }
.about-body p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 24px;
  max-width: 60ch;
}
.about-section.dark .about-body p { color: rgba(245, 240, 232, 0.78); }

/* ===========================================================
   MOBILE
   =========================================================== */
@media (max-width: 920px) {
  :root {
    --margin: 24px;
    --section-pad: 80px;
  }
  .nav { padding: 18px var(--margin); }
  .nav-links { display: none; }
  .nav-mark { font-size: 16px; }

  .hero { padding-top: 120px; padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .hero-product { height: 60vh; max-height: 520px; }
  .hero-amp { font-size: 70vw; top: 25%; right: -12%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; }

  .product-grid, .shop-grid { grid-template-columns: 1fr; gap: 56px; }
  .ritual-story { grid-template-columns: 1fr; gap: 48px; }
  .ritual-steps { gap: 32px; }
  .ingredients { flex-direction: column; gap: 16px; }
  .ingredient { padding: 4px 0; }
  .ingredient + .ingredient::before { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom > div:last-child a { margin: 0 12px; }

  .pdp-hero { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; padding-bottom: 60px; min-height: auto; }
  .pdp-block-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-ritual-steps { grid-template-columns: 1fr; gap: 32px; }
  .pairs-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-atc { padding: 12px var(--margin); }
  .sticky-atc-name { font-size: 16px; }
  .sticky-atc .btn { padding: 12px 20px; font-size: 10px; }

  .ritual-feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .ritual-feature-grid.reverse > :first-child { order: 0; }
  .ritual-feature-num { font-size: 140px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero { padding-top: 140px; padding-bottom: 80px; }

  .shop-head { padding: 140px var(--margin) 60px; }
  .shop-filters { gap: 24px; flex-direction: column; align-items: flex-start; }
  .shop-filter-group { flex-wrap: wrap; gap: 12px; }
}

/* ===========================================================
   APPLE-INSPIRED ADDITIONS (Phase 2)
   =========================================================== */

/* Product Sub-nav — sticky under main nav on PDPs */
.subnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.05);
  padding: 14px var(--margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 280ms var(--ease);
}
.subnav.show { transform: translateY(0); }

.subnav-product {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
}
.subnav-product .italic { color: var(--gold); font-style: italic; }

.subnav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.subnav-link {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  transition: color var(--fast) var(--ease);
  letter-spacing: 0.01em;
}
.subnav-link:hover { color: var(--gold); }

.subnav-buy {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 18px;
  transition: background var(--fast) var(--ease);
}
.subnav-buy:hover { background: var(--gold-light); }

/* "Get the highlights" tile gallery */
.highlights {
  padding: var(--section-pad) 0;
  background: var(--off-black);
}
.highlights-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 32px;
}
.highlights-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.highlights-head h2 .italic { color: var(--gold); font-style: italic; }

.highlights-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  margin: 0 calc(-1 * var(--margin));
  padding-left: var(--margin);
  padding-right: var(--margin);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
}
.highlights-row::-webkit-scrollbar { height: 6px; }
.highlights-row::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }
.highlights-row::-webkit-scrollbar-track { background: rgba(245, 240, 232, 0.04); }

.highlight-tile {
  flex: 0 0 360px;
  aspect-ratio: 3 / 4;
  background: var(--black);
  position: relative;
  scroll-snap-align: start;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.06);
  transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.highlight-tile:hover { border-color: rgba(198, 166, 100, 0.3); transform: translateY(-4px); }

.highlight-tile-eyebrow {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.highlight-tile-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.highlight-tile-headline .italic { color: var(--gold); font-style: italic; }

.highlight-tile-vis {
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.92;
}
.highlight-tile-vis svg { height: 100%; max-width: 100%; }

.highlight-tile-meta {
  position: relative;
  z-index: 2;
}

/* Big stat callout */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  margin: 80px 0;
}
.stats-row.on-light { border-color: rgba(10, 10, 10, 0.08); }
.stat {
  text-align: center;
}
.stat-value {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.on-light .stat-value { color: var(--gold-deep); }
.stat-value .italic { font-style: italic; }
.stat-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Feature section — Apple-style full-width focused section */
.feature {
  padding: calc(var(--section-pad) * 1.2) 0;
  position: relative;
}
.feature.dark { background: var(--black); color: var(--cream); }
.feature.off { background: var(--off-black); color: var(--cream); }
.feature.cream { background: var(--cream); color: var(--black); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-grid.reverse > :first-child { order: 2; }

.feature-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.feature.cream .feature-eyebrow { color: var(--gold-deep); }

.feature-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin-bottom: 32px;
  max-width: 14ch;
}
.feature-headline .italic { color: var(--gold); font-style: italic; }
.feature.cream .feature-headline .italic { color: var(--gold-deep); }

.feature-body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.78);
  max-width: 48ch;
}
.feature.cream .feature-body { color: rgba(10, 10, 10, 0.78); }
.feature-body p { margin-bottom: 20px; }
.feature-body strong { font-weight: 500; color: var(--cream); }
.feature.cream .feature-body strong { color: var(--black); }

.feature-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198, 166, 100, 0.10), transparent 70%);
}
.feature-visual svg {
  position: relative;
  height: 92%;
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.45));
}

/* Closer-look gallery (Apple's "Take a closer look" pattern) */
.closer-look {
  padding: var(--section-pad) 0;
  background: var(--off-black);
}
.closer-look-head {
  text-align: center;
  margin-bottom: 64px;
}
.closer-look-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.closer-look-card {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.05);
}
.closer-look-card .vis {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.closer-look-card .vis svg { height: 100%; opacity: 0.85; }
.closer-look-card .label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.closer-look-card .desc {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  position: relative;
  z-index: 2;
}

/* Compare module — three-up cards with shared rows (find-your-oil) */
.compare {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.compare-head {
  text-align: center;
  margin-bottom: 80px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.compare-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(245, 240, 232, 0.06);
  text-align: center;
  transition: border-color var(--medium) var(--ease), transform var(--medium) var(--ease);
}
.compare-card:hover { border-color: rgba(198, 166, 100, 0.3); transform: translateY(-4px); }

.compare-card-vis {
  aspect-ratio: 1 / 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: radial-gradient(ellipse at center, rgba(198, 166, 100, 0.06), transparent 70%);
}
.compare-card-vis svg { height: 92%; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)); }

.compare-card-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.compare-card-type {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.compare-rows {
  list-style: none;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.compare-rows li {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare-rows .key {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.compare-rows .val {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
}
.compare-rows .val.italic { color: var(--gold); font-style: italic; }

.compare-card-price {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  margin: 16px 0;
}

/* FAQ — Apple's expandable Q&A */
.faq {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--cream);
}
.faq-head {
  text-align: center;
  margin-bottom: 80px;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 28px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  background: none;
  padding: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--cream);
  cursor: pointer;
  transition: color var(--fast) var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--medium) var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: opacity var(--fast) var(--ease);
}
.faq-icon::before {
  top: 11px; left: 4px; right: 4px; height: 2px;
}
.faq-icon::after {
  left: 11px; top: 4px; bottom: 4px; width: 2px;
}
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--medium) var(--ease);
}
.faq-answer-inner {
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  max-width: 72ch;
}
.faq-answer-inner p { margin-bottom: 14px; }
.faq-item.open .faq-answer { max-height: 800px; }

/* Sustainability stat tiles */
.sustainability {
  padding: var(--section-pad) 0;
  background: var(--cream);
  color: var(--black);
}
.sustainability-head {
  text-align: center;
  margin-bottom: 80px;
}
.sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sust-tile {
  background: var(--warm-white);
  padding: 48px 36px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  text-align: center;
}
.sust-tile-stat {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.sust-tile h4 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sust-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.65);
}

/* Values pillars */
.values {
  padding: var(--section-pad) 0;
  background: var(--off-black);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.value-pillar {
  text-align: center;
}
.value-pillar-icon {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 32px;
}
.value-pillar h4 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.value-pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.7);
  max-width: 32ch;
  margin: 0 auto;
}

/* MOBILE adjustments */
@media (max-width: 920px) {
  .subnav { padding: 12px var(--margin); flex-wrap: wrap; gap: 12px; }
  .subnav-links { display: none; }
  .subnav-buy { font-size: 10px; padding: 7px 14px; }

  .highlights-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .highlight-tile { flex: 0 0 280px; padding: 28px; }
  .stats-row { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; margin: 56px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid.reverse > :first-child { order: 0; }
  .closer-look-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }
  .sust-grid { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 56px; }
}
