:root {
  --forest-950: #032f26;
  --forest-900: #073b31;
  --forest-800: #105244;
  --forest-700: #1b6653;
  --coral: #f2583e;
  --coral-dark: #d94730;
  --lime: #b7cf35;
  --lime-soft: #e3edb7;
  --sage: #dce9ca;
  --sage-soft: #eef4e5;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --white: #fff;
  --ink: #12342b;
  --muted: #5d6b65;
  --line: rgba(7, 59, 49, .16);
  --shadow: 0 18px 50px rgba(3, 47, 38, .12);
  --max: 1240px;
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; letter-spacing: 0; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 999; padding: 10px 14px; background: var(--paper); }
.skip-link:focus { top: 12px; }
.eyebrow { margin: 0 0 14px; color: var(--coral); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.eyebrow.lime { color: var(--lime); }
.display-title { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5.4vw, 78px); font-weight: 500; line-height: .98; }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 60px); font-weight: 500; line-height: 1.02; }
.section-copy { max-width: 630px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.rule { width: 64px; height: 3px; margin-top: 24px; background: var(--coral); }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--coral-dark); }
.button-dark { background: var(--forest-900); }
.button-dark:hover { background: var(--forest-700); }
.button-lime { background: var(--lime); color: var(--forest-950); }
.button-lime:hover { background: #cadf4c; }
.button-outline { border-color: currentColor; background: transparent; }
.button-outline:hover { background: var(--white); color: var(--forest-900); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.text-link::after { content: "→"; }
.icon { width: 22px; height: 22px; flex: 0 0 22px; stroke-width: 1.7; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(3, 47, 38, .98); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-width: max-content; display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 23px; font-weight: 800; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border-radius: 7px; background: var(--white); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.35); }
.brand-word .accent { color: var(--lime); }
.nav-links { min-height: 76px; display: flex; align-items: stretch; gap: 2px; }
.nav-group { position: relative; }
.nav-trigger { height: 76px; display: flex; align-items: center; gap: 6px; padding: 0 13px; font-size: 13px; font-weight: 700; }
.nav-trigger:hover, .nav-trigger[aria-current="page"] { color: var(--lime); }
.nav-trigger .icon { width: 14px; height: 14px; }
.mega-menu {
  width: 260px;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-group:hover .mega-menu, .nav-group:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { display: block; padding: 10px 11px; border-radius: 5px; font-size: 13px; font-weight: 700; }
.mega-menu a:hover { background: var(--sage-soft); color: var(--forest-800); }
.nav-quote { min-height: 44px; padding-inline: 18px; }
.menu-toggle { width: 44px; height: 44px; display: none; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 6px; background: transparent; color: white; cursor: pointer; }
.mobile-menu { display: none; position: fixed; inset: 76px 0 0; z-index: 90; padding: 18px 24px 34px; overflow-y: auto; background: var(--forest-950); color: white; }
.mobile-menu.open { display: block; }
.mobile-menu details { border-bottom: 1px solid rgba(255,255,255,.16); }
.mobile-menu summary { padding: 16px 0; list-style: none; font-weight: 800; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu details a { display: block; padding: 9px 14px; color: rgba(255,255,255,.78); font-size: 14px; }
.mobile-menu > a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-weight: 800; }
.mobile-menu .button { display: flex; margin-top: 22px; }

.home-hero { min-height: 620px; display: grid; grid-template-columns: minmax(410px, 43%) minmax(0, 57%); background: var(--forest-950); color: var(--white); }
.home-hero-copy-wrap { display: flex; justify-content: flex-end; padding-left: max(24px, calc((100vw - var(--max)) / 2)); }
.home-hero-copy { width: 100%; max-width: 540px; align-self: center; padding: 66px 48px 70px 0; }
.home-hero-copy .display-title { max-width: 510px; }
.home-hero-copy > p { max-width: 470px; margin: 22px 0 28px; color: rgba(255,255,255,.8); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.hero-benefit { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.3; }
.hero-benefit .icon { width: 27px; height: 27px; color: var(--lime); flex-basis: 27px; }
.home-hero-media { min-width: 0; min-height: 620px; overflow: hidden; clip-path: ellipse(91% 94% at 100% 50%); background: #d7d1c5; }
.home-hero-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 53% center; }

.trust-strip { padding: 24px 0 26px; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-label { margin: 0 0 18px; text-align: center; color: var(--forest-800); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.logo-viewport { overflow: hidden; }
.logo-track { width: max-content; display: flex; align-items: center; animation: logo-marquee 40s linear infinite; }
.logo-group { display: flex; align-items: center; gap: 46px; padding-right: 46px; }
.logo-item { width: 170px; height: 68px; flex: 0 0 170px; display: grid; place-items: center; padding: 3px 6px; overflow: visible; }
.logo-item img { width: auto; height: auto; max-width: 100%; max-height: 60px; object-fit: contain; }
.logo-item.text-logo { font-size: 18px; font-weight: 900; white-space: nowrap; }
.logo-item.duc img { max-height: 62px; transform: rotate(180deg); }
.logo-item.color3 img { max-height: 62px; }
.trust-strip:hover .logo-track { animation-play-state: paused; }
@keyframes logo-marquee { to { transform: translateX(-50%); } }

.section { padding: 84px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage-soft); }
.section-dark { background: var(--forest-950); color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 34px; }
.section-head > p { max-width: 440px; margin: 0; color: var(--muted); }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-card { min-height: 430px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); isolation: isolate; transition: transform .2s ease, box-shadow .2s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category-card.green { background: #e5eccd; }
.category-card.coral { background: #f8d4c8; }
.category-card.gold { background: #fbe9bf; }
.category-card.sage { background: #e4edce; }
.category-copy { position: relative; z-index: 2; padding: 22px 20px 0; }
.category-card h2 { max-width: 180px; margin: 0 0 9px; font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: .98; }
.category-card p { max-width: 190px; margin: 0; color: #45534c; font-size: 13px; line-height: 1.5; }
.category-card img { width: 100%; height: 72%; position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; object-fit: contain; object-position: center bottom; }
.category-link { position: absolute; left: 20px; bottom: 20px; z-index: 3; font-size: 13px; font-weight: 800; }

.partner-band { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 540px; background: var(--white); }
.partner-media { min-width: 0; overflow: hidden; background: #ddd4c5; }
.partner-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.partner-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px max(44px, calc((100vw - var(--max)) / 2)); }
.check-list { display: grid; gap: 11px; padding: 0; margin: 25px 0 30px; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: "✓"; width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--forest-950); font-size: 12px; font-weight: 900; }

.solution-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.solution-card { min-height: 210px; padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.solution-card:last-child { border-right: 0; }
.solution-card .icon { width: 42px; height: 42px; margin: 0 auto 18px; color: var(--lime); }
.solution-card h3 { margin: 0 0 8px; font-size: 15px; }
.solution-card p { margin: 0 0 15px; color: rgba(255,255,255,.7); font-size: 12px; }
.solution-card a { color: var(--lime); font-size: 12px; font-weight: 800; }

.cta-band { padding: 30px 0; color: white; background: var(--coral); }
.cta-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.cta-icon { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid white; border-radius: 50%; }
.cta-icon .icon { width: 32px; height: 32px; }
.cta-band h2 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.cta-band p { margin: 3px 0 0; }
.cta-band .button { background: white; color: var(--coral); }

.page-hero { position: relative; overflow: hidden; background: var(--cream); }
.page-hero.hero-image { min-height: clamp(520px, 56vw, 720px); }
.page-hero-bg { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,241,231,.98) 0%, rgba(247,241,231,.86) 38%, rgba(247,241,231,.08) 68%); }
.page-hero-inner { min-height: inherit; position: relative; z-index: 2; display: flex; align-items: center; }
.page-hero-copy { width: min(58%, 720px); padding: 70px 0; }
.page-hero-copy p:not(.eyebrow) { max-width: 570px; margin: 22px 0 0; color: #304b42; font-size: 18px; }
.page-hero-copy .hero-actions { margin-top: 30px; }

.category-tabs { padding: 34px 0 0; background: var(--paper); }
.category-tabs-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.72); }
.tab-link { min-height: 70px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px; border-radius: 9px; font-size: 13px; font-weight: 800; }
.tab-link:hover { background: var(--sage-soft); }
.tab-link.active { background: var(--forest-900); color: white; }
.tab-link .icon { width: 28px; height: 28px; }

.product-list-section { padding: 66px 0 90px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card-media { aspect-ratio: 4 / 5; overflow: hidden; background: #eee8df; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-card-body { min-height: 188px; padding: 25px; }
.product-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.05; }
.product-card p { margin: 13px 0 18px; color: var(--muted); }

.detail-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 630px; background: var(--paper); }
.detail-hero-media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream); }
.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.detail-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 66px max(48px, calc((100vw - var(--max)) / 2)); }
.detail-hero-copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); font-size: 17px; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid var(--line); }
.feature { padding: 22px 18px 0 0; border-right: 1px solid var(--line); }
.feature:last-child { border-right: 0; padding-left: 18px; }
.feature:nth-child(2) { padding-left: 18px; }
.feature .icon { margin-bottom: 10px; color: var(--forest-800); }
.feature strong { display: block; }
.feature span { color: var(--muted); font-size: 12px; }

.spec-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; }
.spec-table th { width: 40%; font-weight: 800; }
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.use-card { min-height: 155px; display: grid; place-items: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: white; text-align: center; }
.use-card .icon { width: 42px; height: 42px; color: var(--forest-800); }
.use-card strong { font-size: 13px; }

