:root {
  --ink: #24312c;
  --ink-soft: #5d6b64;
  --paper: #f4efe6;
  --paper-2: #ebe3d4;
  --surface: #fffdf8;
  --moss: #1f4a40;
  --moss-deep: #16362f;
  --sage: #7ea08f;
  --clay: #d06a3a;
  --clay-deep: #b45324;
  --sand: #e8c9a0;
  --line: #e0d6c6;
  --glow: rgba(31, 74, 64, 0.12);
  --radius: 1.6rem;
  --radius-sm: 1rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --shadow: 0 24px 50px rgba(36, 49, 44, 0.1);
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font-family: inherit; }

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

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.ad-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sand);
  color: var(--moss-deep);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar {
  padding: 0.7rem 0 0;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.topbar a {
  color: var(--moss);
  font-weight: 600;
  text-decoration: none;
}
.topbar a:hover { color: var(--clay); }

.header {
  position: sticky;
  top: 0.75rem;
  z-index: 40;
  padding: 0 0 0.75rem;
}
.header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(36, 49, 44, 0.08);
  backdrop-filter: blur(16px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.logo__mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--moss);
  flex: none;
}
.logo__mark img { width: 100%; height: 100%; object-fit: cover; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.logo__text span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
}

.nav {
  display: none;
  gap: 0.2rem;
}
.nav a {
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav a:hover,
.nav a.is-active {
  background: var(--paper);
  color: var(--moss);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.price-pill {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
  padding: 0 0.4rem;
}
.price-pill small {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.price-pill strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--buy {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 10px 22px rgba(208, 106, 58, 0.28);
}
.btn--buy:hover { background: var(--clay-deep); }
.btn--moss {
  background: var(--moss);
  color: #fff;
}
.btn--moss:hover { background: var(--moss-deep); }
.btn--ghost {
  background: transparent;
  color: var(--moss);
  border: 1.5px solid rgba(31, 74, 64, 0.22);
}
.btn--ghost:hover { background: var(--moss); color: #fff; }
.btn--light {
  background: #fff;
  color: var(--moss);
}

.menu-btn {
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 99px;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

#mobile-nav {
  display: none;
  flex-direction: column;
  margin: 0.55rem auto 0;
  width: min(var(--max), calc(100% - 2rem));
  background: var(--surface);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
#mobile-nav a {
  text-decoration: none;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
#mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 920px) {
  .nav { display: flex; }
  .price-pill { display: flex; }
  .menu-btn { display: none; }
}

.ad-note {
  margin: 0.85rem auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: 1.4rem 0 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; min-height: 72vh; }
}
.kicker {
  margin: 0 0 0.7rem;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.hero h1,
.page-hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.1rem);
  max-width: 12ch;
}
.hero .lead {
  margin: 1rem 0 0;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 36rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}
.hero__meta {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin-top: 1.1rem;
  font-weight: 600;
}
.stars { color: var(--clay); letter-spacing: 0.08em; }

.hero-card {
  position: relative;
  background: linear-gradient(180deg, #dce8e1 0%, #c9d9d0 100%);
  border-radius: 2.4rem;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.45);
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-card img {
  position: relative;
  width: 86%;
  margin: 2.2rem auto 0;
  z-index: 1;
}
.hero-card__badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  background: var(--surface);
  border-radius: 1.1rem;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
}
.hero-card__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.section { padding: 2.6rem 0; }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.lead {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 42rem;
}

.pills {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
@media (min-width: 760px) {
  .pills { grid-template-columns: repeat(4, 1fr); }
}
.pills article {
  background: var(--surface);
  border-radius: 1.4rem;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 10px 24px rgba(36, 49, 44, 0.05);
}
.pills strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.pills span { color: var(--ink-soft); font-size: 0.92rem; }

.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}
.media {
  border-radius: 1.8rem;
  overflow: hidden;
  background: #d9e4de;
  box-shadow: var(--shadow);
}
.media img { width: 100%; }

.story {
  background: var(--moss);
  color: #f4efe6;
  border-radius: 2.2rem;
  padding: 1.6rem;
  overflow: hidden;
}
@media (min-width: 880px) {
  .story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 0;
  }
}
.story img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.story__copy { padding: 1.6rem; }
@media (min-width: 880px) {
  .story__copy { padding: 2.4rem; }
}
.story h2 { color: #fff; }
.story p { color: rgba(244, 239, 230, 0.86); }
.story .stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  color: var(--sand);
  margin: 0.3rem 0 0.6rem;
}

.steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.steps li {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 1.2rem;
}
.steps { padding: 0; }
.num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--moss-deep);
  font-weight: 700;
}
.steps strong { display: block; }

