/* ============================================
   MIMI — Stylesheet
   Editorial premium wellness aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color palette */
  --cream: #F5EFE6;
  --cream-deep: #ECE3D4;
  --cream-light: #FAF6EE;
  --warm-black: #1A1614;
  --warm-charcoal: #2D2622;
  --text-body: #3A322B;
  --text-muted: #756A5E;
  --sage: #9CAE99;
  --sage-deep: #758A72;
  --gold: #C8A062;
  --gold-deep: #A37D3D;
  --pink: #E5BFB6;
  --pink-deep: #C99488;
  --line: rgba(58, 50, 43, 0.12);
  --line-strong: rgba(58, 50, 43, 0.25);

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing scale */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4rem, 10vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
}

/* Subtle paper-grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.display-1 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.display-2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
}

.display-3 {
  font-family: var(--display);
  font-weight: 450;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.display-italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-body);
  max-width: 38ch;
}

p { max-width: 65ch; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 1080px;
}

section {
  position: relative;
  z-index: 2;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement {
  background: var(--warm-black);
  color: var(--cream);
  padding: 0.7rem var(--gutter);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  position: relative;
  z-index: 100;
}

.announcement strong {
  font-weight: 600;
  color: var(--gold);
  margin-left: 0.4rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  background: var(--cream);
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.2);
}

.nav-logo {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
  color: var(--warm-black);
}

.nav-logo sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 500;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-body);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--warm-black);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm-black);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--warm-black);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.nav-left,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cart {
  background: transparent;
  border: none;
  padding: 0.5rem;
  color: var(--warm-black);
  cursor: default;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-menu-toggle {
  display: none;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-menu-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--warm-black);
  transition: transform 0.3s var(--ease), opacity 0.2s ease, top 0.3s var(--ease);
}

.nav-menu-toggle span:nth-child(1) { top: 8px; }
.nav-menu-toggle span:nth-child(2) { top: 13.5px; }
.nav-menu-toggle span:nth-child(3) { top: 19px; }

.nav-menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 13px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 110;
  padding: 5rem var(--gutter) 2rem;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  background: transparent;
  border: none;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--warm-black);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

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

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-list a {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 350;
  letter-spacing: -0.01em;
  color: var(--warm-black);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-toggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  background: var(--warm-black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 22, 20, 0.15) 0%,
    rgba(26, 22, 20, 0) 30%,
    rgba(26, 22, 20, 0) 50%,
    rgba(26, 22, 20, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: clamp(3rem, 8vh, 6rem);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  color: var(--cream);
  max-width: 1440px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream-light);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.85;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(3.25rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream-light);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  max-width: 13ch;
  animation: fadeUp 1.2s var(--ease) 0.4s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 350;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream-light);
  opacity: 0.85;
  max-width: 42ch;
  line-height: 1.5;
  animation: fadeUp 1.2s var(--ease) 0.6s both;
}

.hero-cta-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s var(--ease) 0.8s both;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--warm-black);
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(26, 22, 20, 0.3);
}

.btn-primary-dark {
  background: var(--warm-black);
  color: var(--cream);
}

.btn-primary-dark:hover {
  background: var(--gold-deep);
  color: var(--cream);
}

.btn-ghost {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--cream);
  transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  background: var(--warm-black);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
  font-size: 0.8em;
}

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

/* ============================================
   PILLARS — THE SCIENCE
   ============================================ */

.pillars {
  padding: var(--section) 0;
  background: var(--cream-light);
}

.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.pillars-header .display-2 {
  max-width: 14ch;
}

.pillars-header .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar {
  display: flex;
  flex-direction: column;
}

.pillar-number {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 144;
}