.option-groups { display: grid; grid-template-columns: .8fr 1.2fr 1fr; gap: 34px; }
.option-group { min-width: 0; padding-right: 28px; border-right: 1px solid var(--line); }
.option-group:last-child { padding-right: 0; border-right: 0; }
.option-group h3 { margin: 0 0 18px; font-size: 13px; text-transform: uppercase; }
.swatches { display: flex; gap: 18px; }
.swatch-wrap { text-align: center; font-size: 11px; }
.swatch { width: 58px; height: 58px; margin-bottom: 8px; border: 1px solid var(--line); border-radius: 50%; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice { min-height: 104px; display: grid; place-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: white; text-align: center; font-size: 12px; }
.choice.active { border-color: var(--forest-800); box-shadow: inset 0 0 0 1px var(--forest-800); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { min-height: 260px; padding: 30px 34px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-number { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; background: var(--lime); font-family: var(--serif); font-size: 24px; }
.process-step .icon { width: 44px; height: 44px; margin-bottom: 18px; }
.process-step h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.process-step p { margin: 0; color: var(--muted); }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; padding: 54px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(135deg, var(--sage-soft), #fbf9ed); }
.form-intro { padding-right: 42px; border-right: 1px solid var(--line); }
.form-benefits { display: grid; gap: 17px; margin-top: 30px; }
.form-benefit { display: flex; align-items: center; gap: 12px; }
.form-benefit .icon-wrap { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-900); color: white; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid rgba(7,59,49,.28); border-radius: 4px; background: rgba(255,255,255,.9); color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 11px; }

.resource-hero { min-height: 560px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--lime); }
.resource-hero::after { content: ""; width: 46vw; height: 46vw; position: absolute; right: -8vw; bottom: -18vw; border: 2px solid rgba(7,59,49,.12); transform: rotate(28deg); }
.resource-hero-copy { max-width: 740px; padding: 75px 0; position: relative; z-index: 1; }
.featured-guide { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.featured-guide-copy { padding: 48px; }
.featured-guide-media { min-height: 480px; overflow: hidden; }
.featured-guide-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.article-card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 25px; }
.article-card h2, .article-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; line-height: 1.05; font-weight: 500; }
.article-card p { color: var(--muted); }

.about-hero { min-height: 650px; display: grid; grid-template-columns: .85fr 1.15fr; background: var(--cream); }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px 64px max(70px, calc((100vw - var(--max))/2)); }
.about-media { overflow: hidden; background: #dad4c8; }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-card { min-height: 190px; padding: 30px; border-right: 1px solid var(--line); }
.value-card:last-child { border-right: 0; }
.value-card .icon { width: 42px; height: 42px; margin-bottom: 18px; }
.value-card h3 { margin: 0 0 8px; }
.value-card p { margin: 0; color: var(--muted); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.timeline::before { content: ""; height: 1px; position: absolute; top: 20px; left: 10%; right: 10%; background: var(--forest-800); }
.timeline-step { position: relative; z-index: 1; padding: 0 20px; text-align: center; }
.timeline-dot { width: 40px; height: 40px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--forest-900); color: white; font-weight: 800; }
.timeline-step h3 { margin: 0 0 6px; font-size: 14px; text-transform: uppercase; }
.timeline-step p { margin: 0; color: var(--muted); font-size: 12px; }

.faq-hero { padding: 78px 0; overflow: hidden; background: var(--forest-950); color: white; }
.faq-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; }
.faq-categories { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.faq-category { min-height: 92px; display: grid; place-items: center; padding: 15px; text-align: center; font-size: 13px; font-weight: 800; }
.faq-category.active { border-bottom: 3px solid var(--lime); }
.accordion { display: grid; gap: 10px; }
.accordion details { border: 1px solid var(--line); border-radius: 6px; background: white; }
.accordion summary { padding: 22px 26px; list-style: none; font-family: var(--serif); font-size: 22px; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion details p { margin: 0; padding: 0 26px 25px; color: var(--muted); }
.faq-aside { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.faq-aside img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.faq-aside-copy { padding: 30px; }
.compact-title { font-size: 38px; }
.mini-list { display: grid; gap: 9px; padding: 0; margin: 20px 0 26px; list-style: none; color: var(--muted); }
.mini-list li::before { content: "✓"; margin-right: 8px; color: var(--forest-800); font-weight: 900; }

.narrow-head { max-width: 850px; margin-bottom: 48px; text-align: center; }
.narrow-head .section-copy { margin-inline: auto; }
.custom-hero { overflow: hidden; background: var(--coral); color: white; }
.custom-hero-grid { min-height: 650px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 40px; }
.custom-hero-copy { padding: 72px 0; }
.custom-hero-copy > p:not(.eyebrow) { max-width: 550px; margin: 24px 0 30px; color: rgba(255,255,255,.84); font-size: 18px; }
.custom-hero-media { align-self: stretch; min-width: 0; display: grid; place-items: end center; }
.custom-hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.process-step strong { display: block; margin: -2px 0 12px; color: var(--forest-800); font-size: 12px; text-transform: uppercase; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: white; }
.capability-grid article { min-height: 240px; padding: 32px; border-right: 1px solid var(--line); }
.capability-grid article:last-child { border-right: 0; }
.capability-grid .icon { width: 42px; height: 42px; color: var(--forest-800); }
.capability-grid h3 { margin: 20px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.capability-grid p { margin: 0; color: var(--muted); }
.buyer-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.buyer-split article { padding: 48px; border: 1px solid var(--line); background: rgba(255,255,255,.62); }
.value-strip { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.sustainability-band { min-height: 560px; }
.resource-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.resource-actions > div { padding: 24px 60px; }
.resource-actions > div:first-child { border-right: 1px solid rgba(255,255,255,.24); }
.resource-actions p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.solution-jump { position: sticky; top: 76px; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255,253,248,.96); backdrop-filter: blur(10px); }
.solution-jump .container { min-height: 84px; display: grid; grid-template-columns: repeat(5, 1fr); }
.solution-jump a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; border-right: 1px solid var(--line); text-align: center; font-size: 12px; font-weight: 800; }
.solution-jump a:first-child { border-left: 1px solid var(--line); }
.solution-jump a:hover { background: var(--sage-soft); }
.solution-rows { display: grid; }
.solution-row { min-height: 440px; display: grid; grid-template-columns: 90px minmax(0, 1fr) 270px; align-items: center; gap: 42px; padding: 70px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 165px; }
.solution-row:last-child { border-bottom: 0; }
.solution-row-index { align-self: start; color: var(--coral); font-family: var(--serif); font-size: 38px; }
.solution-row-copy { max-width: 720px; }
.solution-row-icon { width: 240px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--sage-soft); color: var(--forest-800); }
.solution-row-icon .icon { width: 90px; height: 90px; }
.quote-hero { overflow: hidden; background: var(--cream); }
.quote-hero-grid { min-height: 560px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 36px; }
.quote-hero-grid > div { padding: 70px 0; }
.quote-hero-grid > div > p:not(.eyebrow) { max-width: 530px; font-size: 20px; }
.quote-hero-grid img { width: 100%; height: 560px; object-fit: contain; object-position: center bottom; }
.hp-field { width: 1px !important; height: 1px !important; position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.legal-hero { padding: 100px 0 70px; background: var(--sage-soft); }
.legal-copy { max-width: 850px; }
.legal-copy section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.legal-copy p { color: var(--muted); }
.thanks-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; background: var(--sage-soft); }
.thanks-card { max-width: 820px; padding: 70px; text-align: center; border: 1px solid var(--line); background: white; }
.thanks-card > .icon { width: 64px; height: 64px; margin-bottom: 20px; color: var(--forest-800); }
.thanks-card > p:not(.eyebrow) { max-width: 650px; margin: 24px auto; color: var(--muted); font-size: 18px; }
.thanks-card .hero-actions { justify-content: center; }

.site-footer { padding: 62px 0 24px; background: var(--forest-950); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 38px; }
.footer-brand p { color: rgba(255,255,255,.68); font-size: 13px; }
.site-footer h3 { margin: 0 0 16px; color: var(--lime); font-size: 13px; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.76); font-size: 13px; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.56); font-size: 11px; }
.footer-legal { display: flex; gap: 18px; }
.floating-contact { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column; gap: 9px; }
.floating-contact a { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; color: white; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.floating-contact .wa { background: #1dbb61; }
.floating-contact .mail { background: var(--coral); }
.floating-contact .icon { width: 21px; height: 21px; }

@media (max-width: 1080px) {
  .nav-links, .nav > .nav-quote { display: none; }
  .menu-toggle { display: grid; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
  .solution-card:nth-child(3) { border-right: 0; }
  .solution-card:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.2); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero.hero-image { min-height: 600px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid article:nth-child(2) { border-right: 0; }
  .capability-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .solution-row { grid-template-columns: 70px 1fr 190px; }
  .solution-row-icon { width: 180px; }
}

@media (max-width: 780px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .nav { min-height: 68px; }
  .mobile-menu { inset: 68px 0 0; }
  .brand { font-size: 20px; }
  .brand-mark { width: 38px; height: 38px; }
  .display-title { font-size: clamp(42px, 12vw, 58px); }
  .section-title { font-size: clamp(36px, 10vw, 48px); }
  .section { padding: 64px 0; }
  .section-head { display: block; }
  .section-head > p { margin-top: 14px; }
  .home-hero { min-height: 0; grid-template-columns: 1fr; }
  .home-hero-copy-wrap { padding: 0 20px; }
  .home-hero-copy { max-width: 100%; padding: 52px 0 40px; }
  .hero-benefits { display: none; }
  .home-hero-media { min-height: 0; aspect-ratio: 4 / 3; clip-path: none; }
  .home-hero-media img { min-height: 0; object-position: 58% center; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 260px; }
  .category-card img { width: 53%; height: 100%; left: auto; right: 0; }
  .category-copy { width: 52%; padding: 24px 0 0 22px; }
  .category-card p { font-size: 12px; }
  .partner-band { grid-template-columns: 1fr; }
  .partner-media { aspect-ratio: 4 / 3; }
  .partner-copy { padding: 54px 24px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,.2); }
  .solution-card:nth-child(2n) { border-right: 0; }
  .solution-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.2); }
  .cta-inner { grid-template-columns: auto 1fr; }
  .cta-inner .button { grid-column: 1 / -1; }
  .page-hero.hero-image { min-height: 680px; }
  .page-hero-bg { object-position: 68% center; }
  .page-hero-overlay { background: linear-gradient(180deg, rgba(247,241,231,.98) 0%, rgba(247,241,231,.92) 42%, rgba(247,241,231,.1) 72%); }
  .page-hero-inner { align-items: flex-start; }
  .page-hero-copy { width: 100%; padding: 50px 0 0; }
  .category-tabs-inner { grid-template-columns: repeat(2, 1fr); }
  .tab-link:first-child { grid-column: 1 / -1; }
  .product-grid, .article-grid { grid-template-columns: 1fr; }
  .product-card { width: min(100%, 520px); margin-inline: auto; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-media { aspect-ratio: 4 / 5; }
  .detail-hero-copy { padding: 52px 22px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:nth-child(2), .feature:last-child { padding-left: 0; }
  .spec-layout, .form-layout, .featured-guide, .about-hero, .faq-layout, .custom-hero-grid, .quote-hero-grid, .buyer-split, .resource-actions { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .option-groups { grid-template-columns: 1fr; }
  .option-group { padding: 0 0 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid, .value-grid { grid-template-columns: 1fr; }
  .process-step, .value-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .form-layout { padding: 30px 22px; }
  .form-intro { padding: 0 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quote-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .featured-guide-copy { padding: 34px 28px; }
  .featured-guide-media { min-height: 0; aspect-ratio: 4 / 3; }
  .about-copy { padding: 54px 24px; }
  .about-media { aspect-ratio: 4 / 3; }
  .custom-hero-grid { gap: 0; }
  .custom-hero-copy { padding: 54px 0 20px; }
  .custom-hero-media { aspect-ratio: 4 / 3; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: 0; border-right: 0; border-top: 1px solid var(--line); }
  .capability-grid article:first-child { border-top: 0; }
  .buyer-split { gap: 18px; }
  .buyer-split article { padding: 30px 24px; }
  .resource-actions > div { padding: 32px 0; }
  .resource-actions > div:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .solution-jump { top: 68px; overflow-x: auto; }
  .solution-jump .container { width: max-content; grid-template-columns: repeat(5, 170px); }
  .solution-row { grid-template-columns: 48px 1fr; gap: 20px; padding: 54px 0; scroll-margin-top: 145px; }
  .solution-row-icon { display: none; }
  .quote-hero-grid { gap: 0; }
  .quote-hero-grid > div { padding: 54px 0 10px; }
  .quote-hero-grid img { height: auto; aspect-ratio: 4 / 3; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { width: 1px; height: auto; top: 20px; bottom: 20px; left: 20px; right: auto; }
  .timeline-step { min-height: 70px; padding-left: 70px; text-align: left; }
  .timeline-dot { position: absolute; left: 0; top: 0; }
  .faq-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .hero-actions .button { width: 100%; }
  .hero-benefits { grid-template-columns: 1fr; }
  .category-card { min-height: 300px; }
  .category-card img { width: 62%; height: 73%; }
  .category-copy { width: 58%; }
  .category-link { bottom: 16px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { border-right: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .solution-card:first-child { border-top: 0; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-icon { margin-inline: auto; }
  .category-tabs-inner { grid-template-columns: 1fr; }
  .tab-link:first-child { grid-column: auto; }
  .use-grid, .choice-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-row { display: block; }
  .footer-bottom { display: block; }
  .footer-legal { margin-top: 12px; }
  .floating-contact { right: 10px; bottom: 10px; }
  .floating-contact .mail { display: none; }
  .floating-contact a { width: 44px; height: 44px; }
  .solution-row { grid-template-columns: 1fr; }
  .solution-row-index { font-size: 28px; }
  .thanks-card { padding: 44px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
