/* ============================================================
   PUPPROPER — main.css
   Brand standards v3 locked
   Reference: brand/07-brand-standards-LOCKED-v3.md
   ============================================================ */

/* ---------- Reset + Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Söhne', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #1A1A1A;
  background: #F2EBDD;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Brand Color Tokens ---------- */
:root {
  --ink: #1A1A1A;
  --ink-muted: #6b6359;
  --cream: #F2EBDD;
  --cream-warm: #efe9df;    /* tonal alt for chapter shifts */
  --amber: #A4632F;
  --ochre: #C8956D;
  --coral: #FF6F61;         /* Resurrection Dry Wash — PMS 178 C */
  --sage: #6CC24A;          /* Confession Stain Remedy — PMS 360 C */
  --mustard: #F2A900;       /* Hours Between Walks — PMS 130 C */
  --periwinkle: #9DA8C7;    /* The Long Goodbye — PMS 658 C */
  --terracotta: #D2693E;    /* Vespers — PMS 7416 C */
  --white: #FFFFFF;

  /* Delta 10 — type scale (Anatta editorial DTC reference, 2026-05-27) */
  --fs-h1: clamp(44px, 5vw, 64px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2vw, 26px);
  --fs-eyebrow: 12px;
  --fs-body: 17px;
  --fs-lede: clamp(18px, 1.4vw, 21px);
  --fs-micro: 13px;

  --lh-display: 1.08;
  --lh-h2: 1.18;
  --lh-body: 1.6;

  --tracking-eyebrow: 0.14em;

  /* Delta 21 — spacing scale, tightened.
     Previous values topped out at 112px and created 224px gaps between every section.
     Anatta sweet spot is 64-96px on standard PDP sections. */
  --section-pad-y: clamp(48px, 5vw, 80px);
  --section-pad-y-lg: clamp(72px, 7vw, 112px);
  --section-pad-y-sm: clamp(36px, 4vw, 56px);
  --gap-eyebrow-h2: 18px;
  --gap-h2-lede: 22px;
  --gap-block: 40px;

  /* Delta 10 — layout */
  --container-max: 1440px;
  --container-pad: clamp(24px, 4vw, 64px);
  --text-max: 620px;
}

/* ---------- Typography System ---------- */
.wordmark {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Visby CF', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}
.display {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Visby CF', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: var(--lh-display);
  /* Delta 10: dropped text-transform: uppercase — reads CPG, not apothecary.
     Use sentence case in HTML. Mono caps reserved for eyebrows. */
}
.headline {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.body { font-size: 17px; line-height: 1.55; }
.body-lg { font-size: 20px; line-height: 1.5; }
.mono {
  font-family: 'Söhne Mono', 'GT America Mono', 'Menlo', monospace;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}
.script {
  font-family: 'Söhne', 'Inter', sans-serif;
  font-style: italic;
  font-weight: 400;
}

/* ---------- Layout primitives (Delta 10 — Anatta editorial baseline) ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.container-sm { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 var(--container-pad); }
.container-text { width: 100%; max-width: var(--text-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--section-pad-y) 0; }
.section-lg { padding: var(--section-pad-y-lg) 0; }
.section--manifesto { padding: var(--section-pad-y) 0; /* Delta 23: no longer adds extra padding — was creating 250px section-to-section gaps */ }
.section-sm, .section--tight { padding: var(--section-pad-y-sm) 0; }

/* .editorial-stack — multiple manifesto blocks inside ONE section, separated by a hairline.
   Delta 24: removed flex gap (was stacking with block padding-top creating 200px gaps).
   Now: only the inter-block padding does the separating. ~96px total between blocks. */
.editorial-stack { display: block; }
.editorial-stack__block + .editorial-stack__block {
  margin-top: clamp(40px, 4vw, 56px);
  padding-top: clamp(40px, 4vw, 56px);
  border-top: 1px solid rgba(26, 26, 26, 0.10);
}
.section--canvas { background: var(--cream); }
.section--tonal { background: var(--cream-warm); }
.section--deep { background: var(--ink); color: var(--cream); }

/* Editorial section heading rhythm — sentence case, left-aligned default */
.section__lede { color: var(--ink); opacity: 0.82; }
.section--deep .section__lede { color: var(--cream); opacity: 0.78; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 235, 221, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-header__logo {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  font-size: 14px; font-weight: 500;
  position: relative;
  transition: opacity .2s ease;
}
.site-nav a:hover { opacity: 0.6; }
.site-nav__cart {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: opacity .2s ease;
}
.site-nav__cart:hover { opacity: 0.85; }
@media (max-width: 768px) {
  .site-nav { gap: 18px; }
  .site-nav a:not(.site-nav__cart) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--coral);
  color: var(--ink);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-size: var(--fs-h1);
  line-height: var(--lh-display);
  /* Delta 10: dropped 96px → 64px max. Editorial register over CPG punch. */
}
.hero__eyebrow {
  margin-bottom: var(--gap-eyebrow-h2);
  color: var(--ink);
  opacity: 0.68;
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
}
.hero__lede {
  margin-top: var(--gap-h2-lede);
  font-size: var(--fs-lede);
  line-height: 1.5;
  max-width: 480px;
  opacity: 0.85;
}
.hero__cta-row {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
}
.hero__bottle { text-align: center; }
.hero__bottle img {
  max-height: 620px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 35px 50px rgba(0,0,0,0.18));
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .hero__bottle img { max-height: 480px; }
}

