:root {
  --ink: #172019;
  --ink-soft: #445047;
  --forest: #123f32;
  --forest-deep: #0a2b22;
  --brand: #66ad4f;
  --brand-dark: #4c8b39;
  --mist: #edf2eb;
  --paper: #fbfcf9;
  --sand: #f3f0e8;
  --line: rgba(23, 32, 25, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(10, 43, 34, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  max-width: 15ch;
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 0.35rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 249, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.5rem;
  height: 2px;
  content: "";
  background: var(--brand);
  transition: right 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  right: 0;
}

.button,
.button:visited {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  background: var(--brand);
  color: #10220e;
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "→";
  font-size: 1.05rem;
}

.button:hover {
  transform: translateY(-2px);
  background: #78bd60;
  box-shadow: 0 10px 25px rgba(10, 43, 34, 0.18);
}

.button-dark {
  background: var(--forest-deep);
  color: var(--white);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--forest-deep);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.3rem;
}

.mobile-panel {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #a6dc92;
}

.lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero {
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 5rem 6.5rem max(1.5rem, calc((100vw - var(--max)) / 2));
}

.hero-copy h1 {
  margin-bottom: 1.6rem;
}

.hero-copy .lead {
  max-width: 31em;
  margin-bottom: 1.4rem;
  color: #dce7df;
}

.hero-copy p:not(.lead) {
  max-width: 40em;
  color: #b9c9bf;
}

.hero-copy .button {
  align-self: flex-start;
  margin-top: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(105deg, var(--forest-deep) 0%, rgba(10, 43, 34, 0.1) 42%, rgba(10, 43, 34, 0.24) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 52% 48%;
  animation: hero-aerial-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-aerial-drift {
  0% {
    transform: scale(1.07) translate3d(-0.5%, 0.35%, 0);
  }

  50% {
    transform: scale(1.12) translate3d(0.65%, -0.4%, 0);
  }

  100% {
    transform: scale(1.16) translate3d(-0.15%, -0.9%, 0);
  }
}

.place-label {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(10, 43, 34, 0.72);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.stats {
  background: var(--brand);
  color: #10220e;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr 1.1fr;
  align-items: center;
}

.stats-intro,
.stat {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-right: 1px solid rgba(16, 34, 14, 0.19);
}

.stats-intro {
  padding-left: 0;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stats-intro small {
  display: block;
  max-width: 22ch;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stat span {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-tight {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.section-sand {
  background: var(--sand);
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.body-copy {
  max-width: 650px;
  color: var(--ink-soft);
}

.body-copy strong {
  color: var(--ink);
}

.body-copy p + p {
  margin-top: 1.3rem;
}

.feature-card {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card .feature-kicker {
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  content: "✓";
  color: var(--brand-dark);
  font-weight: 900;
}

.georgia-panel {
  display: grid;
  overflow: hidden;
  min-height: 640px;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--forest-deep);
  color: var(--white);
}

.georgia-image {
  position: relative;
}

.georgia-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 60%, var(--forest-deep));
}

.georgia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.georgia-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.georgia-copy h2 {
  font-size: clamp(2.35rem, 4vw, 3.9rem);
}

.georgia-copy p {
  color: #c3d0c7;
}

.georgia-copy .signature-line {
  margin: 1.25rem 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.cta-band {
  background: var(--brand);
  color: #10220e;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.cta-inner h2 {
  margin-bottom: 0.75rem;
}

.cta-inner p {
  font-weight: 650;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--forest-deep);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  bottom: -220px;
  content: "";
  border: 1px solid rgba(166, 220, 146, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(166, 220, 146, 0.06), 0 0 0 140px rgba(166, 220, 146, 0.035);
}

.page-hero h1 {
  max-width: 15ch;
}

.page-hero .lead {
  max-width: 42em;
  color: #d8e3dc;
}

.page-hero p:not(.lead) {
  max-width: 51em;
  color: #b8c8be;
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.editorial-row:last-child {
  border-bottom: 0;
}

.section-number {
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.editorial-content {
  max-width: 760px;
}

.editorial-content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.editorial-content p {
  color: var(--ink-soft);
}

.quote-line {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--brand);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  padding: 2rem;
  background: var(--paper);
}

.step-num {
  display: block;
  margin-bottom: 2rem;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step h3 {
  font-size: 1.6rem;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.client-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
}

.client-card-wide {
  grid-column: 1 / -1;
  min-height: 390px;
  background: var(--brand);
  color: #10220e;
  border-color: transparent;
}

.client-card-dark {
  background: var(--forest-deep);
  color: var(--white);
  border-color: transparent;
}

.client-card-dark p {
  color: #bdcbc2;
}

.client-card .card-label {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.client-card h2,
.client-card h3 {
  margin-top: 2.5rem;
}

.team-intro {
  max-width: 860px;
}

.team-intro .lead {
  margin: 2rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-section + .team-section {
  margin-top: 5rem;
}

.team-section-title {
  margin: 4.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.team-photo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--mist);
  border-radius: 50%;
  background: var(--mist);
  filter: saturate(0.9) contrast(1.02);
}

.team-card-body {
  min-width: 0;
}

.team-role {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.team-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-list {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list address {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-style: normal;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-card {
  align-self: start;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: #c1cec6;
}

.contact-email {
  display: inline-block;
  margin: 0.1rem 0 1.35rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.25;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.legal-copy {
  max-width: 850px;
}

.legal-copy .legal-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.55;
  margin-bottom: 3rem;
}

.legal-copy h2 {
  max-width: none;
  margin-top: 3.5rem;
  font-size: 2rem;
}

.legal-copy h3 {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 1.8rem 0 0.65rem;
}

.legal-copy p,
.legal-copy li {
  line-height: 1.75;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.legal-copy li + li {
  margin-top: 0.65rem;
}

.legal-copy address {
  font-style: normal;
  line-height: 1.75;
}

.notice {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--brand);
  background: var(--mist);
  color: var(--ink-soft);
}

.site-footer {
  padding: 5rem 0 2rem;
  background: #071d17;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand img {
  width: 240px;
  height: auto;
  padding: 0.55rem 0.7rem;
  border-radius: 0.2rem;
  background: var(--white);
}

.footer-brand p {
  max-width: 390px;
  margin-top: 1.5rem;
  color: #afc0b5;
}

.footer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-details h3 {
  margin-bottom: 1rem;
  color: #9ad483;
  font-family: inherit;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-details p,
.footer-details a {
  color: #d8e3dc;
  font-size: 0.95rem;
  font-style: normal;
  text-decoration: none;
}

.footer-details a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  color: #91a69a;
  font-size: 0.78rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.legal-links a {
  color: #c9d5ce;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid #f4c46a;
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .desktop-nav .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 650px;
    padding: 6rem max(1.5rem, calc((100vw - var(--max)) / 2));
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, var(--forest-deep), transparent 28%, rgba(10, 43, 34, 0.14));
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-intro {
    padding-left: 2rem;
  }

  .stats-intro,
  .stat {
    border-bottom: 1px solid rgba(16, 34, 14, 0.19);
  }

  .georgia-panel {
    grid-template-columns: 1fr;
  }

  .georgia-image {
    min-height: 420px;
  }

  .georgia-image::after {
    background: linear-gradient(180deg, transparent 65%, var(--forest-deep));
  }

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

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(calc(100% - 2rem), var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 155px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    inset: 74px 0 0;
    z-index: 99;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .menu-open .mobile-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-panel .nav-link {
    padding: 1.2rem 0.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .mobile-panel .button {
    margin-top: 1.5rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 5rem 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 350px;
  }

  .place-label {
    right: 1rem;
    bottom: 1rem;
  }

  .stats-grid,
  .two-column,
  .editorial-row,
  .contact-grid,
  .footer-top,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .stats-intro,
  .stat {
    min-height: 120px;
    padding: 1.5rem 1rem;
    border-right: 0;
  }

  .stats-intro {
    min-height: 80px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .editorial-row {
    gap: 1.25rem;
  }

  .steps,
  .client-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-photo {
    width: 92px;
    height: 92px;
  }

  .team-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.1rem;
  }

  .client-card-wide {
    grid-column: auto;
  }

  .client-card {
    min-height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-visual img {
    animation: none;
    transform: none;
  }
}
