:root {
  --green: #0f3d2e;
  --green-2: #14553f;
  --white: #ffffff;
  --black: #0e1110;
  --beige: #ece3d6;
  --muted: #5d645f;
  --line: rgba(15, 61, 46, 0.12);
  --radius: 16px;
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--green); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 8px 12px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { left: 8px; z-index: 200; }

.wrap { width: min(1120px, calc(100% - 24px)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 24px)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.logo img {
  display: block;
  width: 120px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav a { text-decoration: none; font-weight: 600; font-size: 0.92rem; color: #1c2520; }
.nav__fundadores, .nav__cta {
  padding: 10px 14px;
  border-radius: 999px;
}
.nav__fundadores { border: 1px solid var(--green); color: var(--green) !important; }
.nav__cta { background: var(--green); color: var(--white) !important; }
.menu-btn {
  font: inherit;
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green);
  border-radius: 10px;
  padding: 8px 12px;
  display: none;
}

.hero {
  padding: 52px 0 44px;
  background: radial-gradient(circle at top right, #f6efe6 0%, #fff 58%);
}
.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 10px;
}
h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3 { margin: 0 0 8px; font-size: 1.05rem; }
p { margin: 0 0 12px; }

.hero__lead { color: #2f3933; font-size: 1.06rem; max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.hero__microcopy { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }
.hero-variants {
  margin: 10px 0 12px;
  padding-left: 18px;
  color: #2f5f4d;
  font-weight: 600;
}
.hero-variants li { margin-bottom: 4px; }

.hero__figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 46px rgba(15, 61, 46, 0.16);
}
.hero__figure figcaption {
  padding: 10px 12px;
  font-size: 0.76rem;
  color: var(--muted);
  background: #f8f7f4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
}
.btn--lg { padding: 12px 20px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--green); color: var(--white); }
.btn--secondary { background: var(--black); color: var(--white); }
.btn--ghost { border-color: var(--green); color: var(--green); }
.btn--light { background: var(--white); color: var(--green); }

.section { padding: 62px 0; }
.section--muted { background: var(--beige); }
.section--dark { background: var(--green); color: #e8e3dc; }
.section--dark h2 { color: #fff; }
.section--location {
  background: #f4f9f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location-head { margin-bottom: 10px; }
.location-gallery {
  display: grid;
  gap: 12px;
}
@media (min-width: 860px) {
  .location-gallery { grid-template-columns: repeat(3, 1fr); }
}
.location-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.location-figure figcaption {
  margin: 0;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  gap: 14px;
}
@media (min-width: 760px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.section--dark .card { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,.2); }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); padding-left: 0; list-style: none; }
  .steps li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.24); border-radius: 14px; padding: 14px; }
}

.model-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 760px) { .model-grid { grid-template-columns: repeat(3, 1fr); } }
.model-card {
  background: #f7f2ea;
  border: 1px solid #d8cab6;
  border-radius: 14px;
  padding: 14px;
}
.legal-callout {
  margin-top: 14px;
  background: #eef6f2;
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 12px;
}

.eco-example-grid {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
@media (min-width: 760px) {
  .eco-example-grid { grid-template-columns: repeat(3, 1fr); }
}
.eco-example-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.eco-example-icon {
  margin: 0 0 6px;
  font-size: 1.45rem;
  line-height: 1;
}
.eco-example-range {
  margin: 0;
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}
.eco-example-percent {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2f5f4d;
}
.eco-example-legal {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e2a9a9;
  border-left: 4px solid #b53a3a;
  border-radius: 10px;
  padding: 12px;
}
.eco-example-legal p {
  margin: 0;
  color: #4b2b2b;
}
.eco-example-microcopy {
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}
.eco-direct {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #cfe1d8;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 14px;
}
.eco-direct h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #123b2d;
}
.eco-direct__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.timeline-now {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 2px 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf7f2;
  border: 1px solid #7fbaa3;
}
.timeline-now__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1d664b;
}
.timeline-now__value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e332a;
}
@media (min-width: 980px) {
  .timeline {
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
  }
}
.timeline-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  position: relative;
}
@media (min-width: 980px) {
  .timeline-item::after {
    content: "";
    position: absolute;
    top: 24px;
    right: -10px;
    width: 10px;
    height: 2px;
    background: #cfd4d1;
  }
  .timeline-item:last-child::after { display: none; }
}
.timeline-icon {
  margin: 0 0 4px;
  font-size: 1.35rem;
}
.timeline-state {
  margin: 0 0 6px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}
