:root {
  --ink: #102b28;
  --forest: #123d35;
  --forest-dark: #0b2d28;
  --green: #5ab52d;
  --green-bright: #9bd83e;
  --blue: #81b9e4;
  --sky: #dceef8;
  --cream: #f5f4ec;
  --white: #fff;
  --muted: #5f706d;
  --line: #d9dfda;
  --container: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px;
  background: white; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.announcement {
  background: var(--forest-dark);
  color: #d9eee5;
  font-size: 13px;
  letter-spacing: .02em;
}
.announcement-inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announcement a { color: white; font-weight: 600; }
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgb(155 216 62 / 12%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(16 43 40 / 8%);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 38px; }
.brand { width: 84px; height: 68px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 78px; }
.main-nav { margin-left: auto; display: flex; gap: 34px; align-items: center; }
.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #2d4944;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgb(16 43 40 / 15%); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.button-accent { background: var(--green-bright); color: var(--forest-dark); }
.button-dark { background: var(--forest); }
.button-white { color: var(--forest); background: white; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  overflow: hidden;
  background: var(--forest);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 39 34 / 97%) 0%, rgb(7 39 34 / 86%) 42%, rgb(7 39 34 / 25%) 72%, transparent 100%);
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 32%;
  background:
    linear-gradient(rgb(19 61 53 / 8%), rgb(19 61 53 / 10%)),
    url("assets/hero-field.jpg") center / cover no-repeat;
  transform: scale(1.01);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .05;
  background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .62fr);
  gap: 100px;
  align-items: center;
  padding-block: 88px 104px;
}
.eyebrow {
  margin: 0 0 16px;
  color: #4b9b2c;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--green-bright); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--blue); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: #d3e1dc; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.text-link-light { color: white; }
.hero-card {
  align-self: end;
  margin-bottom: -38px;
  padding: 28px;
  color: var(--ink);
  background: rgb(255 255 255 / 94%);
  border-top: 4px solid var(--green-bright);
  box-shadow: 0 24px 80px rgb(0 0 0 / 18%);
  backdrop-filter: blur(14px);
}
.hero-card-top { display: flex; justify-content: space-between; align-items: center; }
.mini-label {
  color: #68807b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.card-icon { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: #e8f4df; }
.card-icon svg { fill: none; stroke: var(--green); stroke-width: 1.7; }
.hero-card > p { margin: 18px 0; font-family: "Manrope"; font-size: 22px; font-weight: 700; line-height: 1.35; }
.hero-card ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.hero-card li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.hero-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.partner-lockup { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.partner-lockup span { color: #788985; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.partner-lockup img { width: 130px; }
.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 55%);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll span { display: block; width: 1px; height: 40px; background: rgb(255 255 255 / 35%); }

.proof-strip { background: white; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { padding: 28px 30px; border-right: 1px solid var(--line); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { display: block; color: var(--forest); font-family: "Manrope"; font-size: 22px; line-height: 1.1; }
.proof-grid span { color: var(--muted); font-size: 13px; }

.section { padding: 120px 0; }
.section-heading h2, .process h2, .partnership h2, .cta-section h2 {
  margin: 0;
  font-family: "Manrope";
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.split-heading { display: grid; grid-template-columns: 1.1fr .72fr; gap: 120px; align-items: end; }
.heading-copy p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 68px; }
.service-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  background: white;
  border: 1px solid #e5e7e0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgb(20 50 45 / 9%); }
.service-card.featured { background: var(--forest); color: white; border-color: var(--forest); }
.service-number { color: #8fa09c; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.service-icon { width: 66px; height: 66px; margin: 42px 0 28px; }
.service-icon svg { fill: none; stroke: var(--green); stroke-width: 1.5; }
.featured .service-icon svg { stroke: var(--green-bright); }
.service-card h3 { margin: 0 0 14px; font-family: "Manrope"; font-size: 21px; line-height: 1.25; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card.featured p { color: #c4d4cf; }

.process { background: white; }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.process-visual { position: relative; min-height: 700px; }
.process-visual::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 88%;
  left: -24px;
  top: -24px;
  background: var(--sky);
}
.process-visual img { position: relative; width: 100%; height: 700px; object-fit: cover; }
.image-badge {
  position: absolute;
  right: -26px;
  bottom: 34px;
  width: 255px;
  padding: 22px 24px;
  color: white;
  background: var(--forest);
}
.image-badge span { display: block; color: var(--green-bright); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.image-badge strong { display: block; margin-top: 5px; font-family: "Manrope"; font-size: 18px; }
.steps { margin: 48px 0 38px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 21px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--green); font-family: "Manrope"; font-size: 12px; font-weight: 800; }
.steps h3 { margin: -4px 0 5px; font-family: "Manrope"; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.partnership { background: #dcecf1; }
.partnership-card {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  min-height: 660px;
  background: var(--forest);
  color: white;
  box-shadow: 0 30px 80px rgb(15 60 52 / 14%);
}
.partnership-image { position: relative; overflow: hidden; }
.partnership-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.partnership-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(9 42 37 / 35%), transparent 50%); }
.date-chip { position: absolute; z-index: 1; left: 26px; bottom: 26px; padding: 10px 15px; color: var(--forest); background: var(--green-bright); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.partnership-copy { padding: 70px 72px; }
.partnership-copy > p:not(.eyebrow) { color: #c4d5d0; font-size: 16px; }
.logo-equation { display: flex; gap: 22px; align-items: center; margin: 28px 0; }
.logo-equation > div { height: 86px; min-width: 190px; padding: 9px 18px; display: flex; align-items: center; justify-content: center; background: white; }
.logo-equation img { max-width: 158px; max-height: 55px; object-fit: contain; }
.logo-equation .mini-flevo img { width: auto; height: 72px; max-height: 72px; }
.logo-equation > span { color: var(--green-bright); font-size: 28px; font-weight: 300; }
.check-list { margin: 0 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 7px 0 7px 26px; color: #e1ebe8; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-bright); font-weight: 800; }

.applications { background: var(--cream); }
.applications .section-heading { max-width: 750px; }
.application-grid { display: grid; grid-template-columns: 1.35fr .9fr .9fr; gap: 16px; margin-top: 60px; }
.application-card { position: relative; min-height: 430px; overflow: hidden; }
.application-photo img { width: 100%; height: 100%; object-fit: cover; }
.application-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(6 35 30 / 85%), transparent 65%); }
.application-overlay { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 28px; color: white; }
.application-label, .application-overlay > span { color: var(--green-bright); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.application-card h3 { margin: 10px 0; font-family: "Manrope"; font-size: 30px; line-height: 1.17; letter-spacing: -.03em; }
.application-overlay a { font-size: 13px; font-weight: 700; border-bottom: 1px solid white; }
.application-green { padding: 34px; background: #75bd38; color: var(--forest-dark); }
.application-green .application-label { color: var(--forest-dark); opacity: .7; }
.application-green p, .application-light p { font-size: 14px; }
.line-art { position: absolute; inset: auto -70px -20px -70px; opacity: .3; }
.line-art svg { fill: none; stroke: var(--forest); stroke-width: 1.2; }
.round-link {
  position: absolute; left: 34px; bottom: 34px;
  width: 50px; height: 50px; display: grid; place-items: center;
  border: 1px solid rgb(16 43 40 / 35%); border-radius: 50%;
  font-size: 22px;
}
.application-light { padding: 34px; background: white; border: 1px solid var(--line); }
.application-light .text-link { position: absolute; left: 34px; bottom: 34px; }

.local-seo { background: white; }
.local-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: center; }
.local-copy h2 {
  margin: 0 0 28px;
  font-family: "Manrope";
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.local-copy > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 17px; }
.local-copy .button { margin-top: 18px; }
.local-card { padding: 38px; color: white; background: var(--forest); border-top: 4px solid var(--green-bright); }
.local-card .mini-label { color: var(--green-bright); }
.local-card h3 { margin: 16px 0; font-family: "Manrope"; font-size: 27px; }
.local-card address { margin-bottom: 20px; color: #c4d5d0; font-style: normal; }
.local-card > a:not(.text-link) { display: block; margin: 7px 0; font-weight: 600; }
.local-card .text-link { margin-top: 24px; color: white; }

.faq { background: var(--cream); border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid #cbd4cf; }
.faq details { border-bottom: 1px solid #cbd4cf; }
.faq summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--green); font-size: 28px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; margin: -4px 50px 24px 0; color: var(--muted); }

.cta-section { padding: 90px 0; color: white; background: var(--forest); }
.cta-inner { display: flex; justify-content: space-between; align-items: end; gap: 70px; }
.cta-section h2 { font-size: clamp(40px, 4vw, 58px); }
.cta-section p:not(.eyebrow) { margin: 14px 0 0; color: #c4d5d0; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; min-width: 270px; }
.phone-link { font-family: "Manrope"; font-size: 20px; font-weight: 700; }
.phone-link span { display: block; color: #9bb0aa; font-family: "DM Sans"; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { padding: 72px 0 24px; color: #b7c7c3; background: #082621; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 70px; }
.footer-flevo { width: 90px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { max-width: 270px; font-size: 13px; }
.footer-grid h3 { margin: 0 0 18px; color: white; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div > a { display: block; margin: 8px 0; font-size: 13px; }
.footer-grid > div > a:hover { color: white; }
.footer-address { display: block; margin-top: 16px; color: #819691; font-size: 12px; line-height: 1.5; }
.footer-partner { align-self: center; padding: 20px; background: white; }
.footer-partner span { display: block; margin-bottom: 8px; color: #80908d; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.footer-partner img { width: 170px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 10%); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .main-nav { gap: 22px; }
  .main-nav a { font-size: 13px; }
  .hero-inner { grid-template-columns: 1fr .58fr; gap: 50px; }
  .hero h1 { font-size: 65px; }
  .split-heading { gap: 60px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-layout { gap: 60px; }
  .partnership-copy { padding: 55px 45px; }
  .application-grid { grid-template-columns: 1.2fr 1fr; }
  .application-light { grid-column: 1 / -1; min-height: 300px; }
  .local-layout { gap: 60px; }
  .faq-layout { gap: 60px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .announcement-inner { min-height: 42px; font-size: 11px; }
  .announcement a { display: none; }
  .nav-wrap { height: 70px; }
  .brand { width: 68px; height: 60px; }
  .brand img { width: 62px; }
  .menu-toggle {
    display: flex;
    width: 42px; height: 42px;
    margin-left: auto;
    padding: 11px 9px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }
  .menu-toggle > span:not(.sr-only) { width: 100%; height: 2px; background: var(--forest); transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 70px; left: 0; right: 0;
    display: none;
    padding: 22px 24px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgb(10 40 35 / 10%);
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 16px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero::after { background: linear-gradient(90deg, rgb(7 39 34 / 96%), rgb(7 39 34 / 68%)); }
  .hero-photo { inset: 0; background-position: 70% center; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 90px 70px; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(50px, 11vw, 78px); }
  .hero-card { max-width: 500px; margin: 10px 0 0; }
  .hero-scroll { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:first-child { padding-left: 30px; }
  .section { padding: 90px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-visual, .process-visual img { min-height: 500px; height: 500px; }
  .partnership-card { grid-template-columns: 1fr; }
  .partnership-image { height: 520px; }
  .application-grid { grid-template-columns: 1fr 1fr; }
  .application-photo { grid-column: 1 / -1; }
  .local-layout, .faq-layout { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .announcement-inner { justify-content: center; }
  .hero-inner { padding-block: 72px 48px; gap: 38px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-card { padding: 22px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 20px 12px !important; }
  .proof-grid strong { font-size: 17px; }
  .proof-grid span { font-size: 11px; }
  .section { padding: 72px 0; }
  .section-heading h2, .process h2, .partnership h2 { font-size: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-icon { margin: 28px 0 20px; }
  .process-layout { gap: 50px; }
  .process-visual, .process-visual img { min-height: 400px; height: 400px; }
  .process-visual::before { left: -10px; top: -10px; }
  .image-badge { right: 0; bottom: 20px; width: 220px; }
  .partnership-image { height: 400px; }
  .partnership-copy { padding: 42px 25px; }
  .logo-equation { gap: 9px; }
  .logo-equation > div { min-width: 0; width: 43%; height: 72px; padding-inline: 10px; }
  .logo-equation img { max-width: 100%; max-height: 45px; }
  .logo-equation .mini-flevo img { width: auto; height: 60px; max-height: 60px; }
  .application-grid { grid-template-columns: 1fr; }
  .application-photo, .application-light { grid-column: auto; }
  .application-card { min-height: 380px; }
  .cta-section { padding: 70px 0; }
  .cta-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-partner { max-width: 260px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

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