@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --green: #1AAE62;
  --green-deep: #0E7A45;
  --green-soft: #E8F6EE;
  --ink: #212D45;
  --ink-soft: #5A6578;
  --paper: #FFFFFF;
  --mist: #F4F7F4;
  --sand: #F7F4EE;
  --line: #DCE6DC;
  --danger: #B42318;
  --max: 1180px;
  --wide: 1360px;
  --header: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  overflow-wrap: break-word;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 16px; top: 16px; z-index: 100; background: #fff; padding: 8px 12px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  position: relative;
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 14px 28px;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  line-height: 1;
}
.logo {
  display: block;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.045em;
  line-height: 1;
}
.logo .g { color: var(--green); }
.brand-loc {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.brand-loc a {
  color: var(--ink);
  font-weight: 600;
}
.brand-loc a:hover { color: var(--green-deep); }
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  padding: 10px 11px;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav a:hover, .nav a.is-active { color: var(--green-deep); }
.nav-phone { white-space: nowrap; }
.nav-cta { margin-left: 8px; }
.menu-btn {
  display: inline-flex;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  appearance: none;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #161f32; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1EBE5A; color: #fff; }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(20, 40, 20, .28);
  transition: transform .2s var(--ease), background .2s;
}
.wa-fab:hover { transform: scale(1.06); background: #1EBE5A; color: #fff; }
.wa-fab svg { width: 30px; height: 30px; fill: currentColor; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,28,40,.18) 0%, rgba(18,28,40,.55) 52%, rgba(18,28,40,.82) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 80px 28px 72px;
  width: 100%;
}
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 74px);
  max-width: 13ch;
  font-weight: 600;
  line-height: 1.08;
}
.hero .lede {
  max-width: 42ch;
  margin-top: 22px;
  font-size: 18.5px;
  color: rgba(255,255,255,.88);
  overflow-wrap: break-word;
}
.hero .btn-row { margin-top: 32px; }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: var(--wide); margin: 0 auto; padding: 0 28px; }
.section { padding: 92px 0; }
.section-mist { background: var(--mist); }
.section-ink { background: var(--ink); color: #fff; }
.section-sand { background: var(--sand); }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green-deep);
  margin-bottom: 14px;
}
.section h2 { font-size: clamp(32px, 4vw, 48px); }
.section .intro {
  max-width: 58ch;
  color: var(--ink-soft);
  margin-top: 16px;
  font-size: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.split.rev { grid-template-columns: .95fr 1.05fr; }
.split img { width: 100%; height: 520px; object-fit: cover; }
.media-frame { overflow: hidden; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 26px 26px 28px; }
.card h3 { font-size: 26px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card .more {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.card:hover .more { color: var(--green); }

.service-card .icon-line {
  width: 36px; height: 2px; background: var(--green); margin-bottom: 18px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.person img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.split .person img {
  height: auto;
  aspect-ratio: 4 / 3;
}
.person img.photo-duo {
  object-position: center center;
  object-fit: cover;
}
.person-meta { padding: 22px 4px 0; }
.person-meta .role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.35;
  overflow-wrap: break-word;
}
.person-meta h3 { font-size: 32px; }
.person-meta p { color: var(--ink-soft); margin-top: 10px; overflow-wrap: anywhere; }
.person-tag {
  margin-top: 6px !important;
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 16px;
}

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  padding: 28px 24px 32px;
  background: #fff;
  border-top: 3px solid var(--green);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--green);
  margin-bottom: 14px;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; color: var(--ink-soft); max-width: 72ch; }

/* Forms */
.form {
  display: grid;
  gap: 14px;
}
.form.two { grid-template-columns: 1fr 1fr; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  border-radius: 2px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}
.form textarea { min-height: 120px; resize: vertical; }
.form .hint { font-size: 12.5px; color: var(--ink-soft); font-weight: 400; }
.form-note { font-size: 15px; color: var(--ink-soft); }
.form-note.is-ok { color: var(--green-deep); font-weight: 700; }
.form-note.is-err { color: var(--danger); font-weight: 700; }

/* Page hero */
.page-hero {
  padding: 72px 0 28px;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 62px); max-width: 16ch; }
.page-hero p { max-width: 54ch; color: var(--ink-soft); margin-top: 16px; font-size: 18px; }

.prose { max-width: 72ch; }
.prose p + p { margin-top: 14px; }
.prose h2 { font-size: 32px; margin: 36px 0 12px; }
.prose h3 { font-size: 24px; margin: 28px 0 10px; }
.prose ul { margin: 12px 0 12px 1.1em; list-style: disc; color: var(--ink-soft); }
.prose li { margin: 6px 0; padding-left: 4px; }
.checklist li {
  list-style: none;
  padding-left: 0;
  position: relative;
  margin: 10px 0;
}
.checklist { margin-left: 0; }
.checklist li::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  margin-right: 10px;
  border-radius: 1px;
  transform: translateY(-1px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 18px;
}
.stat b {
  display: block;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 34px;
  font-weight: 700;
}
.stat span { color: rgba(255,255,255,.7); font-size: 14.5px; }

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 28px;
  font-size: 14.5px;
}
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: var(--green); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer .logo { font-size: 22px; margin-bottom: 14px; }
.footer p { color: rgba(255,255,255,.7); max-width: 36ch; }
.footer h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
}
.footer li { margin: 8px 0; }
.legalbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.notice {
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  padding: 16px 18px;
  font-size: 15px;
}

.local-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.28);
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
}

.empty-listing {
  padding: 48px 36px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}
.empty-listing h3 { font-size: 32px; margin-bottom: 10px; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
}
.contact-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card small {
  display: block;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.contact-card a { font-size: 22px; font-family: 'Open Sans', system-ui, sans-serif; font-weight: 700; }

.article-list a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.article-list img { width: 180px; height: 120px; object-fit: cover; }
.article-list h3 { font-size: 26px; }
.article-list p { color: var(--ink-soft); margin-top: 6px; }

.legal h1 { font-size: 42px; margin-bottom: 18px; }
.legal h2 { font-size: 24px; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { margin: 8px 0 8px 1.2em; list-style: disc; }

@media (min-width: 981px) {
  .menu-btn { display: none; }
}
@media (max-width: 980px) {
  .split, .split.rev, .cta-band, .contact-grid, .form.two, .team-grid, .grid-3, .grid-2, .steps, .stat-row, .footer-grid, .article-list a {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    align-items: stretch;
  }
  .nav.open .nav-cta { margin: 8px 0 0; }
  .split img, .person img { height: 380px; }
  .hero-inner { padding: 56px 22px 48px; }
  .section { padding: 64px 0; }
  .header .wrap, .wrap, .wrap-wide { padding-left: 18px; padding-right: 18px; }
  .nav-phone { display: none; }
  .article-list img { width: 100%; height: 180px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .logo { font-size: 22px; }
  .hero { height: auto; min-height: 0; padding: 0; }
  .hero-inner { padding: 48px 18px 40px; }
  .hero h1 { font-size: 32px; max-width: 100%; padding-right: 4px; }
  .hero .lede { font-size: 16px; }
  .page-hero h1, .section h2 { font-size: 30px; max-width: 100%; }
  .page-hero h1 { font-size: 32px; }
  .menu-btn { margin-left: auto; }
  .brand-loc { font-size: 11.5px; }
  .brand-street { display: none; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
}
