:root {
  --ink: #18211f;
  --soft-ink: #31413d;
  --muted: #66736f;
  --paper: #fffdf8;
  --sand: #f3eee4;
  --mist: #e8eee7;
  --line: #d8d0c2;
  --forest: #24533d;
  --forest-2: #163b2b;
  --copper: #b96f32;
  --clay: #9d5c47;
  --blue: #406a78;
  --shadow: 0 24px 70px rgba(22, 31, 28, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 208, 194, 0.82);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--forest); }

.nav-cta {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--forest);
}

.hero {
  min-height: calc(100svh - 72px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 27, 24, 0.84), rgba(18, 27, 24, 0.48), rgba(18, 27, 24, 0.12)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1800&q=78") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0 128px;
  color: #fff;
}

.eyebrow,
.kicker,
.metric-label {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow { color: #f0d5aa; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 { margin-bottom: 8px; }

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.tool-button,
.product-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.tool-button.primary,
.product-link.primary {
  color: #fff;
  background: var(--forest);
}

.button.secondary,
.tool-button.secondary,
.product-link.secondary {
  color: var(--ink);
  background: #efe7d8;
}

.hero .button.primary {
  color: var(--forest-2);
  background: #fff;
}

.hero .button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.home-hero {
  min-height: calc(100svh - 72px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 21, 0.9), rgba(16, 24, 21, 0.62), rgba(16, 24, 21, 0.2)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1900&q=80") center/cover;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
}

.home-hero-content {
  position: relative;
  z-index: 1;
  padding: 116px 0 132px;
}

.home-hero .eyebrow {
  color: #f4d7aa;
}

.home-hero h1 {
  max-width: 920px;
  text-wrap: balance;
}

.home-hero .lead {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.home-hero .button.primary {
  color: var(--forest-2);
  background: #fff;
}

.home-hero .button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.home-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.home-hero-notes span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.home-proof {
  border-bottom: 1px solid var(--line);
  background: #fbf8f1;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-proof-grid div {
  padding: 26px 22px;
  border-left: 1px solid var(--line);
}

.home-proof-grid div:first-child {
  border-left: 0;
}

.home-proof-grid strong,
.home-proof-grid span {
  display: block;
}

.home-proof-grid strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.home-proof-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-editorial {
  background:
    linear-gradient(180deg, var(--paper), #f8f4eb);
}

.home-editorial-grid,
.home-standard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.home-check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.home-check-list span {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid rgba(216, 208, 194, 0.9);
  color: var(--soft-ink);
  font-weight: 760;
}

.home-check-list span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper);
}

.home-product-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
  max-width: 620px;
}

.home-product-stack img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  border: 1px solid rgba(216, 208, 194, 0.95);
  border-radius: var(--radius);
  padding: 6px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
  box-shadow: 0 12px 28px rgba(22, 31, 28, 0.1);
}

.home-product-stack img:nth-child(1) {
  grid-row: auto;
}

.home-product-stack img:nth-child(2) {
  aspect-ratio: auto;
}

.home-product-stack img:nth-child(3) {
  aspect-ratio: auto;
}

.home-concerns {
  background: var(--paper);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.concern-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.concern-tile img {
  width: 100%;
  height: 168px;
  display: block;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
}

.concern-tile div {
  padding: 20px;
}

.concern-tile h3,
.home-product-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.concern-tile p,
.home-product-card p,
.home-standard p,
.standard-list span {
  color: var(--muted);
  line-height: 1.7;
}

.home-products {
  background: #f4efe6;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.home-product-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 240px;
  aspect-ratio: 4 / 3;
  display: block;
  align-self: center;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
}

.home-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.home-standard {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 59, 43, 0.98), rgba(24, 33, 31, 0.98)),
    url("https://images.unsplash.com/photo-1603398938378-e54eab446dde?auto=format&fit=crop&w=1800&q=78") center/cover;
}

.home-standard .kicker {
  color: #f0d5aa;
}

.home-standard h2 {
  color: #fff;
}

.home-standard p {
  color: rgba(255, 255, 255, 0.76);
}

.standard-list {
  display: grid;
  gap: 12px;
}

.standard-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.standard-list strong,
.standard-list span {
  display: block;
}

