:root {
  --ink: #1c1d1c;
  --ink-soft: #6a6d69;
  --paper: #f7f7f5;
  --paper-2: #efefec;
  --surface: #ffffff;
  --night: #1c1d1c;
  --night-2: #2a2c2a;
  --red: #3f6b5c;
  --red-deep: #33584b;
  --gold: #3f6b5c;
  --sage: #3f6b5c;
  --sage-soft: #e7efe9;
  --line: #e6e6e1;
  --glow: rgba(28, 29, 28, 0.06);
  --radius: 1.15rem;
  --radius-sm: 0.85rem;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 10px 30px rgba(28, 29, 28, 0.06);
  --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% - 2.4rem)); margin-inline: auto; }

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

.ad-chip {
  display: inline-flex;
  align-items: center;
  background: var(--sage-soft);
  color: var(--sage);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar {
  background: transparent;
  color: var(--ink-soft);
  padding: 0.75rem 0 0;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.topbar a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}
.topbar a:hover { color: var(--sage); }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 247, 245, 0.86);
  backdrop-filter: blur(16px);
}
.header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.logo__mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  overflow: hidden;
  background: var(--sage);
  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.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.logo__text span {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.nav {
  display: none;
  gap: 0.15rem;
}
.nav a {
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: 999px;
}
.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: var(--surface);
}

.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.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.price-pill strong {
  font-size: 1rem;
  font-weight: 600;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--buy {
  background: var(--ink);
  color: #fff;
}
.btn--buy:hover { background: #000; }
.btn--moss {
  background: var(--sage);
  color: #fff;
  width: 100%;
}
.btn--moss:hover { background: var(--red-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--surface); }
.btn--light {
  background: #fff;
  color: var(--ink);
}

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  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 auto 0.8rem;
  width: min(var(--max), calc(100% - 2.4rem));
  background: var(--surface);
  border-radius: var(--radius);
  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: 500;
}
#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.4rem auto 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.hero {
  display: grid;
  gap: 1.6rem;
  padding: 1.6rem 0 3.2rem;
  align-items: center;
}
.hero > div:not(.hero-card) { padding: 0; }
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: auto;
    padding: 3rem 0 4.5rem;
    border: 0;
    background: transparent;
  }
  .hero > div:not(.hero-card) { padding: 0; }
}
.kicker {
  margin: 0 0 0.7rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.hero h1,
.page-hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 11ch;
  text-transform: none;
}
.hero .lead {
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 34rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.hero__meta {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin-top: 1.1rem;
  font-weight: 600;
}
.stars { color: var(--sage); letter-spacing: 0.08em; }

.hero-card {
  position: relative;
  background: var(--sage-soft);
  min-height: 340px;
  overflow: hidden;
  border-radius: 1.6rem;
}
.hero-card::before { content: none; }
.hero-card img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  margin: 0;
}
.hero-card__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 1rem;
  padding: 0.75rem 0.95rem;
  backdrop-filter: blur(8px);
}
.hero-card__badge span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.hero-card__badge strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
}

.section { padding: 2.8rem 0; }
.section h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  text-transform: none;
}
.lead {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  max-width: 40rem;
}

.pills {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
  border: 0;
}
@media (min-width: 760px) {
  .pills { grid-template-columns: repeat(4, 1fr); }
}
.pills article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  box-shadow: none;
  border: 1px solid var(--line);
}
@media (min-width: 760px) {
  .pills article:last-child { border-right: 1px solid var(--line); }
}
.pills strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  text-transform: none;
}
.pills span { color: var(--ink-soft); font-size: 0.92rem; }

.split {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.media {
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--sage-soft);
  box-shadow: none;
  border: 0;
}
.media img { width: 100%; }

.story {
  background: var(--surface);
  color: var(--ink);
  border-radius: 1.6rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}
@media (min-width: 880px) {
  .story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}
