:root {
  --green-950: #0c2f23;
  --green-900: #123e2e;
  --green-800: #174f3a;
  --green-700: #216a4d;
  --green-100: #e8f0eb;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --ink: #18231e;
  --muted: #5c6861;
  --line: #d7ded8;
  --orange: #111713;
  --shadow: 0 18px 50px rgba(12, 47, 35, .12);
}

* { 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;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; padding: .7rem 1rem; background: white; color: black; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,253,248,.95); border-bottom: 1px solid rgba(23,79,58,.13); backdrop-filter: blur(12px); }
.header-inner { max-width: 1240px; margin: auto; padding: .75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { flex: 1 1 610px; max-width: 680px; text-decoration: none; }
.brand img { width: 100%; max-height: 138px; object-fit: contain; object-position: left center; }
.license-line { display: block; margin-top: .15rem; color: var(--green-900); font-size: .8rem; font-weight: 900; letter-spacing: .09em; text-align: right; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 1.35rem; font-size: .9rem; font-weight: 700; }
nav a { text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--green-700); }
.nav-call { padding: .75rem 1rem; border-radius: 999px; color: white; background: var(--green-800); }
nav .nav-call:hover, nav .nav-call:focus-visible { color: white; background: var(--green-950); }

.hero { max-width: 1180px; min-height: 650px; margin: auto; padding: 5.5rem 1.5rem 4.5rem; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 5rem; }
.eyebrow { margin: 0 0 .8rem; color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 720px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.6rem, 7vw, 6.4rem); line-height: .92; letter-spacing: -.055em; }
.hero h1 span { color: var(--green-700); }
.hero-tagline { max-width: 650px; margin: 1.5rem 0 0; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 700; line-height: 1.25; }
.hero-lead { max-width: 650px; margin: 1.8rem 0 0; color: var(--muted); font-size: 1.2rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .78rem 1.2rem; border: 2px solid transparent; border-radius: 7px; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: var(--green-700); }
.button-secondary { border-color: var(--green-800); color: var(--green-900); background: transparent; }
.button-secondary:hover { color: white; background: var(--green-800); }
.button-secondary.dark { color: var(--green-950); }
.button-light { color: var(--green-950); background: white; }
.button-outline-light { border-color: rgba(255,255,255,.72); color: white; }
.button.large { min-height: 56px; padding: .95rem 1.45rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .65rem 1.6rem; margin-top: 2.2rem; color: var(--green-900); font-size: .88rem; }
.trust-row span::before { content: "✓"; margin-right: .4rem; color: var(--orange); }
.hero-media { position: relative; padding: 1.25rem 1.25rem 1.4rem; border-radius: 4px; background: var(--green-900); color: white; box-shadow: var(--shadow); transform: rotate(1deg); }
.hero-media::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; z-index: -1; border: 2px solid var(--orange); }
.hero-media img { width: 100%; aspect-ratio: 1.55; object-fit: cover; filter: contrast(1.05); }
.hero-media p { margin: 1rem .2rem 0; font-family: Georgia, serif; font-size: 1.05rem; }