.gallery {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
}
.gallery img,
.gallery figure {
  width: 100%;
  border-radius: 1.4rem;
  object-fit: cover;
  min-height: 220px;
  background: #d9e4de;
}
.gallery figure { margin: 0; overflow: hidden; position: relative; }
.gallery figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.specs {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 1.5rem;
  overflow: hidden;
}
.specs th,
.specs td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs th {
  width: 38%;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}
.price-box {
  background: var(--surface);
  border-radius: 1.6rem;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.price-box > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--ink-soft);
}
.price-box strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
}
.price-box .total {
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  color: var(--ink);
  font-weight: 700;
}

.reviews {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
@media (min-width: 800px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
}
.reviews article {
  background: var(--surface);
  border-radius: 1.4rem;
  padding: 1.15rem;
}
.reviews p { color: var(--ink-soft); margin: 0.55rem 0 0; }
.reviews footer {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 700;
}

.faq details {
  background: var(--surface);
  border-radius: 1.15rem;
  padding: 0.15rem 1rem;
  margin-bottom: 0.65rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.95rem 0;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 0 0 1rem; color: var(--ink-soft); }

.cta-band {
  background: linear-gradient(135deg, var(--moss) 0%, #2f6a5c 100%);
  color: #fff;
  border-radius: 2rem;
  padding: 2.2rem 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .cta-band { grid-template-columns: 1fr auto; align-items: center; }
}
.cta-band h2 { color: #fff; }
.cta-band p { margin: 0.5rem 0 0; color: rgba(255,255,255,.84); }

.page-hero { padding: 2.2rem 0 0.8rem; }
.page-hero p { margin: 0.8rem 0 0; color: var(--ink-soft); max-width: 46rem; }
.legal-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 960px) {
  .legal-layout { grid-template-columns: minmax(0, 1fr) 260px; align-items: start; }
}
.prose {
  background: var(--surface);
  border-radius: 1.6rem;
  padding: 1.5rem 1.35rem 2rem;
}
.prose h2 {
  margin: 1.8rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--moss); font-weight: 700; }
.toc, .aside, .related {
  background: var(--surface);
  border-radius: 1.3rem;
  padding: 1rem 1.1rem;
}
.related { position: sticky; top: 6rem; }
.related h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.related ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.updated { margin-top: 1.5rem; font-size: 0.8rem; color: var(--sage); }

.form {
  display: grid;
  gap: 0.9rem;
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.3rem;
}
.form-row { display: grid; gap: 0.85rem; }
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(31, 74, 64, 0.25);
  border-color: var(--moss);
}
.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.check button[role="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--moss);
  border-radius: 0.3rem;
  background: #fff;
  cursor: pointer;
  margin-top: 0.15rem;
  position: relative;
}
.check button[role="checkbox"][aria-checked="true"] {
  background: var(--moss);
}
.check button[role="checkbox"][aria-checked="true"]::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.05rem;
  width: 0.28rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 760px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}
.contact-cards article {
  background: var(--surface);
  border-radius: 1.3rem;
  padding: 1.1rem;
}
.contact-cards h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer {
  margin-top: 1rem;
  background: var(--moss-deep);
  color: rgba(244, 239, 230, 0.82);
  border-radius: 2rem 2rem 0 0;
  padding: 2.5rem 0 1.2rem;
}
.footer__main {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 880px) {
  .footer__main { grid-template-columns: 1.2fr 1fr 0.9fr; }
}
.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0;
}
.footer p { color: rgba(244, 239, 230, 0.72); }
.footer address {
  font-style: normal;
  line-height: 1.7;
}
.footer a { color: #fff; font-weight: 600; }
.footer h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.legal-nav a {
  text-decoration: none;
  background: rgba(255,255,255,.08);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
}
.legal-nav a:hover { background: var(--clay); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
