:root {
  color-scheme: light;
  --ink: #201714;
  --muted: #6f655f;
  --paper: #fbf5ef;
  --cream: #f3e8df;
  --rose: #b96a79;
  --cacao: #60392d;
  --leaf: #5c6c53;
  --stone: #e7ddd3;
  --line: rgba(32, 23, 20, 0.11);
  --shadow: 0 24px 70px rgba(32, 23, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --nav-offset: 72px;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(236, 206, 196, 0.42), transparent 34%),
    radial-gradient(circle at top right, rgba(222, 221, 196, 0.35), transparent 28%),
    linear-gradient(180deg, #fffaf6 0%, var(--paper) 30%, #f8f1ea 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

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

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

:focus-visible {
  outline: 2px solid var(--cacao);
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--cacao);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(252, 249, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header.nav-open {
  background: rgba(252, 249, 245, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-width: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 24px;
  height: 24px;
}

nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.header-cta {
  padding: 8px 20px;
  background: var(--cacao);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.attribution {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 42px;
  align-items: center;
  position: relative;
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cacao);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--cream);
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.hero .lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.button.primary {
  background: var(--cacao);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--cacao);
  border: 1.5px solid var(--cacao);
}

.trust-pills {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-pills span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-pills span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
}

.hero-benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-benefit-card {
  padding: 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 231, 0.88));
  box-shadow: 0 10px 28px rgba(26, 20, 18, 0.05);
}

.hero-benefit-card strong,
.hero-benefit-card span {
  display: block;
}

.hero-benefit-card strong {
  font-size: 0.94rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.hero-benefit-card span {
  font-size: 0.84rem;
  line-height: 1.46;
  color: var(--muted);
}

.hero-media {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
}

.hero-media-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  object-position: center center;
}

.hero-spotlight {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 231, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(26, 20, 18, 0.06);
}

.hero-spotlight-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.hero-spotlight-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.hero-spotlight-product {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.hero-spotlight-product img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(26, 20, 18, 0.08);
  background: #fff;
  box-shadow: 0 12px 28px rgba(26, 20, 18, 0.08);
}

.hero-spotlight-details {
  display: grid;
  gap: 14px;
}

.hero-spotlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-spotlight-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(96, 57, 45, 0.08);
  color: var(--cacao);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-spotlight-price {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.hero-spotlight-note {
  margin: -4px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-proof-strip {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 239, 231, 0.86));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 16px;
  align-items: center;
}

.hero-proof-copy strong,
.hero-proof-copy span {
  display: block;
}

.hero-proof-copy strong {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}

.hero-proof-copy span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-proof-thumbs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.hero-proof-thumbs img {
  width: 64px;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(26, 20, 18, 0.08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(26, 20, 18, 0.08);
}

/* Section */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 32px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cacao);
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section .subhead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 32px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.index-entry-section {
  padding-top: 8px;
}

.index-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 231, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.index-entry-copy .subhead {
  max-width: 580px;
}

.index-entry-preview {
  display: grid;
  gap: 16px;
}

.index-entry-score,
.index-entry-points {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(26, 20, 18, 0.08);
  background: rgba(252, 249, 245, 0.88);
}

.index-entry-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cacao);
}

.index-entry-score strong,
.index-entry-score span {
  display: block;
}

.index-entry-score strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.index-entry-score span {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.index-entry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.index-entry-points span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.card {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px 22px;
  border: 1px solid var(--line);
}

.card .card-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--cacao);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Comparison */
.comparison {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 32px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 18px 22px;
  font-size: 0.9rem;
  align-items: center;
}

.comparison-row.header {
  background: var(--cacao);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-row:not(.header) {
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row .highlight {
  color: var(--rose);
  font-weight: 700;
}

.blend-intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blend-intro-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(96, 57, 45, 0.08);
  color: var(--cacao);
  font-size: 0.86rem;
  font-weight: 700;
}

.evidence-band {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 32px;
  align-items: center;
}

.evidence-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.evidence-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.evidence-copy .subhead {
  max-width: 560px;
}

.evidence-points {
  display: grid;
  gap: 14px;
}

.evidence-points article {
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.evidence-points span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cacao);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.evidence-points h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
}