/* Variant heroes for SKU PDPs */
.hero--coral { background: var(--coral); }
.hero--sage { background: var(--sage); }
.hero--mustard { background: var(--mustard); }
.hero--cream { background: var(--cream); }
.hero--ink { background: var(--ink); color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
  border: 2px solid var(--ink); background: var(--ink); color: var(--cream);
  border-radius: 999px;
  cursor: pointer; transition: all .2s ease;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--dark:hover { background: var(--cream); color: var(--ink); }
.btn--lg { padding: 20px 36px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Section eyebrow + title combos (Delta 10) ---------- */
.section__eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin: 0 0 var(--gap-eyebrow-h2) 0;
  color: var(--ink);
  opacity: 0.62;
}
.section--deep .section__eyebrow { color: var(--cream); opacity: 0.62; }
.section__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  margin: 0;
  max-width: 22ch;
}
.section__lede {
  max-width: var(--text-max);
  margin-top: var(--gap-h2-lede);
  font-size: var(--fs-lede);
  line-height: 1.55;
}
.section__center {
  text-align: center;
}
/* When the parent says text-center, the title BLOCK must also center (not just its text) */
.text-center .section__title,
.section__center .section__title {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.text-center .section__lede,
.section__center .section__lede {
  margin-left: auto;
  margin-right: auto;
}
/* Centered section heading blocks need centered child paragraphs/body too */
.text-center > p, .text-center > .section__lede { margin-left: auto; margin-right: auto; }

/* ---------- SKU Cards Grid ---------- */
.sku-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.sku-card {
  display: flex; flex-direction: column;
  border-radius: 24px;
  padding: 40px 36px 36px;
  color: var(--ink);
  transition: transform .25s ease;
}
.sku-card:hover { transform: translateY(-4px); }
.sku-card--coral { background: var(--coral); }
.sku-card--sage { background: var(--sage); }
.sku-card--cream { background: var(--cream); border: 1px solid rgba(26,26,26,0.08); }
.sku-card__image {
  margin: -8px auto 24px;
  max-height: 360px;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.sku-card__name { font-size: 28px; margin-bottom: 10px; }
.sku-card__sku { margin-bottom: 14px; }
.sku-card__copy { font-size: 15px; line-height: 1.5; margin-bottom: 28px; opacity: 0.85; }
.sku-card__row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.sku-card__price { font-size: 22px; font-weight: 700; }
.sku-card .btn { padding: 12px 22px; font-size: 13px; }
@media (max-width: 768px) {
  .sku-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Value Props Strip ---------- */
.values {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 48px);
  padding: 20px 0 0 0;
  /* Delta 21: padding-top 32 → 20. Lede already has 22px gap to H2 above it; same applies below. */
}
.value { text-align: center; }
.value__title {
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.value__copy { font-size: 15px; line-height: 1.55; opacity: 0.78; max-width: 32ch; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
  .values { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- Comparison Table ---------- */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: var(--cream);
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.compare th, .compare td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  font-size: 15px;
}
.compare thead th {
  background: var(--ink); color: var(--cream);
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase;
}
.compare tbody td:first-child { font-weight: 600; }
.compare .yes::before { content: "✓"; color: var(--ink); font-weight: 800; margin-right: 6px; }
.compare .no { opacity: 0.5; }
.compare .no::before { content: "×"; margin-right: 6px; font-weight: 800; }
.compare__highlight { background: rgba(255,111,97,0.12); }

/* ---------- Editorial Image Block ---------- */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.editorial-block--reverse .editorial-block__copy { order: 2; }
.editorial-block__image img { border-radius: 16px; }
.editorial-block__copy h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); margin-bottom: 20px; }
.editorial-block__copy p { font-size: 17px; line-height: 1.6; opacity: 0.85; }
.editorial-block__copy p + p { margin-top: 14px; }
@media (max-width: 900px) {
  .editorial-block { grid-template-columns: 1fr; gap: 32px; }
  .editorial-block--reverse .editorial-block__copy { order: 0; }
}

/* ---------- Full Bleed Image ---------- */
.bleed-image { width: 100%; }
.bleed-image img { width: 100%; height: clamp(360px, 60vh, 720px); object-fit: cover; display: block; }

/* ---------- Press Strip ---------- */
.press {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: center;
  padding: 32px 0;
}
.press__logo {
  font-family: 'Söhne Breit', 'Inter', sans-serif;
  font-weight: 800; letter-spacing: -0.01em;
  font-size: 22px; text-align: center; opacity: 0.45;
}
@media (max-width: 768px) { .press { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ---------- PDP-specific ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  padding: 64px 0 96px;
}
.pdp__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pdp__gallery img { border-radius: 12px; aspect-ratio: 3 / 4; object-fit: cover; }
.pdp__gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 1 / 1; }
.pdp__info { position: sticky; top: 96px; align-self: start; }
.pdp__breadcrumb { margin-bottom: 22px; }
.pdp__name { font-size: var(--fs-h1); line-height: var(--lh-display); margin-bottom: 12px; }
.pdp__sub { font-size: 18px; opacity: 0.7; margin-bottom: 32px; line-height: 1.5; }
.pdp__price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.pdp__price { font-size: 32px; font-weight: 800; }
.pdp__size { font-size: 14px; opacity: 0.65; letter-spacing: 0.02em; text-transform: uppercase; }
.pdp__purchase { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pdp__detail { margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(26,26,26,0.1); }
.pdp__detail-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.pdp__detail-body { font-size: 15px; line-height: 1.55; opacity: 0.85; }
.pdp__list { list-style: disc; padding-left: 20px; margin-top: 8px; }
.pdp__list li { margin-bottom: 6px; font-size: 15px; line-height: 1.5; opacity: 0.85; }
.pdp__ingredients { font-style: italic; font-size: 14px; line-height: 1.6; opacity: 0.75; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 48px; padding: 32px 0 64px; }
  .pdp__info { position: static; }
}

/* ---------- Pain points strip ---------- */
.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.pain-card {
  padding: 32px;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(26,26,26,0.06);
}
.pain-card__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral);
}
.pain-card__quote {
  font-size: 18px; line-height: 1.5; margin-bottom: 18px; font-weight: 500;
}
.pain-card__source { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.55; margin-bottom: 18px; }
.pain-card__answer { font-size: 14px; line-height: 1.55; opacity: 0.85; border-top: 1px solid rgba(26,26,26,0.1); padding-top: 18px; }
.pain-card__answer strong { font-weight: 700; }
@media (max-width: 900px) { .pain-points { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: 80px 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.site-footer__brand { max-width: 360px; }
.site-footer__logo {
  font-family: 'Söhne Breit', 'Inter', sans-serif;
  font-weight: 900; font-size: 28px; letter-spacing: -0.015em; text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer__lede { font-size: 14px; line-height: 1.6; opacity: 0.65; margin-bottom: 24px; }
.site-footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; opacity: 0.5; }
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col a { font-size: 14px; opacity: 0.85; transition: opacity .2s ease; }
.site-footer__col a:hover { opacity: 1; }
.site-footer__bottom { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(242,235,221,0.1); font-size: 12px; opacity: 0.55; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ---------- Delta 14 — missing CSS for HTML classes used without definitions ---------- */

/* .card-grid — used on ingredient transparency blocks. Defaults to 2-up; --3up modifier for 3 columns. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(40px, 5vw, 72px);
  margin-top: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.card-grid--3up { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
@media (max-width: 768px) {
  .card-grid, .card-grid--3up { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
}

/* .card — editorial block. Top hairline + restrained padding (default for ingredient-list usage). */
.card {
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 26, 0.14);
}
.card h3 { margin: 0 0 8px 0; }
.card p { margin: 0; }
.card p + p { margin-top: 8px; }
.card .mono { display: block; }

/* .card--filled — saturated card variant (bundle page coral/sage/cream cards). Drops hairline, adds proper padding. */
.card[style*="background"] {
  padding: 36px 32px;
  border-top: none;
  border-radius: 4px;
}

/* .bleed-image / .bleed-video — full-bleed video container. */
.bleed-image {
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}
.bleed-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 720px;
  object-fit: cover;
}
.bleed-video--wide { max-height: 540px; aspect-ratio: 21 / 9; object-fit: cover; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-sage { color: var(--sage); }
.bg-coral { background: var(--coral); }
.bg-sage { background: var(--sage); }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: var(--cream); }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 32px; } .mt-lg { margin-top: 64px; }
.mb-sm { margin-bottom: 16px; } .mb-md { margin-bottom: 32px; } .mb-lg { margin-bottom: 64px; }

