/* ============================================
   FOUR BUTTER — Design System
   ============================================ */

:root {
  --cream: #FBF7F0;
  --cream-2: #F3EBDD;
  --butter: #E8C87A;
  --butter-2: #F0D78C;
  --butter-deep: #D4A94E;
  --shea: #D4A574;
  --cocoa: #3D2B24;
  --cocoa-2: #5C4033;
  --mango: #E89B5C;
  --sage: #8B9E7E;
  --ink: #1A1614;
  --ink-2: #2A211B;
  --muted: #6B5E4E;
  --muted-2: #8A7B66;
  --line: rgba(42, 33, 27, 0.12);
  --line-2: rgba(42, 33, 27, 0.22);
  --white: #FFFCF7;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --nav-h: 72px;
  --wrap: min(1240px, calc(100% - 48px));
  --shadow: 0 24px 60px rgba(42, 33, 27, 0.1);
  --shadow-soft: 0 10px 30px rgba(42, 33, 27, 0.06);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--butter);
  color: var(--ink);
}

/* ---------- grain overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-optical-sizing: auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 38ch;
}

/* ---------- layout ---------- */
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 64px);
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 12ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--cocoa-2);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line-2);
}

.btn-light:hover {
  background: var(--white);
  border-color: var(--ink);
}

.btn-butter {
  background: var(--butter);
  color: var(--ink);
}

.btn-butter:hover {
  background: var(--butter-2);
}

.btn-ghost {
  height: auto;
  padding: 0;
  border-radius: 0;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 6px;
}

.btn-ghost:hover {
  transform: none;
  border-color: var(--ink);
}

.btn-ghost .arr {
  transition: transform 0.35s var(--ease);
}

.btn-ghost:hover .arr {
  transform: translateX(4px);
}

/* ---------- announcement / marquee ---------- */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 60;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.ticker-track span::after {
  content: "✦";
  opacity: 0.5;
}

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

.marquee-big {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  background: var(--cream-2);
}

.marquee-big .ticker-track {
  animation-duration: 40s;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  gap: 32px;
}

.marquee-big .ticker-track span {
  gap: 32px;
  color: var(--cocoa-2);
}

.marquee-big .ticker-track span::after {
  content: "•";
  font-size: 0.5em;
  opacity: 0.35;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-self: center;
}

.logo-dots {
  display: flex;
  gap: 5px;
}

.logo-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  display: block;
}

.logo-dots i:nth-child(1) { opacity: 0.35; }
.logo-dots i:nth-child(2) { opacity: 0.55; }
.logo-dots i:nth-child(3) { opacity: 0.75; }
.logo-dots i:nth-child(4) { opacity: 1; }

