@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("literata-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("literata-400i.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("literata-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fragment Mono";
  src: url("fragment-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f1e8;
  --ivory: #fbf7f1;
  --sand: #efe4d4;
  --ink: #2b1a22;
  --ink-soft: #5d4750;
  --plum: #5a2740;
  --plum-deep: #3d1a2c;
  --fig: #8b3a52;
  --gold: #c4a265;
  --gold-deep: #9a7a3d;
  --leaf: #4a6350;
  --white: #fffdf9;
  --rule: #e4d5c4;
  --warning: #5c4a1f;
  --warning-bg: #f4ead0;
  --warning-rule: #e2d3a6;
  --card: #fffdf9;
  --footer: #2b1a22;
  --radius: 1.35rem;
  --radius-sm: 0.75rem;
  --header-h: 4.1rem;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Literata", Georgia, serif;
  --font-mono: "Fragment Mono", ui-monospace, monospace;
  --shadow: 0 18px 50px rgba(61, 26, 44, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 88% -10%, rgba(139, 58, 82, 0.12), transparent 46%),
    radial-gradient(ellipse at 8% 12%, rgba(196, 162, 101, 0.18), transparent 40%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 28%, var(--sand) 100%);
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--plum);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

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

.ad-disclosure {
  background: var(--warning-bg);
  color: var(--warning);
  border-bottom: 1px solid var(--warning-rule);
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.ad-disclosure p {
  margin: 0 auto;
  max-width: 78ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-deep);
  text-decoration: none;
}

.logo-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f3d78a, transparent 42%),
    radial-gradient(circle at 70% 70%, #8b3a52, #5a2740 70%);
  box-shadow: inset 0 0 0 2px rgba(196, 162, 101, 0.5);
  flex-shrink: 0;
}

.logo span {
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.78rem;
  display: none;
}

@media (min-width: 720px) {
  .logo span {
    display: inline;
  }
}

.nav {
  display: none;
  gap: 1.35rem;
  margin-left: auto;
  margin-right: 0.65rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav a:hover {
  color: var(--plum);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  padding: 0.95rem 1.55rem;
  min-height: 48px;
  font-size: 1.02rem;
  box-shadow: 0 10px 24px rgba(90, 39, 64, 0.22);
}

.btn-primary:hover {
  background: var(--plum-deep);
  color: var(--white);
}

.btn-sm {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--fig);
  color: var(--white);
  padding: 0.68rem 1.1rem;
  min-height: 44px;
  font-size: 0.88rem;
  white-space: nowrap;
}

@media (min-width: 860px) {
  .btn-sm {
    margin-left: 0;
  }
}

.btn-sm:hover {
  background: var(--plum-deep);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(1.4rem, 4vw, 3rem) 0 2rem;
  gap: 1.75rem;
}

@media (min-width: 920px) {
  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    min-height: calc(100svh - var(--header-h) - 4.5rem);
    gap: 3rem;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: var(--plum-deep);
  max-width: 12ch;
}

.lede {
  margin: 0;
  color: var(--ink-soft);
  max-width: 44ch;
  font-size: 1.08rem;
}

.note-card {
  margin: 0.15rem 0 0;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  max-width: 48ch;
}

.note-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
}

.buy-rail {
  margin-top: 0.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--plum-deep);
}

.price-note,
.merchant-note {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.metric-row {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

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

.metric-row li {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem;
}

.metric-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fig);
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  background: linear-gradient(160deg, #f3e6d6 0%, #ead7c4 48%, #d9c0b0 100%);
  border-radius: 2rem;
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.hero-frame > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border-radius: 1.45rem;
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.thumb {
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.9rem;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--rule);
}

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

.thumb.is-active,
.thumb:focus-visible {
  border-color: var(--fig);
  box-shadow: none;
}

.section {
  padding: clamp(2.6rem, 6vw, 5.2rem) 0;
}

.section-split {
  background: var(--white);
  border-block: 1px solid var(--rule);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--plum-deep);
}

.section-lede {
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  max-width: 54ch;
}