/* ---------- Fade-in on Scroll ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  padding: 22px 4px;
  cursor: pointer;
  transition: background 0.18s;
}
.faq-item:first-child { border-top: 1px solid rgba(26, 26, 26, 0.12); }
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
  padding-right: 40px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Söhne Mono', 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 400;
  opacity: 0.55;
  transition: transform 0.2s, opacity 0.2s;
}
.faq-item[open] summary::after { content: "−"; opacity: 1; }
.faq-item[open] summary { color: var(--coral); }
.faq-item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 720px;
}


/* ============================================================
   MOBILE OPTIMIZATION — refinement passes
   ============================================================ */

/* Tighter hero on small screens */
@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .hero__title { font-size: clamp(36px, 10vw, 56px); }
  .hero__lede { font-size: 16px; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .hero__bottle img { max-height: 380px; }
  .hero__eyebrow { font-size: 10px; }
}

/* Section spacing tightens on mobile */
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section__title { font-size: clamp(28px, 7vw, 40px); }
  .section__lede { font-size: 15px; line-height: 1.55; }
  .editorial-block__copy h2 { font-size: clamp(26px, 6.5vw, 36px); }
}

/* Mobile nav — hide secondary links but keep cart */
@media (max-width: 768px) {
  .site-header__inner { height: 60px; }
  .site-header__logo { font-size: 18px; }
  .site-nav { gap: 12px; }
  .site-nav__cart { padding: 8px 14px; font-size: 12px; }
}

