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

:root {
  /* Backgrounds — warm, soft, luxury-neutral */
  --bg: #faf6f1;        /* warm ivory, slightly warmer than pure white */
  --bg-cream: #f3ebe0;  /* subtle warm panel */
  --bg-rose: #f5e8e4;   /* blush-wash for gentle sections */
  --paper: #ffffff;     /* pure white for cards when contrast needed */

  /* Ink — text colors, warm not cool */
  --ink: #2d2420;       /* soft near-black, warm */
  --ink-2: #5c4d42;     /* body text, warm taupe-brown */
  --ink-3: #8a7968;     /* muted metadata, stone */
  --ink-4: #b8a898;     /* hairline borders, whispered */

  /* Accents — restrained, dual-tone */
  --rose: #c08a80;       /* dusty rose, main accent */
  --rose-deep: #9a6b62;  /* hover/pressed */
  --sage: #8a9c85;       /* secondary accent, botanical */
  --champagne: #c9a876;  /* small flourishes only */

  /* Sentiment */
  --pos: #5c7555;
  --neu: #8a7968;
  --neg: #a66961;

  /* Rules */
  --rule: #e8dccc;
  --rule-strong: #c9b8a0;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ================ HEADER (shared) ================ */
.site-header {
  padding: 22px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
}
.logo .amp {
  color: var(--rose);
  font-style: italic;
  margin: 0 -2px;
}
.nav {
  display: flex;
  gap: 36px;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--ink); }
.nav a.active {
  color: var(--ink);
  border-bottom-color: var(--rose);
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  background: var(--paper);
  font-size: 13px;
  color: var(--ink-3);
  min-width: 260px;
  cursor: text;
  transition: border-color 0.15s;
}
.search-pill:hover { border-color: var(--ink-3); }
.search-icon {
  width: 13px;
  height: 13px;
  border: 1.5px solid var(--ink-3);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1.5px;
  background: var(--ink-3);
  right: -4px;
  bottom: -1px;
  transform: rotate(45deg);
}

/* ================ HOMEPAGE HERO ================ */
.hero {
  padding: 80px 60px 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  background:
    radial-gradient(ellipse 600px 400px at 90% 50%, rgba(192, 138, 128, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 56px;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}
.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rose);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 100;
  margin-bottom: 28px;
}
.hero h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-search {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  padding: 6px 6px 6px 22px;
  display: flex;
  align-items: center;
  max-width: 480px;
  box-shadow: 0 4px 16px -8px rgba(45, 36, 32, 0.08);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
  background: transparent;
}
.hero-search input::placeholder { color: var(--ink-3); }
.hero-search button {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s;
}
.hero-search button:hover { background: var(--rose-deep); }