.disclaimer {
  padding: 1rem 1.15rem;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0 0.15rem;
  border-top: 1px solid var(--rule);
}

.feature-list li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.botany-grid {
  display: grid;
  gap: 1rem;
}

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

.botany-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.botany-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  color: var(--plum-deep);
}

.botany-card p,
.botany-card .card-body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

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

.steps li {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.4rem;
  display: grid;
  gap: 0.55rem;
}

.step-num {
  font-family: var(--font-mono);
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 0;
  color: var(--plum-deep);
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.scene {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

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

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

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 1px solid var(--rule);
}

.gallery img:first-child {
  grid-column: 1 / -1;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.spec-table th {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: 36%;
  background: #f8efe4;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.care-panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .care-panel {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.4rem;
  }
}

.care-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.buy-panel {
  display: grid;
  gap: 1.6rem;
  background: var(--plum-deep);
  color: #f6ece6;
  border-radius: 1.7rem;
  padding: clamp(1.4rem, 3.4vw, 2.3rem);
}

.buy-panel h2,
.buy-panel .price {
  color: var(--white);
}

.buy-panel p,
.buy-panel li {
  color: #e8d5cc;
}

.buy-panel a {
  color: #f0d9a6;
}

@media (min-width: 800px) {
  .buy-panel {
    grid-template-columns: 1.3fr 0.85fr;
    align-items: center;
  }
}

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

.buy-panel-cta {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.buy-panel .btn-primary {
  background: var(--gold);
  color: var(--plum-deep);
  box-shadow: none;
}

.buy-panel .btn-primary:hover {
  background: #d4b57a;
  color: var(--plum-deep);
}

.buy-panel .merchant-note {
  color: #d9c4bb;
}

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 0.9rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  font-family: var(--font-mono);
  color: var(--fig);
}

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

.faq p {
  margin: 0.65rem 0 0.25rem;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--footer);
  color: #d7c5bc;
  padding: 2.7rem 0 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #f0d9a6;
}

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

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.45fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.8rem;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
}

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

.footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(228, 213, 196, 0.2);
  font-size: 0.88rem;
}

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

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

.legal-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1.5rem;
  color: var(--plum-deep);
}

.legal-body {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.85rem);
  overflow-wrap: anywhere;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--plum-deep);
  margin: 1.6rem 0 0.7rem;
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--plum);
  margin: 1.25rem 0 0.45rem;
}

.legal-body ol,
.legal-body ul {
  color: var(--ink-soft);
}

.legal-toc {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}

.legal-toc p {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-deep);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-status {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

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

.legal-body td,
.legal-body th {
  border: 1px solid var(--rule);
  padding: 0.5rem 0.65rem;
  vertical-align: top;
}

.legal-source {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.spec-dl {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.spec-dl > div {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
}

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

.spec-dl dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.spec-dl dd {
  margin: 0;
}

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

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 560ms ease, transform 560ms ease;
  }
  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
}

.btn-ghost {
  background: transparent;
  color: var(--plum-deep);
  border: 1.5px solid var(--rule);
  padding: 0.95rem 1.55rem;
  min-height: 48px;
  font-size: 1.02rem;
}

.btn-ghost:hover {
  background: var(--sand);
  color: var(--plum);
}

.cookie-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  pointer-events: none;
}

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

.cookie-card {
  pointer-events: auto;
  width: min(760px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  background: var(--white);
  border-radius: 1rem;
  padding: 0.95rem 1.1rem 1rem;
  box-shadow: 0 -10px 36px rgba(43, 26, 34, 0.16);
  border: 1px solid var(--rule);
  animation: cookie-up 0.32s ease;
}

.cookie-card h2 {
  flex: 1 1 100%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  color: var(--plum-deep);
}

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

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

.cookie-actions .btn {
  flex: 0 1 auto;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  font-size: 0.95rem;
}

@keyframes cookie-up {
  from {
    transform: translateY(1.25rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-card {
    animation: none;
  }
}

.footer-links button.cookie-open {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #f0d9a6;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  cursor: pointer;
  text-align: left;
}

.footer-links button.cookie-open:hover {
  color: var(--white);
}
