:root {
  --ink: #152018;
  --muted: #5d675f;
  --green-950: #061d12;
  --green-900: #0b2d1b;
  --green-800: #124329;
  --green-700: #1f5e35;
  --lime: #8bbf39;
  --lime-light: #b8d86f;
  --cream: #f4f1e5;
  --paper: #fffef9;
  --line: #dfe4dc;
  --shadow: 0 18px 50px rgba(4, 28, 17, .12);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; background: #fff; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.contact-strip { background: var(--green-950); color: #fff; font-size: .91rem; }
.contact-strip__inner { min-height: 42px; display: flex; align-items: center; gap: 26px; }
.contact-strip a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.contact-strip svg { width: 17px; height: 17px; fill: var(--lime-light); }
.contact-strip__area { margin-left: auto; color: #d6dfd8; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,254,249,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(20,40,24,.08); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: block; width: 250px; height: 62px; overflow: hidden; border-radius: 4px; background: var(--green-950); }
.brand img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.button) { text-decoration: none; font-weight: 700; font-size: .94rem; }
.main-nav > a:not(.button):hover { color: var(--green-700); }
.nav-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .2s ease; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 2px solid var(--lime); border-radius: 999px; background: var(--lime); color: var(--green-950); text-decoration: none; font-weight: 800; letter-spacing: .01em; box-shadow: 0 9px 25px rgba(139,191,57,.22); transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--lime-light); border-color: var(--lime-light); }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.72); box-shadow: none; }
.button--ghost:hover { background: #fff; color: var(--green-950); border-color: #fff; }
.button--light { background: #fff; border-color: #fff; color: var(--green-950); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; background: var(--green-950); }
.hero__image, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center 48%; }
.hero__overlay { background: linear-gradient(90deg, rgba(5,27,16,.96) 0%, rgba(5,27,16,.82) 42%, rgba(5,27,16,.32) 72%, rgba(5,27,16,.18) 100%); }
.hero__content { position: relative; z-index: 2; color: #fff; padding-block: 86px 70px; }
.eyebrow { margin: 0 0 14px; color: var(--lime-light); text-transform: uppercase; font-weight: 900; letter-spacing: .13em; font-size: .78rem; }
.eyebrow--dark { color: var(--green-700); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.3vw, 6.1rem); line-height: .98; letter-spacing: -.045em; }
h2 { margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4vw, 4.2rem); line-height: 1.05; letter-spacing: -.035em; }
h3 { font-size: 1.2rem; line-height: 1.25; }
.hero__lead { max-width: 700px; font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: #e7eee9; }
.hero__actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(720px, 100%); margin-top: 54px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 24px; }
.trust-row div { padding-right: 26px; }
.trust-row div + div { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 1.2rem; color: #fff; }
.trust-row span { color: #cbd7ce; font-size: .86rem; }

.section { padding-block: 105px; }
.section--light { background: var(--cream); }
.section--dark { background: var(--green-950); color: #fff; }
.intro { padding-block: 72px; border-bottom: 1px solid #e0ddcf; }
.intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: end; }
.intro h2 { margin-bottom: 0; font-size: clamp(2.25rem, 3.3vw, 3.6rem); }
.intro p:last-child { margin-bottom: 0; font-size: 1.08rem; color: #465048; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 50px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 8px; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 260px; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 7px 28px rgba(7,42,23,.055); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c4d7ba; }
.service-card__icon { width: 52px; height: 52px; margin-bottom: 28px; display: grid; place-items: center; background: #edf4e3; color: var(--green-700); border-radius: 50%; font-weight: 900; font-size: .86rem; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 74px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 590px; object-fit: cover; border-radius: var(--radius); }
.about-image-note { position: absolute; right: -24px; bottom: 30px; padding: 18px 24px; background: var(--lime); color: var(--green-950); border-radius: 12px; font-family: Georgia, serif; font-size: 1.18rem; font-style: italic; font-weight: 700; box-shadow: var(--shadow); }
.about-copy > p:not(.eyebrow) { color: #d2dbd4; }
.fact-list { margin-top: 36px; border-top: 1px solid rgba(255,255,255,.18); }
.fact-list div { display: flex; justify-content: space-between; gap: 24px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.fact-list span { color: #aab9ae; }
.fact-list strong { text-align: right; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 14px; padding: 0; background: #ddd; color: #fff; text-align: left; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,19,11,.78)); }
.gallery-item span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 15px; font-weight: 800; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item:focus-visible { outline: 4px solid var(--lime); outline-offset: 3px; }

.service-area { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 85% 10%, rgba(139,191,57,.32), transparent 34%), linear-gradient(135deg, var(--green-800), var(--green-950)); }
.service-area::after { content: ""; position: absolute; width: 470px; height: 470px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -110px; bottom: -250px; }
.service-area__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.service-area p:not(.eyebrow) { max-width: 580px; color: #d7e0da; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.area-list span { min-height: 70px; display: flex; align-items: center; padding: 0 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.06); font-weight: 800; backdrop-filter: blur(8px); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-cards { display: grid; gap: 12px; margin-top: 32px; }
.contact-cards > * { display: flex; flex-direction: column; padding: 18px 20px; border: 1px solid #d8daca; border-radius: 12px; background: rgba(255,255,255,.5); text-decoration: none; }
.contact-cards span { color: var(--muted); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.contact-cards strong { margin-top: 2px; overflow-wrap: anywhere; }
.quote-form { padding: 34px; border-radius: var(--radius); background: #fff; border: 1px solid #dedfd5; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 18px; color: #263128; font-weight: 800; font-size: .9rem; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #cbd0c7; border-radius: 9px; background: #fff; padding: 12px 13px; color: var(--ink); outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(31,94,53,.13); }
.quote-form textarea { resize: vertical; min-height: 130px; }
.form-note { min-height: 1.5em; margin: 12px 0 0; color: var(--green-700); font-size: .9rem; font-weight: 700; }

.site-footer { padding-top: 70px; background: #04150c; color: #dce4de; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1fr; gap: 60px; padding-bottom: 54px; }
.footer-brand { display: inline-flex; flex-direction: column; text-decoration: none; color: #fff; font-family: Georgia, serif; font-size: 2rem; line-height: 1; font-weight: 800; }
.footer-brand span { margin-top: 7px; color: var(--lime-light); font-family: inherit; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid p { color: #aebbb2; max-width: 480px; }
.footer-grid h2 { margin-bottom: 15px; font-family: inherit; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:nth-child(2) a { display: block; margin-bottom: 8px; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #91a197; font-size: .86rem; }
.footer-bottom a { color: #dce4de; }

.lightbox { width: min(960px, calc(100% - 30px)); max-height: 92vh; border: 0; border-radius: 14px; padding: 14px; background: #071a10; color: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(4px); }
.lightbox img { max-height: 76vh; width: 100%; object-fit: contain; border-radius: 8px; }
.lightbox p { margin: 12px 42px 2px 4px; }
.lightbox__close { position: absolute; top: 17px; right: 18px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.64); color: #fff; font-size: 2rem; line-height: 1; }

@media (max-width: 980px) {
  .contact-strip__area { display: none; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 1px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 0 0 14px 14px; background: #fffef9; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px 10px; }
  .main-nav .button { margin-top: 8px; }
  .hero { min-height: 650px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(5,27,16,.96), rgba(5,27,16,.75)); }
  .intro__grid, .about-grid, .service-area__grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image-wrap img { height: 510px; }
  .about-image-note { right: 18px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .contact-strip__inner { min-height: 48px; justify-content: center; }
  .contact-strip a:nth-child(2) { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 205px; height: 52px; }
  .hero { min-height: 720px; }
  .hero__content { padding-top: 64px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .trust-row { grid-template-columns: 1fr; gap: 0; }
  .trust-row div { padding: 12px 0; }
  .trust-row div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .section { padding-block: 78px; }
  .intro { padding-block: 58px; }
  .intro__grid { gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .about-image-wrap img { height: 410px; }
  .about-image-note { position: static; margin: -20px 16px 0; transform: translateY(-2px); text-align: center; }
  .fact-list div { align-items: flex-start; flex-direction: column; gap: 3px; }
  .fact-list strong { text-align: left; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .area-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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