:root {
  --green-950: #07150d;
  --green-900: #0b2414;
  --green-800: #0f3a20;
  --green-700: #15572d;
  --green-500: #279451;
  --green-300: #74d89a;
  --white: #f8fbf7;
  --muted: #b7c9bc;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 28px;
}
* { 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: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(39,148,81,.33), transparent 30rem),
    radial-gradient(circle at 80% 20%, rgba(116,216,154,.14), transparent 26rem),
    linear-gradient(180deg, var(--green-950), #08120c 55%, #030806);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(7, 21, 13, .78); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo {
  width: 72px; height: 48px; object-fit: cover; object-position: center;
  border-radius: 14px; background: white; padding: 3px;
  box-shadow: 0 10px 30px rgba(39,148,81,.25);
}
.brand strong, .brand em { display: block; line-height: 1; }
.brand strong { letter-spacing: -.02em; }
.brand em { color: var(--muted); font-style: normal; font-size: .82rem; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: .95rem; }
.nav a:hover { color: var(--white); }
.nav-cta { color: #031008 !important; background: var(--white); padding: 10px 16px; border-radius: 999px; font-weight: 800; }
.language-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.06);
}
.lang-btn {
  border: 0; border-radius: 999px; padding: 8px 11px; cursor: pointer;
  background: transparent; color: var(--muted); font: inherit; font-size: .82rem; font-weight: 900;
}
.lang-btn.is-active { background: var(--white); color: #031008; }
.hero {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  gap: clamp(34px, 5vw, 76px); align-items: center;
  padding: clamp(52px, 7.5vw, 92px) clamp(18px, 5vw, 72px) clamp(44px, 5vw, 70px);
}
.eyebrow { color: var(--green-300); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 900; margin: 0 0 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.85rem, 5.7vw, 5.85rem);
  line-height: 1.01;
  letter-spacing: -.052em;
  margin-bottom: 24px;
  max-width: 760px;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 4.2vw, 4.2rem); line-height: 1.02; letter-spacing: -.05em; margin-bottom: 18px; text-wrap: balance; }
