* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18211f;
  background: #f7f8f5;
  letter-spacing: 0;
  overflow-x: hidden;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.91);
  border-bottom: 1px solid rgba(24,33,31,.12);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--accent);
  font-weight: 800;
}
.brand b, .brand small { display: block; line-height: 1.1; }
.brand small { margin-top: 3px; color: #6b746e; font-size: 12px; }
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 14px;
  color: #44504a;
}
nav a { text-decoration: none; }
nav a:hover { color: var(--accent); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  color: #647069;
  font-size: 14px;
}
.breadcrumbs a {
  color: #2d5d48;
  font-weight: 800;
  text-decoration: none;
}
.breadcrumbs span[aria-current="page"] {
  color: #18211f;
  font-weight: 800;
}
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; opacity: .72; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.42) 52%, rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.02) 44%);
}
.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 68px;
  color: white;
}
.eyebrow, .section-label {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.45;
  color: rgba(255,255,255,.88);
  overflow-wrap: break-word;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.button.primary { background: var(--accent); color: white; }
.button.secondary { border: 1px solid rgba(255,255,255,.42); color: white; background: rgba(255,255,255,.08); }
.cta .button.secondary { border-color: rgba(24,33,31,.22); color: #18211f; background: white; }
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.proof strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  font-size: 14px;
}
.cluster-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.cluster-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1px solid rgba(24,33,31,.16);
  color: #2d5d48;
  background: white;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.cluster-chip.active {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
}
.band, .section, .split, .cta, .legal {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 44px;
  padding: 72px 0 58px;
  border-bottom: 1px solid rgba(24,33,31,.12);
}
h2 {
  margin: 0;
  color: #111816;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}
.intro p:last-child, .cta p, .card p, details p, .legal p, dd {
  color: #55615b;
  line-height: 1.7;
}
.section { padding: 72px 0; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.card {
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(24,33,31,.12);
  border-radius: 8px;
  background: white;
}
.card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--accent);
  font-weight: 900;
}
.product-card span {
  margin-bottom: 24px;
}
h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
}
.section-intro {
  max-width: 840px;
  margin: 18px 0 0;
  color: #55615b;
  font-size: 18px;
  line-height: 1.7;
}
.products {
  padding-top: 56px;
}
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-grid .card {
  min-height: 265px;
}
.trust {
  padding-top: 16px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.trust-item {
  min-height: 190px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: var(--dark);
}
.trust-item strong {
  display: block;
  color: white;
  font-size: 20px;
  line-height: 1.2;
}
.trust-item p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  align-items: start;
  padding: 24px 0 76px;
}
.checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.checklist li {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: white;
  border-radius: 0 8px 8px 0;
  color: #34413b;
  font-weight: 700;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
figure {
  margin: 0;
  min-height: 230px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(24,33,31,.12);
}
figure:first-child { grid-row: span 2; }
figure img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
figure:first-child img { height: 474px; }
figcaption {
  padding: 12px 14px;
  color: #3d4842;
  font-weight: 800;
}
.muted {
  width: 100%;
  max-width: none;
  padding: 72px max(18px, calc((100vw - 1180px) / 2)) 78px;
  background: #eef1ea;
}
.planning-head { max-width: 900px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.timeline li {
  counter-increment: step;
  min-height: 178px;
  padding: 22px;
  border-radius: 8px;
  background: white;
  color: #3f4a44;
  line-height: 1.55;
  font-weight: 700;
}
.timeline li::before {
  content: counter(step);
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}
.faq details {
  border-top: 1px solid rgba(24,33,31,.16);
  padding: 20px 0;
}
.faq details:last-child { border-bottom: 1px solid rgba(24,33,31,.16); }
summary {
  cursor: pointer;
  color: #18211f;
  font-size: 20px;
  font-weight: 850;
}
.topics {
  padding-top: 28px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.topic-grid a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(24,33,31,.12);
  border-radius: 8px;
  background: white;
  color: #26322d;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.3;
  text-decoration: none;
}
.topic-grid a:hover {
  border-color: color-mix(in srgb, var(--accent), #ffffff 35%);
  color: var(--accent);
}
.cluster-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.cluster-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(24,33,31,.14);
  background: white;
  color: #2d5d48;
  font-weight: 850;
  text-decoration: none;
}
.cluster-list {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}
.topic-cluster h3 {
  margin-bottom: 16px;
}
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 70px;
  padding: 36px;
  border-radius: 8px;
  color: #18211f;
  background: white;
  border: 1px solid rgba(24,33,31,.12);
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #647069;
  border-top: 1px solid rgba(24,33,31,.12);
  background: white;
}
footer a { text-decoration: none; font-weight: 700; }
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
}
.article-hero > div,
.article-layout > *,
.article-body,
.article-aside {
  min-width: 0;
}
.article-hero h1 {
  margin: 0;
  color: #111816;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  overflow-wrap: break-word;
  word-break: normal;
}
.article-hero p:not(.section-label) {
  max-width: 720px;
  color: #4e5a54;
  font-size: 20px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.button.secondary.light {
  border-color: rgba(24,33,31,.22);
  color: #18211f;
  background: white;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 74px;
}
.article-body {
  padding: 34px;
  background: white;
  border: 1px solid rgba(24,33,31,.12);
  border-radius: 8px;
}
.article-body h2 {
  margin-top: 34px;
  font-size: clamp(28px, 3.2vw, 44px);
}
.article-body h2:first-of-type { margin-top: 0; }
.article-body p {
  color: #55615b;
  line-height: 1.75;
}
.article-products {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(24,33,31,.12);
}
.article-products h2 {
  margin-top: 0;
}
.article-products .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.article-products .card {
  min-height: 230px;
}
.article-list {
  margin: 20px 0 0;
}
.article-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}
.aside-box {
  padding: 22px;
  border-radius: 8px;
  background: #eef1ea;
  border: 1px solid rgba(24,33,31,.12);
}
.aside-box h3 { margin-bottom: 16px; }
.aside-box a {
  display: block;
  margin: 10px 0;
  color: #1d4f7a;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.mini-button {
  display: inline-flex !important;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  color: white !important;
  background: var(--accent);
}
.action-box {
  background: white;
}
.related-links {
  display: grid;
  gap: 8px;
}
.related-links a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(24,33,31,.12);
}
.legal {
  max-width: 880px;
  padding: 72px 18px 90px;
}
.legal h1 {
  margin: 0 0 30px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}