.pillar h3 {
  font-family: var(--display);
  font-weight: 450;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--warm-black);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .pillars-header { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Tighter hero so there's less to scroll past */
  .hero { height: 70vh; min-height: 480px; max-height: 720px; }

  /* Pillars become swipeable horizontal cards */
  .pillars-grid {
    grid-template-columns: repeat(3, 82vw);
    grid-template-rows: 1fr;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding: 0.5rem var(--gutter) 1rem;
    margin-inline: calc(var(--gutter) * -1);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pillars-grid::-webkit-scrollbar { display: none; }
  .pillar { scroll-snap-align: start; }
  .pillar h3 { max-width: none; }
  /* Vertical-scroll IntersectionObserver doesn't fire for horizontally-offscreen cards */
  .pillar.fade-in { opacity: 1; transform: none; }
}

.pillars-dots {
  display: none;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.pillars-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm-black);
  opacity: 0.22;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.pillars-dots .dot.active {
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .pillars-dots { display: flex; }
}

/* ============================================
   PRODUCT PREVIEW
   ============================================ */

.product-preview {
  padding: var(--section) 0;
  background: var(--cream);
}

.product-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-preview-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border-radius: 8px;
  overflow: hidden;
}

.product-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-preview-content .eyebrow {
  margin-bottom: 1.5rem;
  display: block;
}

.product-preview-content h2 {
  margin-bottom: 1.75rem;
}

.product-preview-content .lead {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.price-original {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
}

.price-discounted {
  font-family: var(--display);
  font-weight: 500;
  font-size: 3rem;
  color: var(--warm-black);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144;
}

.price-badge {
  display: inline-block;
  background: var(--warm-black);
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .product-preview-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: var(--section) 0;
  background: var(--cream-light);
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream-deep);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-1 {
  grid-column: span 7;
  aspect-ratio: 5/4;
}

.gallery-item-2 {
  grid-column: span 5;
  aspect-ratio: 4/5;
}

.gallery-item-3 {
  grid-column: span 5;
  aspect-ratio: 4/5;
}

.gallery-item-4 {
  grid-column: span 7;
  aspect-ratio: 5/4;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { grid-column: span 1 !important; aspect-ratio: 4/5; }
}

/* ============================================
   FOUNDER NOTE
   ============================================ */

.founder-note {
  padding: var(--section) 0;
  background: var(--warm-black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.founder-note::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: var(--gutter);
  font-family: var(--display);
  font-style: italic;
  font-size: 24rem;
  line-height: 1;
  color: var(--cream);
  opacity: 0.04;
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.founder-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.founder-content .eyebrow {
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.founder-content h2 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream-light);
  margin-bottom: 2rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.founder-content h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.founder-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--cream-light);
  opacity: 0.78;
  margin-bottom: 1.25rem;
}

.founder-signature {
  margin-top: 2.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* ============================================
   FOOTER CTA
   ============================================ */

.footer-cta {
  padding: var(--section) 0;
  background: var(--cream);
  text-align: center;
}

.footer-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.footer-cta h2 {
  margin-bottom: 1.5rem;
}

.footer-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto 2.5rem;
  max-width: 48ch;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: var(--section) 0;
  background: var(--cream-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  font-family: var(--display);
  font-weight: 450;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  color: var(--warm-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--gold-deep);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
  font-family: var(--display);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.75rem 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 65ch;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--warm-black);
  color: var(--cream);
  padding: 5rem var(--gutter) 2rem;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.15);
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--cream-light);
  opacity: 0.65;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--cream-light);
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  max-width: 1440px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--cream-light);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: inherit;
  transition: opacity 0.2s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-left { flex-direction: column; gap: 0.75rem; }
  .footer-legal { justify-content: center; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: var(--section) 0;
  background: var(--cream);
}

.legal-page .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page .legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.legal-page .legal-summary {
  background: var(--cream-light);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  border-radius: 0 6px 6px 0;
}

.legal-page .legal-summary strong {
  color: var(--warm-black);
}

.legal-page h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  color: var(--warm-black);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.legal-page h3 {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--warm-black);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.legal-page a:hover {
  color: var(--warm-black);
}

.legal-page strong {
  font-weight: 600;
  color: var(--warm-black);
}

.legal-page code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: var(--cream-light);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.legal-page .legal-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-page .legal-back a {
  text-decoration: none;
  font-weight: 500;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

.product-page {
  padding: 3rem 0 var(--section);
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-image-main {
  grid-column: span 2;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-thumb {
  aspect-ratio: 1;
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.product-image-thumb:hover {
  transform: translateY(-2px);
}

.product-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  position: sticky;
  top: 6rem;
}

.product-info .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.product-info h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.25rem, 7vw, 5.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--warm-black);
  margin-bottom: 1.75rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.product-info .product-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
}

.product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}