/* Comparison table — make it horizontally scrollable on tiny screens */
@media (max-width: 640px) {
  .compare {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 13px;
  }
  .compare thead, .compare tbody, .compare tr { display: table; width: 100%; }
  .compare th, .compare td { padding: 14px 12px; font-size: 12px; white-space: normal; }
}

/* SKU cards stack cleanly */
@media (max-width: 640px) {
  .sku-card { padding: 28px 22px 22px; border-radius: 18px; }
  .sku-card__image { max-height: 260px; }
  .sku-card__name { font-size: 24px; }
  .sku-card__price { font-size: 20px; }
}

/* PDP gallery scales down */
@media (max-width: 640px) {
  .pdp { gap: 32px; padding: 24px 0 48px; }
  .pdp__gallery { gap: 12px; }
  .pdp__name { font-size: clamp(28px, 7vw, 40px); }
  .pdp__price { font-size: 26px; }
  .pdp__sub { font-size: 16px; }
  .pdp__detail { padding-top: 28px; margin-top: 28px; }
  .pdp__detail-title { font-size: 12px; }
}

/* Footer mobile spacing */
@media (max-width: 640px) {
  .site-footer { padding: 56px 0 24px; }
  .site-footer__grid { gap: 28px; margin-bottom: 32px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; font-size: 11px; }
}

/* FAQ touch targets — bigger tap area on mobile */
@media (max-width: 640px) {
  .faq-item { padding: 18px 4px; }
  .faq-item summary { font-size: 17px; padding-right: 36px; }
  .faq-item p { font-size: 15px; }
}