.standard-list strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.standard-list span {
  color: rgba(255, 255, 255, 0.72);
}

.home-final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 59, 43, 0.96), rgba(64, 106, 120, 0.82)),
    url("https://images.unsplash.com/photo-1603398938378-e54eab446dde?auto=format&fit=crop&w=1800&q=78") center/cover;
}

.home-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-final-inner .kicker {
  color: #f0d5aa;
}

.home-final-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
}

.home-final-inner .button.primary {
  flex: 0 0 auto;
  color: var(--forest-2);
  background: #fff;
}

.section {
  padding: 80px 0;
}

.section.sand { background: var(--sand); }
.section.mist { background: var(--mist); }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-fit-grid { margin-top: 18px; }

.plain-card,
.product-card,
.article-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.plain-card,
.article-card,
.trust-card { padding: 24px; }

.plain-card p,
.article-card p,
.trust-card p,
.product-card p,
.page-copy p,
.page-copy li {
  color: var(--muted);
  line-height: 1.72;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 10px;
}

.price strong {
  font-size: 34px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  text-decoration: line-through;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: #e5eee3;
  font-size: 12px;
  font-weight: 850;
}

.offer-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.offer-card.featured {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest), var(--shadow);
}

.offer-card ul,
.step-list-clean,
.check-copy {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.step-card {
  padding: 22px;
  border-left: 4px solid var(--forest);
  border-radius: var(--radius);
  background: var(--paper);
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: 850;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.stars {
  color: var(--copper);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.safety-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff7ed;
}

.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-grid div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.stat-grid div:first-child { border-left: 0; }
.stat-grid strong { display: block; font-size: 26px; }
.stat-grid span { color: var(--muted); font-size: 14px; }

.tool-hero {
  padding: 72px 0 38px;
  background:
    linear-gradient(135deg, rgba(36, 83, 61, 0.95), rgba(64, 106, 120, 0.88)),
    url("https://images.unsplash.com/photo-1603398938378-e54eab446dde?auto=format&fit=crop&w=1600&q=78") center/cover;
  color: #fff;
}

.tool-hero .kicker,
.tool-hero .lead { color: rgba(255, 255, 255, 0.84); }

.tool-shell {
  margin-top: -42px;
  padding-bottom: 80px;
}

.assessment {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}

.assessment-side,
.assessment-main {
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.assessment-side {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.assessment-main {
  min-height: 720px;
  padding: 28px;
}

.progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.progress-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  background: #f2ece0;
  font-weight: 800;
}

.progress-list li.active {
  color: #fff;
  background: var(--forest);
}

.progress-list li.done {
  color: var(--forest-2);
  background: #dfe9dc;
}

.summary-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.tool-step { display: none; }
.tool-step.active { display: block; }

.tool-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.tool-topline span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.bar {
  flex: 1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee6d7;
}

.bar i {
  display: block;
  width: 16.6%;
  height: 100%;
  background: var(--forest);
  transition: width 220ms ease;
}

.body-map-layout {
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr;
  gap: 28px;
  align-items: center;
}

.body-map {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f9f5ee, #ede6da);
}

.meridian-map {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(248, 213, 141, 0.28), transparent 18%),
    radial-gradient(circle at 50% 46%, rgba(36, 83, 61, 0.16), transparent 38%),
    linear-gradient(180deg, #fbf5ea, #e7ded0);
}

.meridian-map::after {
  content: "Meridian-inspired care map";
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: rgba(49, 65, 61, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.body-map svg {
  display: block;
  width: min(100%, 270px);
  margin: 0 auto;
}

.body-line {
  fill: none;
  stroke: #52625d;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.body-zone {
  fill: rgba(185, 111, 50, 0.24);
  stroke: rgba(185, 111, 50, 0.82);
  stroke-width: 2;
}

.silhouette {
  fill: rgba(255, 253, 248, 0.82);
  stroke: rgba(49, 65, 61, 0.42);
  stroke-width: 2;
}

.meridian {
  fill: none;
  stroke: rgba(36, 83, 61, 0.72);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
}

.meridian.main {
  stroke: rgba(157, 92, 71, 0.84);
  stroke-width: 3.2;
  stroke-dasharray: 0;
}

.acu-point {
  fill: url("#acuGlow");
  stroke: rgba(255, 253, 248, 0.92);
  stroke-width: 3;
  filter: drop-shadow(0 4px 10px rgba(141, 78, 50, 0.35));
}

.acu-point.active {
  r: 9;
}

.map-label {
  fill: rgba(49, 65, 61, 0.72);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.choice-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.choice {
  min-height: 132px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffaf1;
  text-align: left;
  cursor: pointer;
}

.choice:hover,
.choice:focus-visible {
  border-color: rgba(36, 83, 61, 0.7);
  outline: none;
  box-shadow: 0 12px 28px rgba(22, 31, 28, 0.1);
}

.choice.selected {
  border-color: var(--forest);
  background: #eef6ed;
  box-shadow: inset 0 0 0 2px var(--forest);
}

.choice strong { font-size: 17px; }
.choice small { color: var(--muted); line-height: 1.45; }

.tag {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.slider-panel {
  display: grid;
  gap: 18px;
}

.range-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
}

.range-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.range-card output {
  color: var(--forest);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--forest);
}

.scale-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
  color: var(--soft-ink);
  line-height: 1.5;
}

.check-list input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.tool-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.result-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.report,
.recommendation {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
}

.report-grid,
.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.report-item,
.product-meta div {
  padding: 14px;
  border-radius: var(--radius);
  background: #efe7d8;
}

.report-item span,
.product-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.meter {
  margin: 18px 0;
}

.meter-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ddcf;
}

.meter-track i {
  display: block;
  height: 100%;
  background: var(--copper);
}

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

.score-card {
  padding: 14px;
  border-radius: var(--radius);
  background: #efe7d8;
}

.score-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.score-ring {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--forest) var(--score), #d8d0c2 0);
  color: var(--ink);
  font-weight: 900;
}

.score-ring::before {
  content: attr(data-score);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fffaf1;
}

.timeline {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.timeline-item strong {
  color: var(--forest);
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.compare-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: #efe7d8;
}

.compare-row strong,
.compare-row span {
  display: block;
}

.compare-row span {
  color: var(--muted);
  font-size: 13px;
}

.mini-faq {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mini-faq details {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-faq summary {
  cursor: pointer;
  font-weight: 850;
}

.copy-summary {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.alert {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #ddb191;
  border-radius: var(--radius);
  color: #693b20;
  background: #fff0e5;
  line-height: 1.55;
}

.product-card {
  overflow: hidden;
}

.product-card img,
.product-visual {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(36, 83, 61, 0.78), rgba(185, 111, 50, 0.48)),
    url("https://images.unsplash.com/photo-1584362917165-526a968579e8?auto=format&fit=crop&w=1200&q=76") center/cover;
}

.product-card img {
  display: block;
  padding: 8px;
  background: #f8f2e7;
}

.product-photo {
  width: 100%;
  height: 230px;
  display: block;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.product-gallery img {
  width: 100%;
  height: 190px;
  display: block;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
}

.product-gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.product-card .pad { padding: 24px; }

.product-actions,
.email-capture {
  display: grid;
  gap: 10px;
}

.email-capture {
  margin-top: 12px;
}

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

.email-row input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}

.email-row button {
  border: 0;
  border-radius: var(--radius);
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.page-hero {
  padding: 76px 0 54px;
  background: var(--sand);
}

.page-copy {
  max-width: 820px;
}

.page-copy h2 {
  margin-top: 38px;
  font-size: 32px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.article-card a,
.text-link {
  color: var(--forest);
  font-weight: 850;
}

.article-card {
  position: relative;
  overflow: hidden;
}

.article-card::before {
  display: none;
}

.article-card:nth-child(1) { --card-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(2) { --card-image: url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(3) { --card-image: url("https://images.unsplash.com/photo-1516715094483-75da7dee9758?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(4) { --card-image: url("https://images.unsplash.com/photo-1543168256-418811576931?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(5) { --card-image: url("https://images.unsplash.com/photo-1603398938378-e54eab446dde?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(6) { --card-image: url("https://images.unsplash.com/photo-1506784365847-bbad939e9335?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(7) { --card-image: url("https://images.unsplash.com/photo-1584362917165-526a968579e8?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(8) { --card-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(9) { --card-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(10) { --card-image: url("https://images.unsplash.com/photo-1522163182402-834f871fd851?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(11) { --card-image: url("https://images.unsplash.com/photo-1528360983277-13d401cdc186?auto=format&fit=crop&w=900&q=72"); }
.article-card:nth-child(12) { --card-image: url("https://images.unsplash.com/photo-1499750310107-5fef28a66643?auto=format&fit=crop&w=900&q=72"); }

.article-page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 27, 24, 0.86), rgba(18, 27, 24, 0.48)),
    var(--hero-image, url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1800&q=76")) center/cover;
}

.article-page-hero .kicker,
.article-page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.article-image-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.article-thumb {
  width: calc(100% + 48px);
  height: 156px;
  display: block;
  margin: -24px -24px 18px;
  object-fit: cover;
}

.article-hero-img {
  width: min(100%, 860px);
  aspect-ratio: 16 / 9;
  display: block;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.article-thumb[src*="assets/products/webp"] {
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
}

.article-hero-img[src*="assets/products/webp"] {
  width: auto;
  max-width: min(100%, 860px);
  height: auto;
  max-height: 520px;
  aspect-ratio: auto;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  background: #f8f2e7;
}

.site-footer {
  padding: 42px 0;
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 50;
  transform: translate(-50%, 120px);
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.toast.show { transform: translate(-50%, 0); }
.hidden { display: none !important; }

.image-zoomable {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 27, 24, 0.86);
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  width: auto;
  max-width: min(100%, 980px);
  height: auto;
  max-height: calc(100svh - 112px);
  border-radius: var(--radius);
  background: #f8f2e7;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.image-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 9px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero { min-height: 760px; }
  h1 { font-size: 54px; }
  h2 { font-size: 38px; }
  .grid-3,
  .grid-4,
  .grid-2,
  .stat-grid,
  .home-proof-grid,
  .home-editorial-grid,
  .home-standard-grid,
  .home-product-grid,
  .concern-grid,
  .assessment,
  .body-map-layout,
  .result-layout,
  .footer-grid,
  .safety-strip {
    grid-template-columns: 1fr;
  }
  .home-hero { min-height: 760px; }
  .home-product-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .home-product-stack img,
  .home-product-stack img:nth-child(1),
  .home-product-stack img:nth-child(2),
  .home-product-stack img:nth-child(3) {
    grid-row: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .home-product-card { grid-template-columns: 1fr; }
  .home-product-card img {
    min-height: 0;
    max-height: 220px;
  }
  .home-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .assessment-side { position: static; }
  .progress-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .progress-list li { font-size: 12px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  .section { padding: 56px 0; }
  h1 {
    font-size: 40px;
    line-height: 1;
  }
  h2 {
    font-size: 30px;
    line-height: 1.08;
  }
  .lead,
  .hero .lead,
  .home-hero .lead {
    font-size: 17px;
  }
  .hero-content { padding: 64px 0 112px; }
  .home-hero-content { padding: 72px 0 112px; }
  .home-proof-grid div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }
  .home-proof-grid div:first-child { border-top: 0; }
  .home-product-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .home-product-stack img,
  .home-product-stack img:nth-child(1),
  .home-product-stack img:nth-child(2),
  .home-product-stack img:nth-child(3) {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .concern-tile h3,
  .home-product-card h3 {
    font-size: 22px;
  }
  .home-product-copy { padding: 22px; }
  .home-product-card img { max-height: 210px; }
  .concern-tile img,
  .product-photo,
  .product-card img { height: 170px; }
  .product-gallery img { height: 160px; }
  .home-final-cta { padding: 56px 0; }
  .choice-grid,
  .choice-grid.three,
  .report-grid,
  .product-meta,
  .score-grid,
  .result-actions,
  .product-gallery { grid-template-columns: 1fr; }
  .assessment-main,
  .assessment-side { padding: 18px; }
  .choice { min-height: 112px; }
  .tool-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .bar { width: 100%; }
  .tool-actions {
    position: sticky;
    bottom: 0;
    margin: 24px -18px -18px;
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.94);
  }
  .tool-button { flex: 1; }
  .email-row { flex-direction: column; }
}
