/* ============================================================
   healthest — The healthest Mug (single-product store)
   Palette: bright warm white, forest green, steel neutrals
   Type: Fraunces (display serif) + Hanken Grotesk (body)
   ============================================================ */

:root {
  --bg: #f6f4ec;
  --bg-deep: #ece8db;
  --paper: #fbfaf4;
  --ink: #1b2a20;
  --ink-soft: #4c5a4f;

  --green: #1f6b3a;
  --green-deep: #16512b;
  --green-soft: #2f7d46;
  --sand: #c9a86b;

  --pp-blue: #003087;
  --pp-cyan: #0070e0;

  --line: rgba(27, 42, 32, 0.14);

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Hanken Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---- brand ---- */
.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.brand__word { font-family: var(--f-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--green); }
.leaf { width: 24px; height: 24px; color: var(--green); flex: none; }
.leaf__l { fill: var(--green); }
.leaf__r { fill: var(--green-soft); }

/* ---- shared ---- */
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 600; color: var(--green); margin-bottom: 1.2rem;
}
.eyebrow--light { color: var(--sand); }
.section-title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.03; letter-spacing: -0.02em;
}
.section-head { max-width: 660px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.stars { color: #d99a2b; letter-spacing: 0.08em; }

.btn {
  --btn-bg: var(--green); --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--f-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.9rem 1.6rem; border: 1px solid var(--btn-bg); border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, filter .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(22, 81, 43, 0.5); }
.btn:active { transform: translateY(-1px); }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn--paypal { --btn-bg: #ffc439; --btn-fg: #14213d; border-color: #f0b32e; }
.btn--paypal:hover { filter: brightness(1.03); box-shadow: 0 14px 26px -12px rgba(20,33,61,.4); }
.pp { font-weight: 800; font-style: italic; letter-spacing: -0.02em; }
.pp1 { color: var(--pp-blue); }
.pp2 { color: var(--pp-cyan); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1rem clamp(1.2rem, 5vw, 4rem);
  background: rgba(246, 244, 236, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__links { display: flex; gap: 2rem; margin-left: auto; margin-right: 0.4rem; }
.nav__links a { color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: 0.98rem; position: relative; transition: color 0.25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1.5px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); cursor: pointer; transition: transform .3s var(--ease), border-color .3s;
}
.cart-btn:hover { transform: translateY(-2px); border-color: var(--green); }
.cart-btn__count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 100px;
  background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 700;
}

/* ============================================================
   PRODUCT HERO
   ============================================================ */
.product {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.product__blob {
  position: absolute; width: 55vw; height: 55vw; left: -8vw; top: -14vw;
  border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(47,125,70,0.22), transparent 66%);
}

.product__media { position: relative; z-index: 1; }
.media__frame {
  position: relative; border-radius: 30px; overflow: hidden;
  background: linear-gradient(160deg, #efece1, #e2ddce);
  box-shadow: 0 40px 70px -40px rgba(27, 42, 32, 0.5);
  aspect-ratio: 3 / 4;
}
.media__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media__chip {
  position: absolute; background: rgba(251, 250, 244, 0.94); backdrop-filter: blur(4px);
  border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 600; color: var(--green-deep);
  box-shadow: 0 10px 22px -14px rgba(27, 42, 32, 0.5); animation: bob 5s ease-in-out infinite;
}
.media__chip--a { top: 6%; left: 6%; }
.media__chip--b { bottom: 8%; right: 6%; animation-delay: -2.5s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .media__chip { animation: none; } }

.media__thumbs { list-style: none; display: flex; gap: 0.7rem; margin-top: 0.9rem; }
.media__thumbs li {
  width: 72px; height: 88px; border-radius: 14px; overflow: hidden;
  border: 1.5px solid var(--line); cursor: pointer; background: #e6e1d3;
  transition: border-color .25s, transform .25s var(--ease);
}
.media__thumbs li:hover { transform: translateY(-2px); }
.media__thumbs li.is-active { border-color: var(--green); }
.media__thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* -- info panel -- */
.product__info { position: relative; z-index: 2; }
.product__info .eyebrow { margin-bottom: 0.9rem; }
.product__title {
  font-family: var(--f-display); font-weight: 420;
  font-size: clamp(2.05rem, 4.2vw, 3.25rem); line-height: 1.04; letter-spacing: -0.025em;
}
.product__title .mark { color: var(--green); letter-spacing: 0.005em; }
.product__sub { margin-top: 0.7rem; color: var(--ink-soft); font-size: 1.05rem; }

.rating { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.95rem; }
.rating__num { font-weight: 700; }
.rating__count { color: var(--ink-soft); }

.price { display: flex; align-items: baseline; gap: 0.7rem; margin-top: 1.4rem; }
.price__now { font-family: var(--f-display); font-weight: 500; font-size: 2.4rem; color: var(--green); }
.price__was { text-decoration: line-through; color: var(--ink-soft); font-size: 1.2rem; }
.price__save { background: rgba(31,107,58,.12); color: var(--green-deep); font-weight: 700; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 100px; }

.product__desc { margin-top: 1.4rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 46ch; }

.opt { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.6rem; }
.opt__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--ink); }
.opt__swatches { display: flex; gap: 0.4rem; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line); background: var(--c); cursor: pointer; box-shadow: inset 0 0 0 2px #fff; }
.swatch.is-active { border-color: var(--green); }
.opt__value { color: var(--ink-soft); font-size: 0.95rem; }

.buy { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; background: var(--paper); overflow: hidden; }
.qty__btn { width: 44px; height: 52px; border: none; background: none; font-size: 1.3rem; color: var(--ink); cursor: pointer; transition: background .2s; }
.qty__btn:hover { background: var(--bg-deep); }
.qty__input { width: 42px; height: 52px; border: none; background: none; text-align: center; font-family: var(--f-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.qty__input:focus { outline: none; }
.buy .btn { flex: 1; }

.btn--paypal { width: 100%; margin-top: 0.8rem; }

.assurances {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-soft);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.05rem 0; overflow: hidden; background: var(--paper); }
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; font-family: var(--f-display); font-style: italic; font-size: 1.4rem; color: var(--ink-soft); animation: scroll 26s linear infinite; }
.marquee__track .dot { color: var(--green); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4rem); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feat {
  padding: 2rem 1.7rem; border: 1px solid var(--line); border-radius: 20px; background: var(--paper);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feat:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -30px rgba(27,42,32,.4); }
.feat__i { width: 34px; height: 34px; color: var(--green); }
.feat h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.35rem; margin: 1.2rem 0 0.6rem; }
.feat p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   WHY / STORY
   ============================================================ */
.why {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.2rem, 5vw, 4rem);
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.why__p { margin-top: 1.5rem; color: var(--ink-soft); font-size: 1.08rem; max-width: 52ch; }
.why__list { list-style: none; display: flex; gap: 2.4rem; margin-top: 2.2rem; }
.why__list li { font-size: 0.9rem; color: var(--ink-soft); display: flex; flex-direction: column; gap: 0.15rem; }
.why__list strong { font-family: var(--f-display); font-size: 1.9rem; font-weight: 500; color: var(--green); line-height: 1; }
.why__media { border-radius: 26px; overflow: hidden; box-shadow: 0 40px 64px -40px rgba(27,42,32,.5); aspect-ratio: 4 / 5; }
.why__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; display: block; }