.product-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.product-name-row h1 {
  margin-bottom: 0;
}

.product-name-row .price-row {
  margin-bottom: 0;
  flex-shrink: 0;
}

.product-price-group {
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .product-price-group {
    padding-top: 0;
    margin-top: -1rem;
  }
}

.product-price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.product-price-group .price-row {
  margin-bottom: 0;
}

.product-price-group .price-original {
  font-size: 1rem;
  color: var(--text-muted);
}

.product-price-group .price-discounted {
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text-body);
}

.product-price-group .price-badge {
  margin-bottom: 0;
}

.product-buy-block {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.product-buy-block .buy-now-btn {
  margin-bottom: 0;
}

.sold-out-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.sold-out-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--pink-deep);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.buy-now-btn {
  width: 100%;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--warm-black);
  color: var(--cream);
  padding: 1.25rem 2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.buy-now-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(26, 22, 20, 0.4);
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-feature {
  padding: 0.85rem 1rem;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-feature::before {
  content: '✓';
  color: var(--gold-deep);
  font-weight: 700;
}

.product-detail-section {
  margin-top: 2rem;
}

.product-detail-section details {
  border-bottom: 1px solid var(--line);
}

.product-detail-section summary {
  padding: 1.25rem 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.product-detail-section summary::-webkit-details-marker {
  display: none;
}

.product-detail-section summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}

.product-detail-section details[open] summary::after {
  transform: rotate(45deg);
}

.product-detail-content {
  padding: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.product-detail-content ul {
  list-style: none;
  padding: 0;
}

.product-detail-content li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.product-detail-content li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--gold-deep);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-info { position: static; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  padding: 6rem 0 4rem;
  background: var(--cream-light);
  text-align: center;
}

.about-hero .eyebrow {
  display: block;
  margin-bottom: 1.5rem;
}

.about-hero h1 {
  max-width: 14ch;
  margin: 0 auto 2rem;
}

.about-hero .lead {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.about-section {
  padding: var(--section) 0;
  background: var(--cream);
}

.about-section.alt {
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.about-grid.reverse .about-text {
  order: 2;
}

.about-image {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold-deep);
}

.about-text h2 {
  margin-bottom: 1.75rem;
  max-width: 16ch;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

@media (max-width: 900px) {
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid.reverse .about-text { order: unset; }
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--cream-light);
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--warm-black);
  transition: all 0.3s var(--ease);
}

.modal-close:hover {
  background: var(--warm-black);
  color: var(--cream);
}

.modal-eyebrow {
  display: inline-block;
  background: var(--warm-black);
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.modal h2 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--warm-black);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.modal h2 em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold-deep);
}

.modal p.modal-sub {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-primary label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-black);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.field-primary label::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7em;
}

.field-primary input {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--warm-black);
  border-radius: 100px;
  background: var(--cream-light);
  color: var(--warm-black);
  transition: all 0.3s var(--ease);
}

.field-primary input:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(200, 160, 98, 0.15);
}

.field-secondary {
  margin-top: 0.5rem;
}

.field-secondary label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: block;
}

.field-secondary input {
  font-family: var(--body);
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: transparent;
  color: var(--text-body);
  width: 100%;
  transition: all 0.3s var(--ease);
}

.field-secondary input:focus {
  outline: none;
  border-color: var(--text-muted);
  background: var(--cream);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.75rem 0 0.5rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--warm-black);
}

.modal-submit {
  margin-top: 0.75rem;
  width: 100%;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--warm-black);
  color: var(--cream);
  padding: 1.15rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.modal-submit:hover:not(:disabled) {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-success {
  text-align: center;
  padding: 1rem 0;
  display: none;
}

.modal-success.active {
  display: block;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--warm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: var(--display);
}

.modal-success h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--warm-black);
}

.modal-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.6;
}

.modal-error {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--pink-deep);
  text-align: center;
  display: none;
}

.modal-error.active {
  display: block;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
