:root {
  --ink: #17211f;
  --muted: #64706b;
  --subtle: #8a938e;
  --brand: #2f6553;
  --brand-dark: #1e473b;
  --accent: #b98645;
  --paper: #f6f1e9;
  --mist: #eef4f1;
  --line: #dce4df;
  --white: #fff;
  --shadow: 0 22px 70px rgba(23, 33, 31, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; letter-spacing: 0; }
h1 { font-size: clamp(46px, 6.6vw, 84px); line-height: .98; max-width: 980px; }
h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1.06; max-width: 900px; }
h3 { font-size: 21px; line-height: 1.2; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.72; }

.public-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 228, 223, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.public-header-inner {
  min-height: 82px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 220px;
}
.public-logo { width: 168px; height: auto; }
.brand-lockup span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}
.public-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.public-nav a {
  text-decoration: none;
  color: #52605a;
  font-size: 14px;
  font-weight: 650;
}
.public-nav a:hover { color: var(--brand-dark); }
.public-nav .quote-link {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
}

.hero, .page-hero, .section {
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.split-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding-top: 58px;
  padding-bottom: 58px;
}
.hero-copy, .page-hero-copy { max-width: 760px; }
.lead { font-size: 19px; max-width: 700px; }
.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.primary-action, .secondary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
}
.primary-action { background: var(--brand); color: #fff; }
.primary-action:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.secondary-action { background: transparent; color: var(--brand-dark); }
.secondary-action:hover { background: var(--mist); }
.text-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.hero-gallery {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.hero-gallery img,
.page-hero-image,
.feature-image,
.article-media img,
.tile-collage img,
.mini-card img,
.visual-card img,
.matrix-item img,
.timeline-item img {
  width: 100%;
  object-fit: cover;
  background: var(--paper);
}
.hero-gallery img:first-child {
  grid-row: span 2;
  height: 100%;
}
.hero-gallery img { height: 100%; min-height: 0; border-radius: 6px; box-shadow: var(--shadow); }

.section { padding-top: 90px; padding-bottom: 90px; }
.muted-section {
  max-width: none;
  margin: 0;
  padding-left: max(24px, calc((100vw - 1260px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1260px) / 2 + 24px));
  background: var(--mist);
}
.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.feature-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(170px, .8fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.feature-card img { height: 100%; min-height: 260px; border-radius: 4px; }
.feature-card a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}
.card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.three-column, .product-strip, .option-matrix, .faq-grid, .guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.option-matrix, .faq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-card, .visual-card, .matrix-item, .text-card, .guide-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 20px;
}
.mini-card img, .visual-card img, .matrix-item img {
  height: 220px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.matrix-item img, .matrix-item .image-placeholder { height: 190px; margin-bottom: 16px; }
.text-card { min-height: 205px; }
.guide-card {
  min-height: 190px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.guide-card span { color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 12px; }
.guide-card strong { font-size: 24px; line-height: 1.2; }

.image-text, .spec-layout, .contact-grid, .guide-article {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.copy-block p { max-width: 660px; }
.tile-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tile-collage img { height: 250px; border-radius: 6px; }
.feature-image, .page-hero-image { border-radius: 6px; box-shadow: var(--shadow); }

.page-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
}
.page-hero.compact { min-height: 420px; }
.page-hero-image { height: 470px; object-fit: cover; }

.spec-list {
  display: grid;
  gap: 14px;
}
.spec-list div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.spec-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}
.spec-list p { margin-bottom: 0; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.timeline-item {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.timeline-item img { height: 180px; border-radius: 4px; margin-bottom: 18px; }
.timeline-item span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 900;
}

.guide-article {
  border-top: 1px solid var(--line);
}
.guide-article.reverse .article-media { order: 2; }
.article-media img, .article-media .image-placeholder { height: 430px; border-radius: 6px; }
.article-copy { max-width: 680px; }

.contact-panel {
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.image-placeholder {
  min-height: 220px;
  width: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed #b9c5be;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(47, 101, 83, .12), rgba(185, 134, 69, .08)),
    var(--paper);
  color: #63736c;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.image-placeholder.small { height: 190px; min-height: 190px; }
.image-placeholder.tall { height: 430px; min-height: 430px; }
.policy-visual { min-height: 300px; }

.policy-content {
  max-width: 840px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.policy-content h2 { font-size: 28px; margin-top: 30px; }
.policy-content h2:first-child { margin-top: 0; }

.public-footer {
  border-top: 1px solid var(--line);
  padding: 34px 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
}
.public-footer > div,
.public-footer nav {
  max-width: 620px;
}
.public-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}
.public-footer span { display: block; line-height: 1.6; }
.public-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.public-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

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

@media (max-width: 1020px) {
  .public-header-inner { align-items: flex-start; flex-direction: column; }
  .public-nav { justify-content: flex-start; }
  .split-hero, .page-hero, .image-text, .spec-layout, .contact-grid, .guide-article {
    grid-template-columns: 1fr;
  }
  .hero-gallery { min-height: 480px; }
  .path-grid, .process-timeline { grid-template-columns: 1fr 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(38px, 13vw, 54px); }
  h2 { font-size: clamp(28px, 9vw, 40px); }
  .public-header-inner { min-height: auto; }
  .brand-lockup { min-width: 0; }
  .brand-lockup span { display: none; }
  .public-logo { width: 145px; }
  .public-nav { gap: 12px; }
  .public-nav a { font-size: 13px; }
  .split-hero, .page-hero, .section { padding-left: 18px; padding-right: 18px; }
  .split-hero, .page-hero { padding-top: 44px; padding-bottom: 54px; min-height: auto; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .muted-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }
  .hero-gallery img:first-child { grid-row: auto; }
  .hero-gallery img, .page-hero-image, .feature-image, .article-media img, .article-media .image-placeholder {
    height: 300px;
  }
  .path-grid, .three-column, .product-strip, .option-matrix, .faq-grid, .guide-grid, .process-timeline {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card img { min-height: 240px; }
  .tile-collage { grid-template-columns: 1fr 1fr; }
  .tile-collage img { height: 170px; }
  .guide-article.reverse .article-media { order: 0; }
  .public-footer { flex-direction: column; }
  .public-footer nav { justify-content: flex-start; }
}