/* Pain points stack with breathing room */
@media (max-width: 640px) {
  .pain-points { margin-top: 32px; gap: 16px; }
  .pain-card { padding: 24px 22px; border-radius: 12px; }
  .pain-card__quote { font-size: 16px; }
  .pain-card__answer { font-size: 13px; }
}

/* Hero variant — about page cream hero */
@media (max-width: 640px) {
  .hero--cream .hero__title { font-size: clamp(34px, 9vw, 56px) !important; }
}

/* Container padding tighter on mobile */
@media (max-width: 480px) {
  .container, .container-sm { padding: 0 16px; }
}

/* Bundle floating cross-sell card */
.bundle-promo {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: linear-gradient(135deg, var(--coral) 0%, var(--sage) 100%);
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
}
.bundle-promo__image { background: var(--cream-2, var(--cream)); position: relative; }
.bundle-promo__image img { width: 100%; height: 100%; object-fit: cover; }
.bundle-promo__copy { padding: 36px 36px 32px; color: var(--ink); }
.bundle-promo__eyebrow { font-family: 'Söhne Mono','JetBrains Mono',monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; margin-bottom: 10px; }
.bundle-promo__title { font-family: 'Söhne Breit','Inter',sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 32px); line-height: 1.15; margin-bottom: 12px; }
.bundle-promo__copy p { font-size: 15px; line-height: 1.55; opacity: 0.85; margin-bottom: 18px; }
.bundle-promo__price { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.bundle-promo__price .save { font-size: 14px; opacity: 0.7; text-decoration: line-through; }
.bundle-promo__price .now { font-size: 22px; font-weight: 700; }
@media (max-width: 768px) {
  .bundle-promo { grid-template-columns: 1fr; }
  .bundle-promo__image { aspect-ratio: 5 / 3; }
  .bundle-promo__copy { padding: 28px 24px 26px; }
}

/* Delta 6 (2026-05-27) — mobile-scrollable comparison table */
.compare-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
  border: 1px solid rgba(26,26,26,0.1);
  background: var(--cream);
}
.compare-wrapper .compare {
  margin-top: 0;
  border: none;
  min-width: 720px;        /* forces horizontal scroll on phones; readable on desktop */
}
/* Delta 17 — mobile-stacked comparison.
   On phones the side-by-side table reads as a misaligned color quilt.
   At <768px, transform table into stacked cards: each row = a feature block
   with Confession (highlighted) and the alternative below it. No horizontal scroll. */
@media (max-width: 767px) {
  .compare-wrapper {
    border: none;
    background: transparent;
    box-shadow: none;
    margin-top: 32px;
  }
  .compare-wrapper::after { display: none; }
  .compare-wrapper .compare {
    min-width: 0;
    display: block;
  }
  .compare thead { display: none; }
  .compare tbody, .compare tbody tr, .compare tbody td {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
  }
  .compare tbody tr {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--cream);
    border: 1px solid rgba(26, 26, 26, 0.10);
    border-radius: 4px;
  }
  .compare tbody tr td:first-child {
    font-family: 'JetBrains Mono', 'Söhne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.62;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .compare tbody tr td.compare__highlight {
    background: rgba(255, 111, 97, 0.10);
    padding: 12px 14px;
    border-radius: 3px;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
  }
  .compare tbody tr td.compare__highlight::before {
    content: "Confession · ";
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 500;
    margin-right: 4px;
  }
  .compare tbody tr td.no {
    padding: 12px 14px;
    font-size: 15px;
    opacity: 0.7;
  }
  .compare tbody tr td.no::before {
    content: "Mass-market · ";
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.55;
    font-weight: 500;
    margin-right: 4px;
  }
}



/* Delta 7 v2 (2026-05-27) — "Bottle transcribed" PDP section.
   Three-card editorial document. Matches .pain-card pattern (works in same page).
   Cream cards on the page, brand-color chip + hairlines, ink-black type.
   Aesop / L:A Bruket register — proper grid, generous padding, readable body type. */
.label-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.label-doc {
  background: var(--cream);
  color: var(--ink);
  padding: 40px 36px;
  border: 1px solid rgba(26, 26, 26, 0.10);
  border-radius: 16px;
  position: relative;
}
.label-doc--coral { border-top: 4px solid var(--coral); }
.label-doc--sage  { border-top: 4px solid var(--sage); }