.section { padding: 6rem max(1.5rem, calc((100vw - 1180px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.section-heading h2, .before-copy h2, .area-card h2, .recognition h2, .contact-section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 4.5vw, 4.25rem); line-height: 1.02; letter-spacing: -.035em; }
.section-heading > p { margin: 0; color: var(--muted); }
.services-section { background: var(--cream); }
.services-heading { align-items: center; }
.services-heading > div { max-width: 720px; }
.services-heading > p { max-width: 390px; padding-left: 1.5rem; border-left: 3px solid var(--green-700); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-grid article { position: relative; min-height: 175px; padding: 2rem; overflow: hidden; border: 1px solid #d2dbd4; border-radius: 8px; background: var(--paper); box-shadow: 0 8px 24px rgba(12,47,35,.055); }
.service-grid article::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px; background: var(--green-700); }
.service-grid article::after { content: ""; position: absolute; right: -42px; bottom: -50px; width: 110px; height: 110px; border: 18px solid var(--green-100); border-radius: 50%; }
.service-grid h3 { position: relative; z-index: 1; margin: .35rem 0 .65rem; font-family: Georgia, serif; font-size: 1.55rem; }
.service-grid p { margin: 0; color: var(--muted); }
.service-wide { grid-column: span 3; min-height: 130px !important; display: grid; grid-template-columns: .5fr 1fr; align-items: center; gap: 2rem; }
.service-wide h3, .service-wide p { margin: 0; }

.before-after { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 620px; background: var(--green-950); color: white; }
.before-copy { align-self: center; padding: 4rem max(2rem, calc((100vw - 1180px) / 2)); padding-right: 4rem; }
.before-copy p:not(.eyebrow) { color: #c9d8d0; }
.before-after > img { width: 100%; height: 100%; object-fit: cover; }
.text-link { display: inline-block; margin-top: 1.2rem; color: white; font-weight: 800; text-underline-offset: .3rem; }

.area-section { background: var(--green-700); }
.area-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; color: white; }
.area-card .eyebrow { color: white; }
.area-card p:not(.eyebrow) { color: #dbe8e1; }
.area-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); align-content: center; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.area-list li { padding: .72rem .25rem; border-bottom: 1px solid rgba(255,255,255,.22); font-weight: 650; }
.area-list li::before { content: "↗"; margin-right: .55rem; color: white; }

.gallery-section { background: var(--paper); }
.gallery-heading { align-items: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: .75rem; }
.gallery-item { position: relative; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: #dfe6e1; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-item:nth-child(7n + 1) { grid-row: span 2; }
.gallery-actions { display: flex; justify-content: center; margin-top: 2rem; }

.recognition { display: grid; grid-template-columns: 1fr 230px; align-items: center; gap: 4rem; border-top: 1px solid var(--line); background: var(--cream); }
.recognition p:not(.eyebrow) { max-width: 750px; color: var(--muted); }
.recognition img { max-height: 190px; margin: auto; object-fit: contain; }

.contact-section { padding: 6.5rem 1.5rem; text-align: center; background: var(--green-950); color: white; }
.contact-section .eyebrow { color: white; }
.contact-section > p:not(.eyebrow) { color: #c8d9d0; }
.contact-actions { justify-content: center; }

footer { padding: 2.4rem max(1.5rem, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; background: #071d15; color: #d5e0da; font-size: .9rem; }
footer div { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; }
footer div:nth-child(2) { justify-content: flex-end; }
footer a { color: white; font-weight: 750; }
footer p { grid-column: 1 / -1; margin: 0; color: #8ca095; }

.lightbox { width: min(1000px, calc(100% - 2rem)); max-width: none; height: min(82vh, 760px); padding: 0; overflow: visible; border: 0; background: transparent; color: white; }
.lightbox::backdrop { background: rgba(4,16,12,.94); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; border: 0; color: white; background: rgba(12,47,35,.72); cursor: pointer; }
.lightbox-close { top: -2.5rem; right: 0; width: 2.3rem; height: 2.3rem; border-radius: 50%; font-size: 1.6rem; }
.lightbox-nav { top: 50%; width: 3rem; height: 4rem; transform: translateY(-50%); font-size: 2.2rem; }
.lightbox-nav.previous { left: -3.5rem; }
.lightbox-nav.next { right: -3.5rem; }
#lightboxCount { position: absolute; left: 50%; bottom: -2.5rem; margin: 0; transform: translateX(-50%); }

@media (max-width: 900px) {
  .header-inner { align-items: flex-start; }
  .brand { flex-basis: 470px; }
  .brand img { width: 100%; max-height: 110px; }
  nav a:not(.nav-call) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 4rem; padding-top: 4rem; }
  .hero-media { max-width: 620px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-wide { grid-column: span 2; }
  .before-after { grid-template-columns: 1fr; }
  .before-copy { padding: 5rem 1.5rem; }
  .before-after > img { max-height: 650px; }
  .area-card { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .site-header { position: static; }
  .header-inner { padding: .65rem 1rem .85rem; gap: .55rem; flex-wrap: wrap; }
  .brand { flex: 1 1 100%; max-width: none; }
  .brand img { width: 100%; max-height: 88px; object-position: center; }
  .license-line { font-size: .68rem; text-align: center; }
  nav { width: 100%; }
  .nav-call { width: 100%; padding: .65rem .78rem; font-size: .84rem; }
  .hero { padding: 3.5rem 1.2rem 3.5rem; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4.5rem 1.2rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.2rem; }
  .services-heading > p { padding: 0; border-left: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 150px; }
  .service-wide { grid-column: span 1; min-height: 150px !important; display: block; }
  .service-wide h3 { margin: .35rem 0 .65rem; }
  .area-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item:nth-child(7n + 1) { grid-row: span 1; }
  .recognition { grid-template-columns: 1fr; text-align: left; }
  .contact-actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; }
  footer div:nth-child(2) { justify-content: flex-start; }
  .lightbox-nav.previous { left: 0; }
  .lightbox-nav.next { right: 0; }
}

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