:root {
  --bg: #f7f7f5;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #5c5c5c;
  --line: #e6e6e4;
  --accent: #111111;
  --warn-bg: #f3f1ea;
  --radius: 0;
  --header-h: 3.5rem;
  --font-display: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: var(--ink);
  text-underline-offset: 0.16em;
}

a:hover {
  opacity: 0.65;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(680px, calc(100% - 2rem));
}

.adbar {
  background: var(--paper);
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 1rem;
  text-align: left;
  font-size: 0.8rem;
}

.adbar strong:first-child {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
}

.adbar p {
  margin: 0 auto;
  max-width: 96ch;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.masthead-inner {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: none;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name small {
  display: none;
}

.nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav a:hover {
  color: var(--ink);
  opacity: 1;
}

.menu-btn {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.4rem 1rem 0.8rem;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 0.65rem 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-btn,
  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.3rem;
  min-height: 46px;
  font-size: 0.85rem;
}

.btn-primary:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}

.btn-sm {
  background: transparent;
  color: var(--ink);
  padding: 0.45rem 0.9rem;
  min-height: 38px;
  font-size: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-sm:hover {
  background: var(--ink);
  color: #fff;
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.85rem 1.3rem;
  min-height: 46px;
}

.hero {
  padding: 3rem 0 2.5rem;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.lede {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 42ch;
}

.note-card {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 46ch;
}

.note-card p {
  margin: 0;
  font-size: 0.92rem;
}

.buy-rail {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.price {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.03em;
}

.price-note,
.merchant-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.facts li {
  padding: 0.85rem 0.8rem 0.85rem 0;
  border-right: 1px solid var(--line);
}

.facts li:last-child {
  border-right: none;
}

.facts b {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.facts span {
  font-size: 0.74rem;
  color: var(--muted);
}

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

  .facts li {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

.product-well {
  background: var(--bg);
  padding: 1.5rem 1rem 1rem;
  border: 1px solid var(--line);
}

.hero-frame img {
  width: 100%;
  max-height: min(420px, 56vh);
  object-fit: contain;
  margin-inline: auto;
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.thumb {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.is-active,
.thumb:focus-visible {
  border-color: var(--ink);
}

.section {
  padding: 3.5rem 0;
}

.section h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
}

.section-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-lede {
  margin: 0 0 1.6rem;
  color: var(--muted);
  max-width: 52ch;
}

.panel {
  background: var(--paper);
  padding: 0;
}

.feature-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.feature-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  padding-left: 0;
}

.feature-list li::before {
  content: none;
}

.disclaimer {
  margin-top: 1.4rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.care {
  display: grid;
  gap: 2rem;
  background: transparent;
  color: inherit;
}

@media (min-width: 860px) {
  .care {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }
}

.care img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.care-copy {
  padding: 0;
}

.care p {
  color: var(--muted);
}

.flora {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .flora {
    grid-template-columns: repeat(3, 1fr);
  }

  .flora article:nth-child(2) {
    transform: none;
  }
}

.flora article {
  background: transparent;
}

.flora img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.flora h3 {
  margin: 0.85rem 0 0.3rem;
  font-size: 1rem;
  font-weight: 600;
}

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

.flora-body {
  padding: 0;
}

.how {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}

@media (min-width: 800px) {
  .how {
    grid-template-columns: repeat(2, 1fr);
  }
}

.how li {
  background: transparent;
  padding: 1.2rem 1.2rem 1.2rem 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .how li {
    border-right: 1px solid var(--line);
    padding-right: 1.4rem;
  }

  .how li:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.step-num {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.6rem;
  background: none;
  width: auto;
  height: auto;
}

.how h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

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

.scene {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .scene {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  width: 38%;
  background: transparent;
}

.spec-dl {
  display: grid;
  margin: 1rem 0;
}

.spec-dl > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.6rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 560px) {
  .spec-dl > div {
    grid-template-columns: 1fr;
  }
}

.spec-dl dt {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec-dl dd {
  margin: 0;
}

.contacts-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-card {
  background: transparent;
  padding: 0;
}

.contact-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.checkout-band {
  display: grid;
  gap: 1.5rem;
  background: var(--paper);
  color: inherit;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

@media (min-width: 800px) {
  .checkout-band {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: center;
  }
}

.checkout-band h2,
.checkout-band .price {
  color: inherit;
}

.checkout-band p,
.checkout-band li {
  color: var(--muted);
}

.plain-list {
  padding-left: 1.1rem;
}

.checkout-cta {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
  margin: 0;
  background: transparent;
}

.faq summary {
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "–";
}

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

.site-footer {
  background: var(--paper);
  color: var(--muted);
  padding: 2.4rem 0 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

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

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--ink);
  margin: 0 0 0.55rem;
  font-style: normal;
}

.footer-label {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-note {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.health-disclaimer {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: #888;
  max-width: 80ch;
}

.legal-main {
  padding: 2rem 0 3rem;
}

.legal-kicker {
  margin: 0 0 1rem;
}

.legal-main h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0 0 1.2rem;
}

.legal-body {
  background: var(--paper);
  padding: 0;
}

.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.6rem 0 0.6rem;
}

.legal-body h3 {
  font-size: 1rem;
  margin: 1.1rem 0 0.4rem;
}

.legal-toc {
  margin: 0 0 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.legal-toc p {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.legal-status {
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-body td,
.legal-body th {
  border-bottom: 1px solid var(--line);
  border-left: none;
  border-right: none;
  padding: 0.5rem 0;
  vertical-align: top;
}

.legal-source {
  margin-top: 1.2rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.cookie-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem;
  pointer-events: none;
}

.cookie-overlay[hidden] {
  display: none;
}

.cookie-card {
  pointer-events: auto;
  width: min(720px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  background: var(--paper);
  padding: 1rem;
  border: 1px solid var(--line);
}

.cookie-card h2 {
  flex: 1 1 100%;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.cookie-card p {
  flex: 1 1 14rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-left: auto;
}

.cookie-actions .btn {
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
}

.footer-links button.cookie-open {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