.logo-word {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-quiz {
  display: none;
}

@media (min-width: 900px) {
  .nav-quiz {
    display: inline-flex;
    height: 40px;
    padding: 0 18px;
    font-size: 12px;
  }
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 110px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin: 18px 0 24px;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cocoa-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-blob {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(circle at 30% 30%, var(--butter-2), var(--shea) 55%, var(--mango) 100%);
  border-radius: 48% 52% 45% 55% / 55% 42% 58% 45%;
  animation: morph 14s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes morph {
  0%, 100% { border-radius: 48% 52% 45% 55% / 55% 42% 58% 45%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 55% 45% 58% 42% / 48% 55% 45% 52%; transform: rotate(3deg) scale(1.02); }
  66% { border-radius: 42% 58% 50% 50% / 55% 48% 52% 45%; transform: rotate(-2deg) scale(0.99); }
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(380px, 78%);
  filter: drop-shadow(0 30px 50px rgba(42, 33, 27, 0.18));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-badge.b1 { top: 12%; left: 0; }
.hero-badge.b2 { bottom: 18%; right: 0; }
.hero-badge.b3 { top: 42%; right: -4%; }

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 420px;
    order: -1;
  }
  .hero-badge.b3 { display: none; }
}

/* ---------- product grid ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid transparent;
}

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

.product-media {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 58%;
  transition: transform 0.7s var(--ease);
  filter: drop-shadow(0 16px 24px rgba(42, 33, 27, 0.14));
}

.product-card:hover .product-media img {
  transform: scale(1.06) rotate(-2deg);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-meta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.product-meta p {
  font-size: 13px;
  color: var(--muted);
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.price {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.add-btn {
  height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.add-btn:hover {
  background: var(--cocoa-2);
  transform: scale(1.03);
}

.swatches {
  display: flex;
  gap: 6px;
}

.swatches i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

/* product media tints */
.tint-coconut { background: linear-gradient(160deg, #F7F0E2, #E8D4B0); }
.tint-cocoa { background: linear-gradient(160deg, #E8D5C4, #C4A080); }
.tint-citrus { background: linear-gradient(160deg, #F3E6B8, #E0C070); }
.tint-mint { background: linear-gradient(160deg, #DCE6D8, #B8C9B0); }
.tint-unscented { background: linear-gradient(160deg, #F2EDE4, #D8CFC0); }
.tint-mini { background: linear-gradient(160deg, #EFE4D4, #D4B896); }

@media (max-width: 1100px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products { grid-template-columns: 1fr; }
}

/* ---------- butters / ingredients ---------- */
.butters {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin-inline: auto;
  width: var(--wrap);
  padding: clamp(56px, 8vw, 100px) clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.butters .section-head h2 { color: var(--cream); max-width: 14ch; }
.butters .eyebrow { color: var(--butter); }
.butters .lead { color: rgba(251, 247, 240, 0.65); }

.butter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.butter-card {
  background: rgba(251, 247, 240, 0.04);
  border: 1px solid rgba(251, 247, 240, 0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.butter-card:hover {
  background: rgba(251, 247, 240, 0.08);
  border-color: rgba(232, 200, 122, 0.4);
  transform: translateY(-4px);
}

.butter-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}

.butter-card:nth-child(1) .icon { background: #FAF6F0; color: var(--cocoa); }
.butter-card:nth-child(2) .icon { background: var(--shea); color: var(--ink); }
.butter-card:nth-child(3) .icon { background: var(--cocoa-2); color: var(--butter); }
.butter-card:nth-child(4) .icon { background: var(--mango); color: var(--ink); }

.butter-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.butter-card .latin {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--butter);
  opacity: 0.85;
}

.butter-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(251, 247, 240, 0.62);
  margin-top: auto;
}

@media (max-width: 1000px) {
  .butter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .butter-grid { grid-template-columns: 1fr; }
}

/* ---------- minerals / how it works ---------- */
.minerals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mineral-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.mineral-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--butter-2), var(--shea) 50%, var(--mango));
  border: none;
}

.mineral-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.mineral-card p {
  color: var(--muted);
  max-width: 42ch;
}

.claim-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  font-size: 12px;
  background: var(--cream);
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.no-list .chip::before {
  background: var(--mango);
}

.mineral-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 20px;
  background: var(--cream);
}

.mineral-card.wide .mineral-icon {
  width: 160px;
  height: 160px;
  font-size: 48px;
  margin: 0 auto;
  background: rgba(251, 247, 240, 0.55);
  border-color: rgba(42, 33, 27, 0.1);
}

@media (max-width: 860px) {
  .minerals-grid { grid-template-columns: 1fr; }
  .mineral-card.wide { grid-template-columns: 1fr; }
}

/* ---------- ritual / formats ---------- */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease);
}

.format-card:hover { transform: translateY(-4px); }

.format-card:nth-child(1) { background: var(--cream-2); }
.format-card:nth-child(2) { background: var(--cocoa); color: var(--cream); border-color: transparent; }
.format-card:nth-child(3) { background: var(--butter-2); border-color: transparent; }

.format-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.format-card p {
  font-size: 14px;
  opacity: 0.75;
  max-width: 28ch;
}

.format-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.format-visual {
  height: 140px;
  display: grid;
  place-items: center;
  margin: 20px 0;
}

.format-visual img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 12px 20px rgba(42, 33, 27, 0.15));
}

@media (max-width: 900px) {
  .formats { grid-template-columns: 1fr; }
}

/* ---------- reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.review:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}

.stars {
  letter-spacing: 3px;
  color: var(--butter-deep);
  font-size: 14px;
}

.review blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.review footer {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; }
}

/* ---------- quiz CTA ---------- */
.quiz {
  width: var(--wrap);
  margin-inline: auto;
  border-radius: 32px;
  background: linear-gradient(120deg, var(--cocoa), var(--cocoa-2) 45%, var(--butter-deep));
  color: var(--cream);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.quiz::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 200, 122, 0.35), transparent 70%);
  pointer-events: none;
}

.quiz h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 14px 0 18px;
}

.quiz p {
  color: rgba(251, 247, 240, 0.7);
  max-width: 40ch;
}

.quiz-stats {
  display: grid;
  gap: 18px;
}

.stat {
  background: rgba(251, 247, 240, 0.08);
  border: 1px solid rgba(251, 247, 240, 0.12);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--butter);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .quiz { grid-template-columns: 1fr; }
}

/* ---------- limited drops ---------- */
.drops {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.drop-card {
  border-radius: var(--radius);
  padding: 36px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.drop-card.feature {
  background: linear-gradient(145deg, #2A211B, #5C4033 60%, #8B5A3C);
  color: var(--cream);
  border: none;
}

.drop-card.small-a { background: var(--butter-2); border: none; }
.drop-card.small-b { background: var(--cream-2); }

.drop-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 10px 0 12px;
}

.drop-card p {
  opacity: 0.72;
  max-width: 36ch;
  font-size: 14px;
}

.drop-pill {
  align-self: flex-start;
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(251, 247, 240, 0.12);
  border: 1px solid rgba(251, 247, 240, 0.18);
}

.drop-card.small-a .drop-pill,
.drop-card.small-b .drop-pill {
  background: rgba(251, 247, 240, 0.55);
  border-color: var(--line);
  color: var(--ink);
}

.drops-col {
  display: grid;
  gap: 18px;
}

@media (max-width: 860px) {
  .drops { grid-template-columns: 1fr; }
}

/* ---------- newsletter / footer ---------- */
.newsletter {
  background: var(--cream-2);
  border-radius: 32px;
  width: var(--wrap);
  margin: 0 auto 80px;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 10px 0 12px;
}

.nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nl-form input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  background: var(--cream);
  padding: 0 22px;
  font: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.nl-form input:focus { border-color: var(--ink); }

.nl-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted-2);
}

@media (max-width: 800px) {
  .newsletter { grid-template-columns: 1fr; }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .logo-word { font-size: 28px; }
.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  max-width: 28ch;
  font-size: 14px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: var(--ink-2);
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--muted); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- cart drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.4);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--cream);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(42, 33, 27, 0.12);
}

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

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background 0.3s;
}