.story img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.story__copy { padding: 1.7rem; }
@media (min-width: 880px) {
  .story__copy { padding: 2.4rem; }
}
.story h2 { color: var(--ink); }
.story p { color: var(--ink-soft); }
.story .stat {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.95;
  color: var(--sage);
  margin: 0.25rem 0 0.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.steps {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0;
}
.steps li {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.num {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  color: var(--sage);
  font-weight: 600;
  font-size: 0.85rem;
}
.steps strong { display: block; }

.gallery {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}
.gallery img,
.gallery figure {
  width: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
  min-height: 230px;
  background: var(--sage-soft);
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 0;
}
.gallery figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.specs {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.specs th,
.specs td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs th {
  width: 34%;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.price-box {
  background: var(--surface);
  color: var(--ink);
  border-radius: 1.4rem;
  padding: 1.4rem;
  box-shadow: none;
  border: 1px solid var(--line);
}
.price-box > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--ink-soft);
}
.price-box strong {
  font-size: 1.7rem;
  color: var(--ink);
  font-weight: 600;
}
.price-box .total {
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  color: var(--ink);
  font-weight: 600;
}
.price-box p { color: var(--ink-soft) !important; }
.price-box .btn--moss { width: 100%; }

.reviews {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
@media (min-width: 800px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
}
.reviews article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--line);
}
.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: 600;
}

.faq details {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.1rem 1.05rem;
  margin-bottom: 0.55rem;
  border: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 0.95rem 0;
  font-size: 1rem;
  font-family: inherit;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 0 0 1rem; color: var(--ink-soft); }

.cta-band {
  background: var(--surface);
  color: var(--ink);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  box-shadow: none;
}
@media (min-width: 760px) {
  .cta-band { grid-template-columns: 1fr auto; align-items: center; }
}
.cta-band h2 { color: var(--ink); }
.cta-band p { margin: 0.45rem 0 0; color: var(--ink-soft); }
.cta-band .btn--buy { box-shadow: none; }

.page-hero { padding: 2.4rem 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) 250px; align-items: start; }
}
.prose {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 2rem;
  border: 1px solid var(--line);
}
.prose h2 {
  margin: 1.8rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: none;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--sage); font-weight: 600; }
.toc, .aside, .related {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
}
.related { position: sticky; top: 5rem; }
.related h2 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
}
.related ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.updated { margin-top: 1.5rem; font-size: 0.8rem; color: var(--ink-soft); }

.form {
  display: grid;
  gap: 0.9rem;
  background: var(--surface);
  border-radius: 1.3rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
}
.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: 600;
  margin-bottom: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(63, 107, 92, 0.22);
  border-color: var(--sage);
}
.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.15rem;
  height: 1.15rem;
  border: 1.5px solid var(--ink);
  border-radius: 0.3rem;
  background: #fff;
  cursor: pointer;
  margin-top: 0.15rem;
  position: relative;
}
.check button[role="checkbox"][aria-checked="true"] {
  background: var(--ink);
}
.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.8rem;
  margin-bottom: 1.2rem;
  border: 0;
}
@media (min-width: 760px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}
.contact-cards article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--line);
}
@media (min-width: 760px) {
  .contact-cards article:last-child { border-right: 1px solid var(--line); }
}
.contact-cards h2 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
}

.operator-box {
  margin-top: 1.2rem;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.operator-box h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
}
.operator-box p, .operator-box address {
  margin: 0;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer {
  margin-top: 2rem;
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 0;
  padding: 2.6rem 0 1.3rem;
  border-top: 1px solid var(--line);
}
.footer__main {
  display: grid;
  gap: 1.8rem;
}
@media (min-width: 880px) {
  .footer__main { grid-template-columns: 1.15fr 1fr 1fr 0.9fr; }
}
.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.03em;
}
.footer p { color: var(--ink-soft); }
.footer address {
  font-style: normal;
  line-height: 1.7;
}
.footer a { color: var(--ink); font-weight: 500; }
.footer h2 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
}
.legal-nav a {
  text-decoration: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.88rem;
  border-bottom: 0;
}
.legal-nav a:hover { color: var(--sage); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--ink-soft);
}

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