.evidence-points p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--muted);
}

.trust-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 30px;
  align-items: center;
  padding-top: 0;
}

.trust-story-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.trust-story-media img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.trust-story-copy .subhead {
  max-width: 560px;
  margin-bottom: 20px;
}

.trust-story-attribution {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
  font-style: italic;
}

.trust-story-points {
  display: flex;
  gap: 14px 18px;
  flex-wrap: wrap;
}

.trust-story-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-story-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  flex: 0 0 7px;
}

/* Product */
.shop-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.shop-guide-card {
  display: block;
  padding: 18px 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 231, 0.92));
  box-shadow: 0 10px 28px rgba(26, 20, 18, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.shop-guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(26, 20, 18, 0.09);
  border-color: rgba(211, 140, 155, 0.45);
}

.shop-guide-card.is-recommended {
  border-color: rgba(96, 47, 16, 0.22);
  box-shadow: 0 18px 38px rgba(96, 47, 16, 0.08);
}

.shop-guide-kicker,
.shop-guide-copy,
.shop-guide-card strong {
  display: block;
}

.shop-guide-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}

.shop-guide-card strong {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.shop-guide-copy {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-align: center;
  padding-bottom: 24px;
}

.product-card.is-featured {
  border-color: rgba(96, 47, 16, 0.24);
  box-shadow: 0 18px 40px rgba(96, 47, 16, 0.08);
}

.product-card.is-featured .tag {
  color: var(--rose);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--stone);
}

.product-card .card-body {
  padding: 18px 16px 0;
  text-align: left;
}

.product-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cacao);
  margin-bottom: 6px;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.product-card p {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.product-card .product-fit {
  margin-top: 10px;
  color: var(--ink);
}

.product-card .product-fit strong {
  color: var(--cacao);
}

.product-card .price {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
  color: var(--cacao);
}

.product-card .price-note {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.product-card .price-note span {
  display: block;
}

.product-purchase-stack {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.purchase-options-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cacao);
}

.subscription-frequency {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.subscription-frequency-option {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.subscription-frequency-option.is-active {
  background: var(--cream);
  color: var(--cacao);
  border-color: var(--cacao);
  box-shadow: inset 0 0 0 1px rgba(96, 47, 16, 0.12);
}

.subscription-form {
  margin-top: 0;
}

.one-time-form {
  margin-top: 0;
}

.purchase-button,
.product-card .cart-item-add {
  margin-top: 0;
  display: inline-block;
  width: 100%;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.purchase-button-primary {
  background: var(--cacao);
  color: #fff;
  border: 0;
}

.purchase-button-primary[disabled] {
  opacity: 0.8;
  cursor: progress;
}

.purchase-button-secondary {
  background: transparent;
  color: var(--cacao);
  border: 1px solid var(--line);
}

.product-grid-note {
  margin: 16px 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.travel-pack-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(26, 20, 18, 0.07);
}

.travel-pack-panel .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cacao);
  margin: 0 0 6px;
}

.travel-pack-panel h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.travel-pack-panel p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.travel-pack-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.travel-pack-actions .cart-item-add {
  padding: 9px 14px;
  background: var(--cream);
  color: var(--cacao);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

/* Instagram Section */
.instagram-section {
  background: var(--cream);
  margin-top: 64px;
  padding: 64px 32px;
}

.instagram-inner {
  max-width: 980px;
  margin: 0 auto;
}

.ig-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.ig-card {
  background: var(--paper);
  border-radius: 8px;
  padding: 24px 18px;
  border: 1px solid var(--line);
}

.ig-card .ig-card-visual {
  width: 100%;
  height: 140px;
  background: var(--stone);
  border-radius: 6px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.ig-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.ig-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 72px 32px 80px;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 900;
  margin: 0 0 12px;
}

.final-cta p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

/* Footer */
footer {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.powered-by img {
  height: 18px;
  width: auto;
}

/* Cart */
.nutri-cart {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(320px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 50;
  transform: translateY(calc(100% + 16px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.nutri-cart.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nutri-cart-launcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(26, 20, 18, 0.1);
  background: rgba(252, 249, 245, 0.97);
  box-shadow: 0 16px 40px rgba(26, 20, 18, 0.12);
  color: var(--ink);
  cursor: pointer;
  z-index: 49;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.nutri-cart-launcher:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(26, 20, 18, 0.16);
}

.nutri-cart-launcher[hidden],
.nutri-cart-launcher.is-hidden {
  display: none;
}

.nutri-cart-launcher-label,
.nutri-cart-launcher strong {
  display: block;
}

.nutri-cart-launcher-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nutri-cart-launcher strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cacao);
}

.nutri-cart-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--muted);
  padding: 2px 6px;
  line-height: 1;
  z-index: 1;
}

.nutri-cart-head {
  margin-bottom: 14px;
  padding-top: 0;
}

.nutri-cart-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cacao);
  margin-bottom: 4px;
}

.nutri-cart-head h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0;
}

