:root {
  --green: #214f43;
  --green-dark: #153a31;
  --green-deep: #0f2f28;
  --green-pale: #e9f0ed;
  --ink: #18201e;
  --muted: #65706c;
  --line: #d9e1de;
  --paper: #ffffff;
  --soft: #f5f7f6;
  --warm: #c8a96b;
  --shadow: 0 24px 70px rgba(21, 58, 49, .13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.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;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--green-dark);
  color: white;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(33,79,67,.10);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { width: 270px; }
.brand img { width: 100%; height: auto; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  color: #34413d;
}
nav a:hover, nav a:focus-visible { color: var(--green); }
.nav-contact {
  padding: .75rem 1.1rem;
  border: 1px solid var(--green);
}
.menu-toggle { display: none; }

.hero {
  width: min(1320px, 100%);
  min-height: 710px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, var(--paper) 0 54%, transparent 54%),
    linear-gradient(135deg, var(--green-pale), #dbe7e2);
}
.hero-copy {
  align-self: center;
  max-width: 730px;
  padding: 88px 7vw 92px max(40px, calc((100vw - var(--max)) / 2));
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 4.25vw, 4.25rem); font-weight: 650; }
.headline-break { display: block; margin-top: .12em; }
h2 { font-size: clamp(2.15rem, 3.8vw, 3.9rem); font-weight: 650; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 650; }
.hero-text {
  max-width: 620px;
  margin: 1.75rem 0 0;
  font-size: 1.18rem;
  color: #4c5854;
}
.hero-actions { display: flex; align-items: center; gap: 1.7rem; margin-top: 2.4rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
}
.button-primary { color: white; background: var(--green); }
.button-primary:hover, .button-primary:focus-visible { background: var(--green-dark); }
.text-link {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(5px); }
.hero-visual { position: relative; min-height: 620px; overflow: hidden; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15,47,40,.05), rgba(15,47,40,.42));
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.trust-bar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--shadow);
  background: white;
}
.trust-bar div { padding: 1.65rem 2rem; border-right: 1px solid var(--line); }
.trust-bar div:last-child { border: 0; }
.trust-bar strong, .trust-bar span { display: block; }
.trust-bar strong { color: var(--green); font-size: 1.02rem; }
.trust-bar span { color: var(--muted); font-size: .9rem; }

.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1.3fr; column-gap: 6rem; align-items: end; margin-bottom: 3rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading > p:last-child { margin: 0 0 .25rem; color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.25rem; }
.service-card { position: relative; min-height: 345px; padding: 2.5rem; background: var(--soft); overflow: hidden; }
.service-card-main { grid-row: span 2; min-height: 714px; padding: 3.25rem; color: white; background: var(--green); display: flex; flex-direction: column; justify-content: flex-end; }
.service-card-main::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: -210px;
  top: -180px;
  border: 72px solid rgba(255,255,255,.07);
  transform: rotate(45deg);
}
.service-number { position: absolute; top: 2rem; right: 2rem; color: var(--warm); font-size: .82rem; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { max-width: 580px; }
.service-card p { max-width: 610px; margin: 1.35rem 0 1.8rem; color: var(--muted); font-size: 1.04rem; }
.service-card-main p { color: rgba(255,255,255,.78); }
.service-card-main .text-link { color: white; }
.service-card-accent { background: var(--green-pale); }
.service-card-small { min-height: 340px; border: 1px solid var(--line); background: white; }

.about { display: grid; grid-template-columns: .7fr 1.3fr; gap: 6rem; align-items: center; padding-top: 80px; }
.about-visual {
  min-height: 390px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(15,47,40,.78)); }
.about-visual img { width: 100%; height: 470px; object-fit: cover; }
.about-visual span { position: absolute; z-index: 1; left: 1.5rem; right: 1.5rem; bottom: 1.3rem; color: white; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.contact {
  width: min(1320px, 100%);
  margin: 40px auto 0;
  padding: 90px max(40px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 6rem;
  color: white;
  background: var(--green-deep);
}
.eyebrow-light { color: #a8c8bd; }
.contact-intro p:last-child { max-width: 560px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.contact-details { display: grid; gap: 1.4rem; font-style: normal; }
.contact-details div { padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-details span { display: block; color: #a8c8bd; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-details a, .contact-details p { display: block; margin: .25rem 0 0; color: white; font-size: 1.2rem; text-decoration: none; }
.contact-details a:hover, .contact-details a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.site-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 70px 0 35px; }
.footer-main { display: grid; grid-template-columns: 280px 1fr; gap: 5rem; align-items: center; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer-main p { max-width: 520px; margin: 0; color: var(--muted); }
.footer-legal { display: flex; gap: 2rem; align-items: flex-start; padding: 1.5rem 0; }
.footer-legal a { color: var(--green); font-weight: 700; text-decoration: none; }
.footer-legal a:hover, .footer-legal a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.legal-copy { padding: 1rem 0; color: var(--muted); font-size: .9rem; }
.legal-copy p { margin: 0 0 1rem; }
.copyright { margin: 1rem 0 0; color: #8a938f; font-size: .85rem; }

.legal-page { min-height: 70vh; background: var(--soft); }
.legal-shell { width: min(850px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 110px; }
.legal-shell h1 { margin-bottom: 2rem; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legal-shell h2 { margin: 2.6rem 0 .8rem; font-size: clamp(1.4rem, 2.6vw, 2rem); }
.legal-shell h3 { margin: 1.8rem 0 .6rem; font-size: 1.15rem; letter-spacing: -.01em; }
.legal-shell p, .legal-shell li { color: #4f5b57; }
.legal-shell ul { padding-left: 1.2rem; }
.legal-shell a { color: var(--green); }
.legal-back { display: inline-flex; margin-bottom: 2rem; color: var(--green); font-weight: 750; text-decoration: none; }

:focus-visible { outline: 3px solid var(--warm); outline-offset: 4px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .hero-visual { animation: enter .7s ease-out both; }
  .hero-visual { animation-delay: .12s; }
  @keyframes enter { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 940px) {
  .nav-wrap { min-height: 82px; }
  .brand { width: 220px; }
  .menu-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--green); }
  nav { display: none; position: absolute; left: 0; right: 0; top: 82px; padding: 1.25rem 20px 1.5rem; flex-direction: column; align-items: stretch; gap: .4rem; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
  nav.open { display: flex; }
  nav a { padding: .8rem; }
  .nav-contact { text-align: center; margin-top: .5rem; }
  .hero { grid-template-columns: 1fr; background: white; }
  .hero-copy { padding: 70px 28px 60px; }
  .hero-visual { min-height: 480px; }
  .trust-bar { margin-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-main { min-height: 500px; grid-row: auto; }
  .about { grid-template-columns: .75fr 1.25fr; gap: 3rem; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 650px) {
  .nav-wrap, .trust-bar, .section, .site-footer { width: min(100% - 28px, var(--max)); }
  .hero-copy { padding: 58px 20px 48px; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero-visual { min-height: 390px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar div { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.15rem 1.3rem; }
  .section { padding: 85px 0; }
  .service-card, .service-card-main { min-height: 0; padding: 2rem; }
  .service-card-main { padding-top: 7rem; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { min-height: 270px; }
  .about-visual img { height: 360px; }
  .contact { padding: 70px 20px; }
  .contact-details a, .contact-details p { font-size: 1.08rem; }
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-main img { width: 240px; }
  .footer-legal { flex-direction: column; gap: 1rem; }
}