h3 { font-size: 1.34rem; letter-spacing: -.02em; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.68; }
.hero-text { font-size: clamp(1.04rem, 1.35vw, 1.22rem); max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.button { border: 1px solid var(--line); border-radius: 999px; padding: 14px 22px; font-weight: 900; cursor: pointer; transition: .2s ease; display: inline-flex; align-items: center; justify-content: center; }
.button.primary { background: var(--white); color: #031008; border-color: var(--white); }
.button.ghost { color: var(--white); background: rgba(255,255,255,.06); }
.button:hover { transform: translateY(-2px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span, .contact-card { border: 1px solid var(--line); color: var(--muted); border-radius: 999px; padding: 10px 14px; background: rgba(255,255,255,.05); }
.contact-card a { color: var(--green-300); font-weight: 900; }
.hero-media { position: relative; }
.hero-media img, .wide-photo, .image-band img {
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow);
}
.hero-media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; max-height: 640px; }
.floating-card {
  position: absolute; left: -22px; bottom: 26px; padding: 18px 20px;
  background: rgba(248,251,247,.95); color: #07150d; border-radius: 22px; box-shadow: var(--shadow);
}
.floating-card span { display: block; color: #31513a; font-size: .9rem; margin-top: 4px; }
.section { padding: clamp(64px, 7vw, 100px) clamp(18px, 5vw, 72px); }
.intro { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(28px, 5vw, 58px); align-items: end; border-top: 1px solid var(--line); }
.intro p:last-child { font-size: clamp(1.08rem, 1.6vw, 1.22rem); max-width: 820px; }
.section-heading { max-width: 850px; margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card, .step, .coverage-copy, .intake-form, .map-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.055); padding: clamp(22px, 2.4vw, 30px); box-shadow: 0 14px 50px rgba(0,0,0,.16);
}
.service-card span { color: var(--green-300); font-weight: 900; }
.service-card.featured { background: linear-gradient(160deg, rgba(39,148,81,.34), rgba(255,255,255,.07)); }
.image-band { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 4vw, 42px); align-items: center; margin-top: 28px; }
.image-band img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.coverage-layout { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(24px, 4vw, 42px); align-items: stretch; }
.map-card { min-height: 430px; position: relative; overflow: hidden; background: radial-gradient(circle, rgba(116,216,154,.22), rgba(255,255,255,.04) 42%, rgba(255,255,255,.02)); }
.map-card::before, .map-card::after { content: ""; position: absolute; inset: 50% 8%; height: 1px; background: var(--line); }
.map-card::after { transform: rotate(90deg); }
.axis { position: absolute; display: grid; gap: 4px; text-align: center; color: var(--muted); }
.axis strong { color: var(--white); }
.north { top: 28px; left: 50%; transform: translateX(-50%); }
.south { bottom: 28px; left: 50%; transform: translateX(-50%); }
.east { right: 28px; top: 50%; transform: translateY(-50%); }
.west { left: 28px; top: 50%; transform: translateY(-50%); }
.center-pin { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 138px; height: 138px; border-radius: 999px; background: var(--white); color: #082012; display: grid; place-items: center; text-align: center; font-weight: 900; box-shadow: 0 0 0 18px rgba(116,216,154,.12); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.check-list li::before { content: "✓"; color: var(--green-300); font-weight: 900; margin-right: 10px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.step span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--green-500); color: white; font-weight: 900; margin-bottom: 22px; }
.wide-photo { width: 100%; max-height: 500px; object-fit: cover; }
.estimate-section { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(28px, 5vw, 52px); align-items: start; }
.contact-card { display: inline-block; border-radius: 18px; margin-top: 18px; }
.intake-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: rgba(248,251,247,.98); color: #07150d; }
.intake-form label { display: grid; gap: 8px; font-weight: 850; color: #12331d; }
.intake-form label:nth-last-of-type(1), .intake-form button, .form-note, .full-field { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #d7e4d9; border-radius: 16px; padding: 14px 14px; font: inherit; color: #07150d; background: #fff; }
input[type="file"] { padding: 12px; background: #f7fbf8; }
textarea { resize: vertical; }
.form-note { color: #4c6654; font-size: .92rem; margin: 0; }
.footer { display: flex; justify-content: space-between; gap: 18px; padding: 30px clamp(18px, 5vw, 72px); border-top: 1px solid var(--line); color: var(--muted); }
.footer strong, .footer span { display:block; }
.footer a { color: var(--green-300); font-weight: 900; }
.mobile-call { display: none; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .hero, .intro, .image-band, .coverage-layout, .estimate-section { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .hero-copy, .estimate-copy, .section-heading { min-width: 0; max-width: 100%; }
  .hero-media img { aspect-ratio: 16/10; max-height: none; }
  h1 { font-size: clamp(2.65rem, 9.2vw, 4.4rem); line-height: 1.05; letter-spacing: -.04em; }
  .eyebrow { line-height: 1.55; letter-spacing: .1em; overflow-wrap: anywhere; }
  .hero-text, p { overflow-wrap: break-word; }
}
@media (max-width: 640px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { padding-bottom: 74px; }
  .site-header {
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 16px;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }
  .language-toggle {
    position: fixed;
    left: 165px;
    right: auto;
    top: 12px;
    z-index: 60;
    margin-left: 0;
    flex: 0 0 auto;
    background: rgba(7, 21, 13, .92);
  }
  .lang-btn { padding: 7px 8px; font-size: .76rem; }
  .hero, .section {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 100vw;
  }
  .hero-copy, .hero-media {
    width: min(100%, 358px);
    max-width: 358px;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .hero-text, .trust-row, .eyebrow, h1, h2, p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  h1 { font-size: clamp(2.18rem, 8.4vw, 3.1rem); line-height: 1.08; letter-spacing: -.032em; }
  .eyebrow { font-size: .66rem; letter-spacing: .065em; }
  .hero-text { font-size: .98rem; line-height: 1.62; }
  .trust-row { display: grid; grid-template-columns: 1fr; }
  .trust-row span { max-width: 100%; white-space: normal; }
  .brand { min-width: 0; max-width: calc(100vw - 112px); }
  .brand-logo { width: 52px; height: 38px; flex: 0 0 auto; }
  .brand span { display: block; min-width: 0; }
  .brand strong { font-size: .94rem; }
  .brand em { font-size: .7rem; }
  .service-grid, .intake-form { grid-template-columns: 1fr; }
  .floating-card {
    position: static;
    margin: 14px 0 0;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,.2);
  }
  .footer { flex-direction: column; }
  .mobile-call {
    display: flex; position: fixed; left: 16px; right: 16px; bottom: 14px; z-index: 30;
    align-items: center; justify-content: center; padding: 15px 18px; border-radius: 999px;
    background: var(--white); color: #031008; font-weight: 950; box-shadow: 0 18px 44px rgba(0,0,0,.35);
  }
}