.cart-progress {
  margin: 10px 0 14px;
}

.cart-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.cart-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--stone);
  border-radius: 3px;
  overflow: hidden;
}

.cart-progress-fill {
  height: 100%;
  background: var(--cacao);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.nutri-cart-items {
  margin: 12px 0;
}

.nutri-cart-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.nutri-cart-line img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--stone);
}

.nutri-cart-line > div {
  flex: 1;
  min-width: 0;
}

.nutri-cart-line strong,
.nutri-cart-line span {
  display: block;
}

.nutri-cart-line .quantity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nutri-cart-line .quantity-row button {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 26px;
  height: 26px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
}

.nutri-cart-empty {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 16px 0;
  text-align: center;
}

.nutri-cart-empty strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.nutri-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1.5px solid var(--ink);
  font-weight: 700;
}

.button.full {
  display: block;
  width: 100%;
  text-align: center;
}

.cart-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.is-pulsing {
  animation: cartPulse 0.4s ease;
}

@keyframes cartPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(26, 20, 18, 0.08);
  cursor: pointer;
  z-index: 72;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + var(--safe-bottom));
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--cacao);
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(26, 20, 18, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 45;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.ng-v2-open .sticky-cta,
.mobile-nav-open .sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

@media (max-width: 980px) {
  .hero,
  .evidence-band,
  .trust-story {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-offset);
    left: 16px;
    right: 16px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - var(--nav-offset) - 24px);
    overflow-y: auto;
    padding: 16px;
    background: rgba(252, 249, 245, 0.98);
    border: 1px solid rgba(26, 20, 18, 0.08);
    border-radius: 14px;
    box-shadow: 0 28px 60px rgba(26, 20, 18, 0.18);
    z-index: 65;
    gap: 8px;
    font-size: 1rem;
  }

  nav.open a {
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    font-weight: 700;
  }

  .nav-backdrop.is-visible {
    position: fixed;
    inset: 0;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(26, 20, 18, 0.16);
    backdrop-filter: blur(2px);
    z-index: 60;
  }

  .card-grid,
  .hero-benefit-list,
  .shop-guide,
  .product-grid,
  .ig-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .travel-pack-panel {
    grid-template-columns: 1fr;
  }

  .travel-pack-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero {
    padding: 52px 20px 44px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .lede,
  .hero-copy,
  .hero-media-note,
  .hero-proof-strip,
  .hero .eyebrow {
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero-media-frame img {
    object-position: 60% center;
  }

  .hero-spotlight-product {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-proof-thumbs {
    justify-content: flex-start;
  }

  .hero-proof-thumbs img {
    width: min(28vw, 82px);
  }

  .section {
    padding: 48px 20px;
  }

  .card-grid,
  .index-entry-panel,
  .shop-guide,
  .product-grid,
  .hero-benefit-list,
  .ig-card-grid {
    grid-template-columns: 1fr;
  }

  .blend-intro-pills {
    flex-direction: column;
  }

  .travel-pack-panel {
    padding: 18px;
  }

  .travel-pack-actions .cart-item-add {
    width: 100%;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    padding: 14px 16px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .comparison-row.header {
    display: none;
  }

  .comparison-row span:first-child {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--cacao);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .comparison-row span:nth-child(2)::before {
    content: "Typical: ";
    font-weight: 700;
    color: var(--ink);
  }

  .comparison-row span:nth-child(3) {
    padding-top: 8px;
    border-top: 1px dashed var(--line);
    color: var(--ink);
    font-weight: 600;
  }

  .comparison-row span:nth-child(3)::before {
    content: "Nutrigazm: ";
    font-weight: 800;
    color: var(--rose);
  }

  .evidence-points article {
    padding: 15px 16px;
  }

  .trust-story-points {
    gap: 10px 14px;
  }

  .nutri-cart {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    padding: 16px;
  }

  .nutri-cart-launcher {
    right: 12px;
    left: 12px;
    bottom: calc(12px + var(--safe-bottom));
    justify-content: space-between;
    padding: 12px 14px;
  }

  body.has-sticky-cta .nutri-cart-launcher {
    bottom: calc(92px + var(--safe-bottom));
  }

  body.has-sticky-cta .ng-v2-floating {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
  }

  .mobile-nav-open .ng-v2-floating,
  .mobile-nav-open .nutri-cart-launcher {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .attribution {
    display: none;
  }

  .final-cta {
    padding: 48px 20px;
  }

footer {
  flex-direction: column;
  gap: 12px;
  }
}

/* Beauty-specific overrides */
.hero::before {
  content: "";
  position: absolute;
  inset: 28px 18px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(244, 232, 223, 0.78));
  border: 1px solid rgba(96, 57, 45, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  z-index: -1;
}

.hero h1 {
  max-width: 12ch;
}

.beauty-media-frame {
  background:
    radial-gradient(circle at top right, rgba(231, 191, 205, 0.42), transparent 32%),
    linear-gradient(180deg, #f8ece5 0%, #efe4da 100%);
}

.market-comparison .comparison-row span:last-child {
  font-weight: 600;
}

.beauty-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.stack-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 236, 229, 0.92));
  border: 1px solid rgba(96, 57, 45, 0.1);
  box-shadow: 0 12px 34px rgba(32, 23, 20, 0.06);
}

.stack-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.stack-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.stack-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.quote-banner {
  margin-top: 24px;
  padding: 20px 22px;
  display: grid;
  gap: 8px;
  border-left: 4px solid rgba(96, 57, 45, 0.3);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

.quote-banner strong {
  font-size: 1.05rem;
}

.quote-banner span {
  color: var(--muted);
}

.field-guide-section {
  padding-top: 8px;
}

.field-guide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 231, 223, 0.96));
  border: 1px solid rgba(96, 57, 45, 0.08);
  box-shadow: var(--shadow);
}

.field-guide-copy .subhead {
  margin-bottom: 0;
}

.field-guide-form {
  display: grid;
  gap: 10px;
}

.field-guide-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cacao);
}

.field-guide-row {
  display: flex;
  gap: 12px;
}

.field-guide-row input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.95rem;
}

.field-guide-message {
  min-height: 20px;
  margin: 0;
  font-size: 0.84rem;
  display: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.faq-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(96, 57, 45, 0.08);
  box-shadow: 0 10px 28px rgba(32, 23, 20, 0.05);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero::before {
    inset: 20px 14px 0;
  }

  .beauty-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-guide-panel {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero::before {
    inset: 16px 10px 0;
    border-radius: 24px;
  }

  .hero-spotlight,
  .field-guide-panel,
  .stack-card,
  .faq-card {
    border-radius: 18px;
  }

  .beauty-stack,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .field-guide-row {
    flex-direction: column;
  }
}