/* ============================================================
   SPECS
   ============================================================ */
.specs { padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4rem); }
.spec-table { max-width: 760px; margin: 0 auto; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--paper); }
.spec-row { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1rem 1.6rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--ink-soft); }
.spec-row span:last-child { font-weight: 600; text-align: right; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4rem); background: var(--paper); border-top: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { padding: 1.9rem; border: 1px solid var(--line); border-radius: 20px; background: var(--bg); }
.review p { font-family: var(--f-display); font-size: 1.12rem; line-height: 1.4; margin: 0.9rem 0 1.2rem; }
.review footer { color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================================
   QUOTE
   ============================================================ */
.ritual { position: relative; padding: clamp(5rem, 11vw, 9rem) clamp(1.2rem, 5vw, 4rem); background: var(--green-deep); color: var(--paper); overflow: hidden; }
.ritual::before { content: ""; position: absolute; width: 60vw; height: 60vw; top: -30vw; right: -20vw; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,107,.18), transparent 65%); }
.ritual__inner { position: relative; max-width: 940px; margin: 0 auto; text-align: center; }
.ritual__quote { font-family: var(--f-display); font-weight: 300; font-size: clamp(1.8rem, 4.4vw, 3.2rem); line-height: 1.22; letter-spacing: -0.015em; }
.ritual__quote em { font-style: italic; font-weight: 500; color: var(--sand); }
.ritual__sig { margin-top: 2rem; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; color: rgba(251,250,244,.6); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 4rem); }
.final__card {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); color: var(--paper);
  border-radius: 30px; padding: clamp(2.4rem, 5vw, 4rem);
  box-shadow: 0 40px 60px -40px rgba(22,81,43,.65);
}
.final__card h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.02; letter-spacing: -0.02em; }
.final__card > div:first-child p { margin-top: 1rem; color: rgba(251,250,244,.82); max-width: 40ch; }
.final__buy { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.final__price { font-family: var(--f-display); font-size: 2rem; }
.final__price s { color: rgba(251,250,244,.55); font-size: 1.2rem; margin-left: 0.3rem; }
.final__buy .btn { --btn-bg: var(--paper); --btn-fg: var(--green-deep); border-color: var(--paper); align-self: stretch; }
.final__note { font-size: 0.82rem; color: rgba(251,250,244,.72); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem) 2.5rem; background: var(--bg-deep); }
.footer__top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1.5rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.footer__tag { color: var(--ink-soft); font-style: italic; font-family: var(--f-display); }
.footer__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 200px)); gap: 2rem; padding: 2.6rem 0; }
.footer__cols h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.footer__cols a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 0.96rem; padding: 0.28rem 0; transition: color .25s, padding-left .25s; }
.footer__cols a:hover { color: var(--green); padding-left: 4px; }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; padding-top: 2rem; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-soft); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(27, 42, 32, 0.4); backdrop-filter: blur(2px); opacity: 0; transition: opacity .35s; }
.cart-overlay.show { opacity: 1; }
.cart {
  position: fixed; top: 0; right: 0; z-index: 201; height: 100dvh; width: min(420px, 92vw);
  background: var(--bg); box-shadow: -30px 0 60px -30px rgba(27,42,32,.5);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.cart.open { transform: none; }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.cart__head h2 { font-family: var(--f-display); font-weight: 500; font-size: 1.5rem; }
.cart__close { border: none; background: none; font-size: 1.9rem; line-height: 1; color: var(--ink-soft); cursor: pointer; transition: color .2s; }
.cart__close:hover { color: var(--ink); }
.cart__body { flex: 1; overflow-y: auto; padding: 1.3rem 1.5rem; }
.cart__empty { color: var(--ink-soft); text-align: center; margin-top: 2rem; }

.line { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.line__img { width: 74px; height: 92px; border-radius: 12px; overflow: hidden; background: #e6e1d3; flex: none; }
.line__img img { width: 100%; height: 100%; object-fit: cover; }
.line__mid { flex: 1; min-width: 0; }
.line__name { font-family: var(--f-display); font-weight: 500; font-size: 1.1rem; line-height: 1.15; }
.line__opt { color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.15rem; }
.line__price { color: var(--green); font-weight: 700; margin-top: 0.4rem; }
.line__ctrls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; }
.line .qty { transform: scale(0.82); transform-origin: left; }
.line__remove { border: none; background: none; color: var(--ink-soft); font-size: 0.85rem; text-decoration: underline; cursor: pointer; }
.line__remove:hover { color: #b3402e; }

.cart__foot { padding: 1.3rem 1.5rem calc(1.3rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--paper); }
.cart__subtotal { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.05rem; }
.cart__subtotal strong { font-family: var(--f-display); font-size: 1.6rem; font-weight: 500; }
.cart__ship { color: var(--ink-soft); font-size: 0.85rem; margin: 0.3rem 0 1rem; }
.cart__foot .btn { width: 100%; }
.cart__secure { text-align: center; color: var(--ink-soft); font-size: 0.8rem; margin-top: 0.7rem; }

/* ============================================================
   CONTENT PAGES  (support / company)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 4rem) clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; width: 48vw; height: 48vw; right: -10vw; top: -18vw;
  border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(47, 125, 70, 0.18), transparent 66%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { opacity: 0.45; }
.page-title { font-family: var(--f-display); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.02; letter-spacing: -0.025em; }
.page-lead { margin-top: 1.1rem; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }

.page { padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem); }
.prose { max-width: 860px; margin: 0 auto; }
.prose > section { margin-bottom: 2.6rem; }
.prose > section:last-child { margin-bottom: 0; }
.prose h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 1rem; }
.prose h3 { font-weight: 700; font-size: 1.08rem; margin: 1.5rem 0 0.5rem; color: var(--ink); }
.prose p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1rem; max-width: 68ch; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green-deep); }
.prose ul { list-style: none; margin: 0 0 1rem; max-width: 68ch; }
.prose ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4rem 0; }

/* info cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 0.4rem 0 0.5rem; }
.info-card { padding: 1.6rem; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.info-card svg { width: 30px; height: 30px; color: var(--green); }
.info-card h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.2rem; margin: 0.8rem 0 0.4rem; }
.info-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* callout */
.callout { display: flex; gap: 0.9rem; align-items: flex-start; background: rgba(31, 107, 58, 0.07); border: 1px solid rgba(31, 107, 58, 0.18); border-radius: 16px; padding: 1.2rem 1.4rem; margin: 1.6rem 0; }
.callout svg { flex: none; width: 24px; height: 24px; color: var(--green); margin-top: 0.15rem; }
.callout p { margin: 0; color: var(--ink); font-size: 0.98rem; max-width: none; }
.callout strong { color: var(--green-deep); }

/* numbered steps */
.steps { list-style: none; counter-reset: step; margin: 0.4rem 0 0.5rem; max-width: 68ch; }
.steps li { counter-increment: step; position: relative; padding-left: 3.1rem; margin-bottom: 1.3rem; color: var(--ink-soft); }
.steps li:last-child { margin-bottom: 0; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: -0.15rem; width: 2.1rem; height: 2.1rem; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--paper); font-family: var(--f-display); font-weight: 600; font-size: 1rem; }
.steps li strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 0.15rem; }

/* FAQ accordion */
.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 2.5rem 1.2rem 0; position: relative; font-family: var(--f-display); font-weight: 500; font-size: 1.14rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0.3rem; top: 0.95rem; font-size: 1.5rem; font-weight: 300; color: var(--green); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 0 1.3rem; margin: 0; max-width: 72ch; }