/* Hero visual */
.hero-visual {
  aspect-ratio: 4/5;
  position: relative;
  background: transparent;
}
.hero-shelf {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 95%, rgba(45,36,32,0.12) 0%, transparent 60%);
}
.hero-bottle-big {
  position: absolute;
  top: 8%; left: 36%;
  width: 28%; height: 76%;
  background: linear-gradient(180deg, #8b5a3c 0%, #a67450 30%, #8b5a3c 70%, #6d4530 100%);
  border-radius: 6px 6px 3px 3px;
  box-shadow:
    inset 3px 0 5px rgba(255,255,255,0.25),
    inset -3px 0 6px rgba(0,0,0,0.3),
    0 20px 36px -12px rgba(45,36,32,0.4);
  z-index: 2;
}
.hero-bottle-big::before {
  content: "";
  position: absolute;
  top: -7%; left: 22%;
  width: 56%; height: 12%;
  background: linear-gradient(180deg, #2d2420, #4a3b30);
  border-radius: 3px 3px 0 0;
}
.hero-bottle-big::after {
  content: "";
  position: absolute;
  top: 36%; left: 10%;
  width: 80%; height: 34%;
  background: linear-gradient(180deg, rgba(250,246,241,0.96), rgba(247,240,229,0.92));
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.06);
}
.hero-jar {
  position: absolute;
  top: 30%; left: 0;
  width: 36%; height: 44%;
  background: linear-gradient(180deg, #ede3d2 0%, #c9b89a 100%);
  border-radius: 4px;
  box-shadow:
    inset 3px 0 5px rgba(255,255,255,0.4),
    inset -3px 0 6px rgba(0,0,0,0.1),
    0 16px 32px -10px rgba(45,36,32,0.3);
  z-index: 1;
}
.hero-jar::before {
  content: "";
  position: absolute;
  top: -18%; left: -4%;
  width: 108%; height: 22%;
  background: linear-gradient(180deg, #c9a876 0%, #a08458 100%);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.hero-jar::after {
  content: "";
  position: absolute;
  top: 30%; left: 12%;
  width: 76%; height: 46%;
  background: rgba(250,246,241,0.6);
}
.hero-tube {
  position: absolute;
  bottom: 4%; right: 10%;
  width: 18%; height: 52%;
  background: linear-gradient(90deg, #c9938a 0%, #e8bcb0 50%, #b88078 100%);
  border-radius: 50% 50% 3px 3px / 8% 8% 3px 3px;
  box-shadow:
    inset 2px 0 3px rgba(255,255,255,0.4),
    inset -2px 0 3px rgba(0,0,0,0.15),
    0 14px 24px -8px rgba(45,36,32,0.35);
  z-index: 3;
}
.hero-tube::before {
  content: "";
  position: absolute;
  top: -3%; left: -4%;
  width: 108%; height: 18%;
  background: linear-gradient(180deg, #2d2420, #4a3b30);
  border-radius: 50% 50% 4px 4px / 40% 40% 4px 4px;
}
.hero-tube::after {
  content: "";
  position: absolute;
  top: 40%; left: 12%;
  width: 76%; height: 32%;
  background: rgba(250,246,241,0.92);
}
.hero-visual-caption {
  position: absolute;
  bottom: -32px;
  left: 0;
  font-family: 'Fraunces', serif;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}

/* ================ SECTION STYLES ================ */
.section {
  padding: 72px 60px;
  border-bottom: 1px solid var(--rule);
}
.section.tinted {
  background: var(--bg-cream);
}
.section-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "SOFT" 100;
}
.section-head h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.section-head .action {
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rose);
  font-weight: 500;
  transition: color 0.15s;
}
.section-head .action:hover { color: var(--rose); }

/* ================ TRENDING PRODUCTS ================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(45, 36, 32, 0.18);
}
.product-card .image {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(45,36,32,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #f7f0e5 0%, #ede0cf 100%);
}
.product-card .image.rose {
  background:
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(45,36,32,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #f8ebe6 0%, #eed5cd 100%);
}
.product-card .image.sage {
  background:
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(45,36,32,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #edf0e6 0%, #d4dcc8 100%);
}
.product-card .image.champagne {
  background:
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(45,36,32,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #f5ecd9 0%, #e2d0ad 100%);
}
.product-card .image.cream {
  background:
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(45,36,32,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #faf4ea 0%, #efe1cb 100%);
}

/* Product silhouettes */
.prod-bottle {
  position: absolute;
  top: 12%; left: 38%;
  width: 24%; height: 72%;
  background: linear-gradient(180deg, #5a4a3f 0%, #7a6556 50%, #5a4a3f 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow:
    inset 2px 0 3px rgba(255,255,255,0.2),
    inset -2px 0 4px rgba(0,0,0,0.25),
    0 12px 24px -8px rgba(45,36,32,0.3);
}
.prod-bottle::before {
  content: "";
  position: absolute;
  top: -8%; left: 20%;
  width: 60%; height: 14%;
  background: linear-gradient(180deg, #2d2420, #4a3b30);
  border-radius: 2px 2px 0 0;
  box-shadow: inset -1px 0 2px rgba(0,0,0,0.3);
}
.prod-bottle::after {
  content: "";
  position: absolute;
  top: 35%; left: 10%;
  width: 80%; height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.prod-bottle.amber {
  background: linear-gradient(180deg, #8b5a3c 0%, #a0704c 50%, #7a4e34 100%);
}
.prod-bottle.amber::before { background: linear-gradient(180deg, #3d2819, #5a3c28); }
.prod-bottle.rose-glass {
  background: linear-gradient(180deg, #c9938a 0%, #d6a8a0 50%, #b88078 100%);
}
.prod-bottle.rose-glass::before { background: linear-gradient(180deg, #8a5c58, #a47270); }
.prod-bottle.clear {
  background: linear-gradient(180deg, rgba(220,210,200,0.5) 0%, rgba(190,175,160,0.7) 50%, rgba(160,145,130,0.6) 100%);
}
.prod-bottle.clear::before { background: linear-gradient(180deg, #8a7968, #a89685); }

.prod-jar {
  position: absolute;
  top: 22%; left: 26%;
  width: 48%; height: 58%;
  background: linear-gradient(180deg, #ede3d2 0%, #d8c9b0 100%);
  border-radius: 3px 3px 4px 4px;
  box-shadow:
    inset 3px 0 4px rgba(255,255,255,0.4),
    inset -3px 0 6px rgba(0,0,0,0.08),
    0 14px 28px -10px rgba(45,36,32,0.3);
}
.prod-jar::before {
  content: "";
  position: absolute;
  top: -16%; left: -4%;
  width: 108%; height: 22%;
  background: linear-gradient(180deg, #2d2420 0%, #4a3b30 70%, #3a2e24 100%);
  border-radius: 4px;
  box-shadow:
    inset 2px 2px 3px rgba(255,255,255,0.1),
    0 2px 4px rgba(0,0,0,0.15);
}
.prod-jar::after {
  content: "";
  position: absolute;
  top: 28%; left: 12%;
  width: 76%; height: 48%;
  background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.prod-jar.dark {
  background: linear-gradient(180deg, #4a3b30 0%, #2d2420 100%);
}
.prod-jar.dark::after { background: rgba(255,255,255,0.88); }
.prod-jar.dark::before { background: linear-gradient(180deg, #c9a876, #a08458); }
.prod-jar.green {
  background: linear-gradient(180deg, #8a9c85 0%, #6d7f67 100%);
}
.prod-jar.green::after { background: rgba(255,255,255,0.85); }
.prod-jar.white {
  background: linear-gradient(180deg, #faf6f1 0%, #e8dccc 100%);
}
.prod-jar.white::before { background: linear-gradient(180deg, #c08a80, #9a6b62); }

.prod-tube {
  position: absolute;
  top: 10%; left: 42%;
  width: 16%; height: 78%;
  background: linear-gradient(90deg, #b8978a 0%, #d9b8ab 50%, #a68575 100%);
  border-radius: 50% 50% 3px 3px / 8% 8% 3px 3px;
  box-shadow:
    inset 2px 0 3px rgba(255,255,255,0.35),
    inset -2px 0 3px rgba(0,0,0,0.2),
    0 10px 20px -6px rgba(45,36,32,0.3);
}
.prod-tube::before {
  content: "";
  position: absolute;
  top: -3%; left: -5%;
  width: 110%; height: 18%;
  background: linear-gradient(180deg, #2d2420, #4a3b30);
  border-radius: 50% 50% 4px 4px / 40% 40% 4px 4px;
}
.prod-tube::after {
  content: "";
  position: absolute;
  top: 38%; left: 8%;
  width: 84%; height: 36%;
  background: rgba(250,246,241,0.88);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.prod-tube.black {
  background: linear-gradient(90deg, #1a1512 0%, #3d2f24 50%, #1a1512 100%);
}
.prod-tube.black::after { background: rgba(250,246,241,0.92); }
.prod-tube.black::before { background: linear-gradient(180deg, #c9a876, #a08458); }
.prod-tube.gold {
  background: linear-gradient(90deg, #a08458 0%, #d4b896 50%, #8a6f48 100%);
}
.prod-tube.gold::after { background: rgba(250,246,241,0.9); }

.prod-compact {
  position: absolute;
  top: 32%; left: 22%;
  width: 56%; height: 36%;
  background: linear-gradient(180deg, #2d2420 0%, #1a1512 100%);
  border-radius: 8px;
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,0.1),
    0 16px 32px -10px rgba(45,36,32,0.35);
}
.prod-compact::before {
  content: "";
  position: absolute;
  top: 48%; left: 0;
  width: 100%; height: 2px;
  background: rgba(0,0,0,0.25);
}
.prod-compact::after {
  content: "";
  position: absolute;
  top: 8%; left: 8%;
  width: 84%; height: 32%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 4px;
}
.prod-compact.rose-gold {
  background: linear-gradient(180deg, #d4a89a 0%, #a87868 100%);
}
.prod-compact.gold {
  background: linear-gradient(180deg, #c9a876 0%, #a08458 100%);
}

.product-card .creator-count {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--rule);
  z-index: 2;
}
.product-card .creator-count strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--rose-deep);
}
.product-card .info {
  padding: 20px 20px 22px;
}
.product-card .brand {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.product-card .name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
  font-variation-settings: "SOFT" 100;
}
.product-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.product-card .creators-avis {
  display: flex;
}
.product-card .avi {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -6px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.product-card .avi:first-child { margin-left: 0; }
.product-card .avi:nth-child(2) { background: linear-gradient(135deg, var(--champagne), #a08458); }
.product-card .avi:nth-child(3) { background: linear-gradient(135deg, var(--sage), #6d7f67); }
.product-card .avi:nth-child(4) { background: linear-gradient(135deg, #d4b8a8, #a8897a); }
.product-card .price {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* ================ CREATOR CHIPS ================ */
.creator-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.creator-chip {
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  padding: 8px 20px 8px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.creator-chip:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -8px rgba(192, 138, 128, 0.25);
}
.creator-chip .avi-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.creator-chip .avi-sm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.4), transparent 60%);
}
.creator-chip:nth-child(2) .avi-sm { background: linear-gradient(135deg, var(--champagne), #8a7250); }
.creator-chip:nth-child(3) .avi-sm { background: linear-gradient(135deg, var(--sage), #6d7f67); }
.creator-chip:nth-child(4) .avi-sm { background: linear-gradient(135deg, #d4b8a8, #907060); }
.creator-chip:nth-child(5) .avi-sm { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); }
.creator-chip:nth-child(6) .avi-sm { background: linear-gradient(135deg, var(--champagne), #8a7250); }
.creator-chip:nth-child(7) .avi-sm { background: linear-gradient(135deg, var(--sage), #6d7f67); }
.creator-chip:nth-child(8) .avi-sm { background: linear-gradient(135deg, #d4b8a8, #907060); }
.creator-chip:nth-child(9) .avi-sm { background: linear-gradient(135deg, #b8a09a, #8a7060); }
.creator-chip:nth-child(10) .avi-sm { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); }
.creator-chip:nth-child(11) .avi-sm { background: linear-gradient(135deg, var(--champagne), #8a7250); }
.creator-chip:nth-child(12) .avi-sm { background: linear-gradient(135deg, var(--sage), #6d7f67); }
.creator-chip .chip-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}
.creator-chip .chip-handle {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "SOFT" 100;
}
.creator-chip .chip-meta {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.creator-chip .chip-meta .lang-tag {
  color: var(--rose);
  font-weight: 500;
}

/* ================ MANIFESTO BLOCK ================ */
.manifesto {
  padding: 72px 60px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}
.manifesto-text {
  max-width: 640px;
}
.manifesto .eyebrow-rose {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.manifesto .eyebrow-rose::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rose);
}
.manifesto h2 {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 100;
}
.manifesto h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.manifesto p {
  font-size: 16px;
  color: #d4c5b5;
  line-height: 1.65;
  margin-bottom: 14px;
}
.manifesto p:last-child { margin-bottom: 0; }
.manifesto p em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--bg);
  font-variation-settings: "SOFT" 100;
}
.manifesto-action {
  padding: 16px 28px;
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(250, 246, 241, 0.4);
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.manifesto-action:hover {
  background: var(--rose);
  border-color: var(--rose);
}

/* ================ FOOTER ================ */
.site-footer {
  padding: 56px 60px 40px;
  background: var(--ink);
  color: #d4c5b5;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer .brand-block .brand-big {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.site-footer p {
  font-size: 14px;
  color: #a89889;
  max-width: 320px;
  line-height: 1.6;
}
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #a89889;
}
.site-footer ul { list-style: none; }
.site-footer li {
  font-size: 13px;
  margin-bottom: 10px;
  color: #d4c5b5;
}
.disclosure-line {
  grid-column: 1 / -1;
  padding-top: 28px;
  margin-top: 20px;
  border-top: 1px solid rgba(212, 197, 181, 0.15);
  font-size: 11px;
  color: #8a7968;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* ==================== PRODUCT PAGE ==================== */
.product-hero {
  padding: 64px 60px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}
.product-image-main {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 70% 45% at 50% 92%, rgba(45,36,32,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #f7f0e5 0%, #ebdfcb 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(45, 36, 32, 0.22);
}
.product-image-main .hero-prod-bottle {
  position: absolute;
  top: 10%; left: 38%;
  width: 24%; height: 78%;
  background: linear-gradient(180deg, #8b5a3c 0%, #a67450 30%, #8b5a3c 70%, #6d4530 100%);
  border-radius: 6px 6px 3px 3px;
  box-shadow:
    inset 3px 0 5px rgba(255,255,255,0.28),
    inset -3px 0 6px rgba(0,0,0,0.3),
    0 24px 40px -14px rgba(45,36,32,0.42);
}
.product-image-main .hero-prod-bottle::before {
  content: "";
  position: absolute;
  top: -7%; left: 22%;
  width: 56%; height: 11%;
  background: linear-gradient(180deg, #2d2420, #4a3b30);
  border-radius: 3px 3px 0 0;
}
.product-image-main .hero-prod-bottle::after {
  content: "";
  position: absolute;
  top: 32%; left: 10%;
  width: 80%; height: 40%;
  background: linear-gradient(180deg, rgba(250,246,241,0.96), rgba(247,240,229,0.92));
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.08);
}
.product-image-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.thumb {
  width: 72px;
  height: 90px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f0e5, #ebdfcb);
}
.thumb:first-child { border: 1px solid var(--rose); }
.thumb::after {
  content: "";
  position: absolute;
  top: 14%; left: 38%;
  width: 24%; height: 72%;
  background: linear-gradient(180deg, #8b5a3c, #6d4530);
  border-radius: 2px 2px 1px 1px;
}
.thumb.t2::after {
  background: linear-gradient(180deg, #c9938a, #a87068);
}
.thumb.t3 {
  background: linear-gradient(180deg, #ede3d2, #c9b89a);
}
.thumb.t3::after {
  background: linear-gradient(180deg, #8a9c85, #6d7f67);
  top: 28%; left: 28%; width: 44%; height: 54%;
  border-radius: 2px 2px 2px 2px;
}
.thumb.t4::after {
  background: linear-gradient(180deg, #c9a876, #a08458);
}

.product-info .crumb {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  font-weight: 500;
}
.product-info .crumb a {
  color: var(--ink-3);
  text-decoration: none;
}
.product-info .crumb a:hover { color: var(--rose); }
.product-info .brand-big {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.product-info h1 {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
  font-variation-settings: "SOFT" 100;
}
.product-info h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}
.product-info .category-line {
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  font-family: 'Fraunces', serif;
  margin-bottom: 28px;
}

.trust-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 32px;
  box-shadow: 0 10px 24px -14px rgba(45, 36, 32, 0.1);
}
.trust-card .verdict-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.trust-card .verdict {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.trust-card .verdict-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100;
}
.trust-card .verdict-num em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--rose);
}
.trust-card .verdict-desc {
  font-size: 13px;
  color: var(--ink-2);
  font-family: 'Fraunces', serif;
  font-style: italic;
  line-height: 1.4;
  max-width: 180px;
  font-variation-settings: "SOFT" 100;
}
.trust-card .breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card .b-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-card .b-item .n {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-card .b-item.pos .n { color: var(--pos); }
.trust-card .b-item.neu .n { color: var(--neu); }
.trust-card .b-item.neg .n { color: var(--neg); }
.trust-card .b-item .l {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.retailers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.retailer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.retailer:hover { border-color: var(--rose); }
.retailer.best {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.retailer .r-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  font-variation-settings: "SOFT" 100;
  display: flex;
  align-items: center;
  gap: 10px;
}
.retailer .best-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--paper);
  padding: 3px 8px;
  border-radius: 3px;
}
.retailer .r-price {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.retailer .r-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 20px;
  border-left: 1px solid var(--rule);
}
.retailer.best .r-cta { border-left-color: rgba(255,255,255,0.2); }

.disclosure-note {
  font-size: 11px;
  color: var(--ink-3);
  font-style: italic;
  line-height: 1.6;
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
}

/* Who's talking — product page detail */
.voices-section {
  padding: 72px 60px;
  background: var(--bg);
}
.voices-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 100;
}
.voices-section h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--rose);
}
.voices-section .v-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 40px;
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.voice-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.voice-card:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
}
.voice-video {
  background: linear-gradient(135deg, #c9b8a0, #8a7968);
  position: relative;
}
.voice-card:nth-child(2n) .voice-video { background: linear-gradient(135deg, #d9a89f, #9a6b62); }
.voice-card:nth-child(3n) .voice-video { background: linear-gradient(135deg, #aebda4, #6d7f67); }
.voice-video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 28px;
  opacity: 0.85;
}
.voice-video .ts {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(45, 36, 32, 0.9);
  color: var(--paper);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.voice-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
.voice-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.voice-byline-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.voice-avi {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.voice-handle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--rose);
  font-weight: 500;
}
.voice-meta {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sentiment-chip {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sentiment-chip.pos { background: rgba(92, 117, 85, 0.12); color: var(--pos); }
.sentiment-chip.neu { background: rgba(138, 121, 104, 0.15); color: var(--ink-2); }
.sentiment-chip.neg { background: rgba(166, 105, 97, 0.12); color: var(--neg); }
.voice-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-variation-settings: "SOFT" 100;
}

/* ==================== CREATOR PAGE ==================== */
.creator-hero {
  padding: 72px 60px;
  background:
    radial-gradient(ellipse 500px 400px at 20% 50%, rgba(192, 138, 128, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 56px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}
.creator-avi-huge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(192, 138, 128, 0.45);
}
.creator-avi-huge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.4), transparent 60%);
}
.creator-hero-info .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.creator-hero-info .eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rose);
}
.creator-hero-info h1 {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 100;
}
.creator-hero-info h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--rose);
}
.creator-hero-info .handle-line {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.creator-hero-info .desc {
  font-size: 15px;
  max-width: 540px;
  color: var(--ink-2);
  line-height: 1.6;
}
.creator-hero-stat {
  text-align: right;
}
.creator-hero-stat .big-num {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "SOFT" 100;
}
.creator-hero-stat .big-num em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--rose);
}
.creator-hero-stat .big-label {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}
.creator-hero-stat .sub-stats {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.6;
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
}

.filter-row {
  padding: 24px 60px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
}
.filter-tabs {
  display: flex;
  gap: 8px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.filter-tab.active {
  background: var(--ink);
  color: var(--bg);
}
.filter-tab:not(.active):hover {
  border-color: var(--rule-strong);
}
.filter-tab .count {
  margin-left: 6px;
  opacity: 0.7;
  font-weight: 400;
}
.sort-select {
  font-size: 13px;
  color: var(--ink-2);
  font-family: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}

.creator-products {
  padding: 48px 60px 72px;
}
.creator-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Empty states */
.voices-empty {
  padding: 48px 0;
  color: var(--ink-3);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  font-variation-settings: "SOFT" 100;
}

.retailers-stub {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  font-family: 'Fraunces', serif;
  margin-bottom: 20px;
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 900px) {
  .hero, .product-hero, .creator-hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .hero h1, .product-info h1 { font-size: 44px; }
  .section, .voices-section, .creator-products, .philosophy { padding: 48px 24px; }
  .products-grid, .feed-grid, .creator-products-grid, .voices-grid { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; padding: 48px 24px; text-align: left; }
  .manifesto h2 { font-size: 36px; }
  .voice-card { grid-template-columns: 1fr; }
  .voice-video { aspect-ratio: 16/9; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .site-header { padding: 16px 20px; grid-template-columns: auto auto; gap: 16px; }
  .nav { display: none; }
  .search-pill { display: none; }
  .creator-hero-stat { text-align: left; }
  .filter-row { padding: 16px 24px; flex-wrap: wrap; gap: 12px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .action { justify-self: start; }
  .trust-card .verdict-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