.drawer-close:hover { background: var(--cream-2); }

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 24px;
}

.drawer-empty {
  color: var(--muted);
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--cream-2);
  border-radius: 10px;
  padding: 6px;
}

.cart-line h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}

.cart-line p {
  font-size: 12px;
  color: var(--muted);
}

.cart-line .qty {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.drawer-foot {
  padding: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- mobile nav ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: start; }
  .nav-actions .nav-quiz { display: none; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 70;
    padding: 100px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
  }

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

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 36px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 861px) {
  .mobile-menu { display: none; }
}

/* ---------- product page ---------- */
.pdp {
  padding: 40px 0 100px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.breadcrumb a:hover { color: var(--ink); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.pdp-hero {
  aspect-ratio: 1;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #F7F0E2, #E8D4B0);
  overflow: hidden;
  margin-bottom: 14px;
}

.pdp-hero img {
  width: 58%;
  filter: drop-shadow(0 24px 40px rgba(42, 33, 27, 0.16));
  transition: transform 0.7s var(--ease);
}

.pdp-hero:hover img { transform: scale(1.04) rotate(-1deg); }

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pdp-thumb {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}

.pdp-thumb.active,
.pdp-thumb:hover { border-color: var(--ink); }

.pdp-thumb img { width: 70%; }

.pdp-info .eyebrow { margin-bottom: 12px; display: block; }

.pdp-info h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.pdp-price {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.pdp-desc {
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 28px;
}

.pdp-options {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.opt-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.opt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opt {
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  font-size: 13px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}

.opt:hover { border-color: var(--ink); }

.opt.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.pdp-buy {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  height: 48px;
  overflow: hidden;
}

.qty-ctrl button {
  width: 44px;
  height: 100%;
  font-size: 18px;
  transition: background 0.25s;
}

.qty-ctrl button:hover { background: var(--cream-2); }

.qty-ctrl span {
  width: 36px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
}

.pdp-acc {
  border-top: 1px solid var(--line);
}

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

.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-item summary::-webkit-details-marker { display: none; }

.acc-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s;
}

.acc-item[open] summary::after {
  content: "–";
}

.acc-item .acc-body {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.acc-body ul {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.acc-body li {
  padding-left: 14px;
  position: relative;
}

.acc-body li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--butter-deep);
}

@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 100;
  transition: transform 0.5s var(--ease);
  box-shadow: var(--shadow);
}

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

/* ---------- misc ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mono-sm {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-2);
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