/* forms */
.form-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; max-width: 1000px; margin: 0 auto; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.5rem, 3vw, 2.2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.45rem; }
.field label .req { color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31, 107, 58, 0.12); }
.form .btn { width: 100%; margin-top: 0.4rem; }
.form__hint { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.8rem; text-align: center; }
.form-status { margin-top: 1rem; font-size: 0.94rem; color: var(--green-deep); background: rgba(31, 107, 58, 0.09); border: 1px solid rgba(31, 107, 58, 0.18); border-radius: 12px; padding: 0.8rem 1rem; }

.contact-aside h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.4rem; }
.contact-aside > p { color: var(--ink-soft); margin-bottom: 0.6rem; }
.contact-list { list-style: none; margin-top: 0.6rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.contact-list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 0.15rem; }
.contact-list strong { display: block; color: var(--ink); font-size: 0.95rem; }
.contact-list span, .contact-list a { color: var(--ink-soft); font-size: 0.95rem; }
.contact-list a { color: var(--green); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* page CTA */
.page-cta { padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem); }
.page-cta__card {
  max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); color: var(--paper);
  border-radius: 26px; padding: clamp(2rem, 4vw, 3rem); box-shadow: 0 40px 60px -40px rgba(22, 81, 43, 0.6);
}
.page-cta__card h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.05; letter-spacing: -0.02em; }
.page-cta__card p { color: rgba(251, 250, 244, 0.82); margin-top: 0.5rem; }
.page-cta__buy { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.page-cta__price { font-family: var(--f-display); font-size: 1.7rem; }
.page-cta__price s { color: rgba(251, 250, 244, 0.55); font-size: 1.1rem; margin-left: 0.3rem; }
.page-cta .btn { --btn-bg: var(--paper); --btn-fg: var(--green-deep); border-color: var(--paper); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .product { grid-template-columns: 1fr; }
  .product__media { order: -1; max-width: 480px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .why__media { max-width: 440px; }
  .review-grid { grid-template-columns: 1fr; }
  .final__card { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .buy { flex-wrap: wrap; }
  .buy .btn { flex: 1 1 100%; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .spec-row { flex-direction: column; gap: 0.2rem; }
  .spec-row span:last-child { text-align: left; }
  .info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-cta__card { flex-direction: column; align-items: flex-start; }
}
