:root {
  --green-950: #0f2f24;
  --green-850: #173f31;
  --green-700: #23624b;
  --green-500: #3f8b6b;
  --sage-100: #edf5ee;
  --sage-50: #f7faf7;
  --gold-500: #ba9368;
  --gold-100: #f4eadf;
  --coral-600: #b54747;
  --ink: #17201c;
  --muted: #66746d;
  --line: #dce5df;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 47, 36, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sage-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(186, 147, 104, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 223, 0.82);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-950);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--gold-100);
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-950);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: #304039;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--sage-100);
  color: var(--green-950);
}

.nav-cta {
  background: var(--green-950) !important;
  color: var(--white) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 47, 36, 0.92), rgba(15, 47, 36, 0.63), rgba(15, 47, 36, 0.24));
  content: "";
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  align-content: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold-100);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.2vw, 3.85rem);
  font-weight: 700;
}

.hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.16rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold-500);
  color: var(--green-950);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-dark {
  background: var(--green-950);
  color: var(--white);
}

.button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--green-950);
}

.hero-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stat {
  min-height: 92px;
  padding: 16px;
  background: rgba(15, 47, 36, 0.48);
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  padding: 84px 20px;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-kicker {
  color: var(--white);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

p {
  margin: 14px 0 0;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 47, 36, 0.07);
}

.card-media {
  overflow: hidden;
  padding: 0;
}

.card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-media .card-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--green-950);
  font-size: 0.78rem;
  font-weight: 850;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 11px;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--green-700);
  content: "";
  font-size: 0.72rem;
  font-weight: 900;
}

.check-list li::after {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  content: "";
  transform: rotate(45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 44px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 270px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-950);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.image-note strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.service-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.cta-band {
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.page-hero .hero-inner {
  min-height: 420px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.breadcrumb a {
  text-decoration: none;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  padding: 58px 20px 28px;
  background: #0a241b;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-inner {
    min-height: 560px;
  }

  .hero-stats,
  .grid-4,
  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .cta-band,
  .service-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 520px;
  }

  .cta-band {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 60px 16px;
  }

  .hero-inner,
  .page-hero .hero-inner {
    min-height: 540px;
    padding: 62px 16px 34px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(15, 47, 36, 0.9), rgba(15, 47, 36, 0.74));
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }

  .card,
  .cta-band {
    padding: 22px;
  }

  .card-media {
    padding: 0;
  }

  .card-media .card-body {
    padding: 20px;
  }

  .image-panel img {
    min-height: 340px;
  }

  .image-note {
    position: static;
    max-width: none;
    border-radius: 0;
  }
}