.label-doc__chip {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  color: var(--ink);
}
.label-doc--coral .label-doc__chip { background: rgba(255, 111, 97, 0.18); }
.label-doc--sage  .label-doc__chip { background: rgba(108, 194, 74, 0.20); }

.label-doc__section {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.50;
  margin-bottom: 26px;
}
.label-doc h3,
.label-doc h4 { color: var(--ink); }
.label-doc p { color: var(--ink); }

.label-doc__brand {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  line-height: 1;
}
.label-doc__brandline {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 28px;
}
.label-doc__rule {
  margin: 28px 0;
  padding: 28px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.label-doc--coral .label-doc__rule { border-color: rgba(255, 111, 97, 0.40); }
.label-doc--sage  .label-doc__rule { border-color: rgba(108, 194, 74, 0.40); }
.label-doc__display {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.label-doc__tagline {
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}
.label-doc__spec {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}
.label-doc__body {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.label-doc__caption {
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.70;
}
.label-doc__footer {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 26, 26, 0.10);
}
.label-doc__footer p {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 4px 0;
}
@media (max-width: 900px) {
  .label-doc-grid { grid-template-columns: 1fr; gap: 20px; }
  .label-doc { padding: 32px 26px; }
  .label-doc__brand { font-size: 30px; }
  .label-doc__display { font-size: 22px; }
  .label-doc__body { font-size: 15px; }
}

/* Delta 9 (2026-05-27) — "Bottle, transcribed" STACKED layout.
   Replaces all prior .label-spread 2-column attempts (which fought the 1:1
   image aspect at every viewport). New pattern: full-bleed hero image on top,
   centered editorial label transcription column below.
   Reference: Aesop PDPs — hero photography, then product info in restrained
   centered editorial column. No grid alignment, no aspect ratio fights. */

.label-section {
  background: var(--cream);
  padding-bottom: clamp(80px, 8vw, 140px);
}

/* HERO — full-bleed band at controlled aspect ratio.
   1:1 source image is letterboxed into a 16:9 band; bg color matches
   the source's solid coral/sage so the letterbox bleeds seamlessly. */
.label-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.label-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.label-hero--coral { background: var(--coral); }
.label-hero--sage  { background: var(--sage); }

/* STACK — editorial transcription column below the hero, centered, narrow. */
.label-stack {
  max-width: 680px;
  margin: clamp(64px, 7vw, 112px) auto 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.label-stack__head {
  text-align: center;
  margin-bottom: 8px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.label-stack__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 18px 0;
  color: var(--ink);
}
.label-stack__title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 24px 0;
  color: var(--ink);
}
.label-stack__lede {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 580px;
  color: var(--ink);
  opacity: 0.82;
}

/* Each labeled block in the transcription column. */
.label-stack__block {
  padding-top: 32px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.label-stack__block:first-of-type {
  border-top: none;
  padding-top: 0;
}
.label-stack__section {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 22px 0;
  color: var(--ink);
}
.label-stack__brand {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.005em;
  margin: 0 0 8px 0;
  line-height: 1;
  color: var(--ink);
}
.label-stack__brandline {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 28px 0;
  color: var(--ink);
}
.label-stack__display {
  font-family: 'Söhne Breit', 'GT Walsheim', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.12;
  margin: 0 0 14px 0;
  color: var(--ink);
}
.label-stack__tagline {
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 22px 0;
  opacity: 0.85;
  color: var(--ink);
}
.label-stack__spec {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
  margin: 0;
  color: var(--ink);
}
.label-stack__body {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px 0;
  color: var(--ink);
}
.label-stack__caption {
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.7;
  margin: 0;
  color: var(--ink);
}
.label-stack__footer {
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 26, 26, 0.10);
}
.label-stack__footer p {
  font-family: 'JetBrains Mono', 'Söhne Mono', 'Menlo', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 4px 0;
  color: var(--ink);
}

@media (max-width: 768px) {
  .label-hero { aspect-ratio: 4 / 3; max-height: 70vh; }
  .label-stack { gap: 40px; margin-top: 56px; padding: 0 22px; }
  .label-stack__title { font-size: 32px; }
  .label-stack__brand { font-size: 30px; }
  .label-stack__display { font-size: 24px; }
  .label-stack__body { font-size: 16px; }
  .label-stack__tagline { font-size: 18px; }
}