.timeline-item p {
  margin: 0;
  font-size: 0.9rem;
}
.timeline-item--done {
  border-color: #5aa687;
  background: #edf7f2;
}
.timeline-item--done .timeline-state { color: #1d664b; }
.timeline-item--progress {
  border-color: #d8bf60;
  background: #fff8df;
}
.timeline-item--progress .timeline-state { color: #7d6311; }
.timeline-item--future {
  border-color: #ccd0ce;
  background: #f4f6f5;
}
.timeline-item--future .timeline-state { color: #58605b; }

.timeline-claim {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 10px;
  border-left: 4px solid var(--green);
  background: #eef6f2;
  font-weight: 700;
  color: #1c4938;
}

.section--packs { background: linear-gradient(180deg, #fff 0%, #efe5d8 100%); }
.pack-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 720px) { .pack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pack {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.22);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  box-shadow: 0 14px 34px rgba(15, 61, 46, 0.12);
}
.pack h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pack__list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 5px;
  color: #26302b;
  font-size: 0.94rem;
  line-height: 1.4;
}
.pack--featured {
  border: 2px solid #0f3d2e;
  box-shadow: 0 24px 54px rgba(15, 61, 46, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #eef8f2 100%);
}
.pack--featured-large {
  transform: scale(1.035);
  z-index: 1;
}
@media (max-width: 760px) {
  .pack--featured-large { transform: none; }
}
.pack__badge {
  display: inline-block;
  margin: 0;
  width: fit-content;
  background: #0f3d2e;
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pack .btn {
  margin-top: auto;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.pack__cta-note {
  margin: -4px 0 0;
  font-size: 0.8rem;
  color: #2c4c3e;
  font-weight: 600;
}
.pack__fine {
  font-size: 0.8rem;
  color: #4f5752;
  margin: 0;
}

.section--trust {
  background: #0f3d2e;
  color: #ecf2ef;
}
.section--trust h2 { color: #fff; }
.trust-bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.trust-bullets li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 10px 12px 10px 32px;
  position: relative;
}
.trust-bullets li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  font-weight: 800;
}

.section--faq {
  background: #121614;
  color: #dfdbd4;
}
.section--faq h2 { color: #fff; }
.faq { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.faq__item summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
}
.faq__item p { padding: 0 14px 14px; margin: 0; color: #d2cec6; }

.urgency {
  background: var(--green-2);
  color: #fff;
  padding: 34px 0;
  text-align: center;
}
.urgency--prepacks {
  background: #f6eedf;
  color: #1f342a;
  border-top: 1px solid #e6d5ba;
  border-bottom: 1px solid #e6d5ba;
}
.urgency__inner p {
  max-width: 76ch;
  margin-inline: auto;
}
.cta-final {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 42px 0;
}
.cta-final__inner p {
  max-width: 74ch;
  margin-inline: auto;
}
.cta-final__microcopy {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #dfe9e4;
}

.section--contact .form { display: grid; gap: 10px; }
.form__row { display: grid; gap: 4px; }
.form__row label { font-weight: 700; font-size: 0.92rem; }
.form__row input,
.form__row select,
.form__row textarea {
  border: 1px solid #ccd4cf;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
.form__row--check {
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}
.form__hp { position: absolute; left: -9999px; }
.form-banner {
  border: 1px solid #2d8c66;
  background: #edf8f2;
  color: #13503b;
  border-radius: 10px;
  padding: 10px 12px;
}
.form__microcopy {
  margin: 2px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer {
  background: #0f1211;
  color: #cbc4b9;
  padding: 28px 0;
}
.footer__grid {
  display: grid;
  gap: 10px;
}
.footer__brand { color: #fff; font-size: 1.14rem; font-weight: 800; margin: 0; }
.footer__brand img {
  display: block;
  width: clamp(120px, 18vw, 180px);
  height: auto;
  filter: brightness(1.03);
}
.footer__legal, .footer__copy { margin: 0; font-size: 0.86rem; color: #b8b0a3; }

@media (max-width: 900px) {
  .header__inner { min-height: 68px; }
  .logo img {
    width: 96px;
    height: 46px;
  }
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 68px 10px auto 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    display: grid;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: .2s ease;
  }
  .nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a { padding: 8px 0; border-bottom: 1px solid #e9ece9; }
  .nav a:last-child { border-bottom: 0; }

  .nav .nav__fundadores,
  .nav .nav__cta {
    border-radius: 999px;
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    margin-top: 2px;
    border-bottom: 0;
    font-size: 1.02rem;
    letter-spacing: 0;
  }

  .nav .nav__fundadores {
    border: 2px solid var(--green);
    background: #fff;
    color: var(--green) !important;
  }

  .nav .nav__cta {
    border: 2px solid var(--green);
    background: var(--green);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(15, 61, 46, 0.2);
  }
}

@media (max-width: 640px) {
  .wrap { width: min(1120px, calc(100% - 20px)); }

  h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.25rem);
    line-height: 1.14;
    letter-spacing: -0.018em;
  }

  h2 {
    font-size: clamp(1.42rem, 6.4vw, 1.76rem);
    line-height: 1.18;
  }

  .header__inner {
    min-height: 62px;
    gap: 8px;
  }

  .logo img {
    width: 110px;
    height: 48px;
    border-radius: 6px;
    object-fit: contain;
  }

  .menu-btn {
    padding: 7px 11px;
    border-radius: 11px;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .nav {
    inset: 62px 10px auto 10px;
  }

  .hero {
    padding: 28px 0 22px;
  }

  .eyebrow {
    margin: 0 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .hero-variants {
    margin: 8px 0 8px;
    padding-left: 20px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .hero-variants li { margin-bottom: 3px; }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .hero__actions {
    margin-top: 14px;
    gap: 8px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
  }

  .hero__microcopy {
    font-size: 0.82rem;
    line-height: 1.3;
    opacity: 0.92;
  }

  .hero__microcopy + .hero__microcopy {
    display: none;
  }

  .hero__figure {
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(15, 61, 46, 0.14);
  }

  .section__lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .checklist li {
    padding: 8px 0 8px 24px;
    line-height: 1.45;
  }

  .section {
    padding: 48px 0;
  }

  .pack h3 {
    font-size: 1.26rem;
    line-height: 1.2;
  }

  .pack__list {
    font-size: 0.92rem;
    line-height: 1.35;
    gap: 4px;
  }
}