.legal h2 {
  margin-top: 34px;
  font-size: 28px;
}
dl {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px 20px;
  padding: 24px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(24,33,31,.12);
}
dt { font-weight: 900; }
@media (max-width: 860px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 70px; }
  .intro, .split, .cta { grid-template-columns: 1fr; }
  .cards, .timeline, .topic-grid, .product-grid, .trust-grid, .article-products .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  figure:first-child { grid-row: auto; }
  figure img, figure:first-child img { height: 260px; }
  .button { width: 100%; white-space: normal; text-align: center; }
  dl { grid-template-columns: 1fr; }
  .article-hero, .article-layout { grid-template-columns: 1fr; }
  .article-hero { padding-top: 46px; }
  .article-hero h1 { font-size: 38px; }
}
@media (max-width: 520px) {
  body, main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .brand { min-width: 0; }
  .brand small { overflow-wrap: anywhere; }
  .hero { min-height: 680px; }
  .hero-content {
    width: calc(100% - 30px);
    max-width: 360px;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 58px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }
  .lead {
    font-size: 16px;
    line-height: 1.5;
  }
  h2 { font-size: 30px; }
  .proof strong { width: 100%; }
  .article-hero {
    width: calc(100% - 30px);
    max-width: calc(100vw - 30px);
    margin-left: 15px;
    margin-right: 15px;
    gap: 24px;
  }
  .article-hero > div,
  .article-layout > *,
  .article-body,
  .article-aside {
    min-width: 0;
    max-width: 100%;
  }
  .article-hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .article-hero p:not(.section-label) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .article-hero .section-label {
    font-size: 12px;
    line-height: 1.35;
    max-width: 100%;
  }
  .article-hero .hero-actions {
    max-width: 100%;
  }
  .article-hero .button {
    display: flex;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .article-hero img {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
  .article-body {
    padding: 22px;
  }
  .article-layout {
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  .article-body h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }
}
