:root {
  --forest-950: #082f20;
  --forest-900: #0a3b27;
  --forest-800: #0b4b2d;
  --forest-700: #14613a;
  --leaf: #72a933;
  --leaf-light: #dce9b9;
  --gold: #c99835;
  --gold-light: #e4bd69;
  --cream: #f6f3e9;
  --warm-white: #fdfcf7;
  --ink: #15231c;
  --muted: #5c6d63;
  --line: rgba(10, 59, 39, 0.14);
  --shadow: 0 24px 60px rgba(8, 47, 32, 0.14);
  --shell: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--forest-900);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(253, 252, 247, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(8, 47, 32, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 18px rgba(8, 47, 32, 0.12);
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--forest-900);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #264a37;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  padding: 14px 0;
  border-bottom: 2px solid transparent;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: var(--forest-900);
  border-color: var(--gold);
}

.nav-cta {
  padding: 11px 18px;
  color: white;
  background: var(--forest-900);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 47, 32, 0.15);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--forest-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--forest-900);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: white;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 132px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(246, 243, 233, 0.65), rgba(253, 252, 247, 0) 52%),
    var(--warm-white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(rgba(11, 75, 45, 0.14) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, black, transparent 56%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -100px;
  top: 100px;
  background: rgba(114, 169, 51, 0.13);
}

.hero-glow-two {
  width: 270px;
  height: 270px;
  right: 31%;
  bottom: -150px;
  background: rgba(201, 152, 53, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 2px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 690px;
  color: var(--forest-950);
  font-size: clamp(3.3rem, 6.3vw, 5.75rem);
}

.hero h1 em,
.about-copy h2 em {
  color: var(--forest-700);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-primary {
  color: white;
  background: var(--forest-900);
  box-shadow: 0 14px 28px rgba(8, 47, 32, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-700);
  box-shadow: 0 18px 34px rgba(8, 47, 32, 0.24);
}

.text-link {
  color: var(--forest-800);
  font-size: 0.92rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 75, 45, 0.35);
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--gold);
}

.proof-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.proof-row div {
  display: grid;
}

.proof-row strong {
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.72rem;
}

.proof-row i {
  width: 1px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  max-width: 490px;
  margin-left: auto;
}

.logo-card {
  position: relative;
  padding: 20px 20px 16px;
  background: white;
  border: 1px solid rgba(11, 75, 45, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.logo-card::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(201, 152, 53, 0.26);
  border-radius: 21px;
  pointer-events: none;
}

.logo-card img {
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.logo-kicker {
  position: relative;
  z-index: 1;
  padding: 3px 16px 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.markets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 7px;
  padding: 14px 16px 3px;
  border-top: 1px solid var(--line);
}

.markets span {
  color: var(--forest-800);
  font-size: 0.72rem;
  font-weight: 800;
}

.markets b {
  margin-right: 5px;
  color: var(--gold);
  font-weight: 900;
}

.orbit-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 75, 45, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(8, 47, 32, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.orbit-note span {
  color: var(--gold);
}

.orbit-note-one {
  top: 18%;
  right: -38px;
}

.orbit-note-two {
  bottom: 15%;
  left: -55px;
}

.section {
  padding: 110px 0;
}

.solutions {
  position: relative;
  background: var(--cream);
  border-top: 1px solid rgba(11, 75, 45, 0.07);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-heading h2,
.about-copy h2 {
  color: var(--forest-950);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 400px;
  padding: 30px 28px;
  overflow: hidden;
  background: rgba(253, 252, 247, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 155px;
  height: 155px;
  content: "";
  background: radial-gradient(circle, rgba(114, 169, 51, 0.12), transparent 68%);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(201, 152, 53, 0.55);
  box-shadow: 0 22px 42px rgba(8, 47, 32, 0.1);
}

.service-featured {
  color: white;
  background: var(--forest-900);
  border-color: var(--forest-900);
}

.service-featured::after {
  background: radial-gradient(circle, rgba(201, 152, 53, 0.18), transparent 66%);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest-700);
  background: var(--leaf-light);
  border-radius: 50%;
}

.service-featured .service-icon {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  max-width: 270px;
  margin: 42px 0 12px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.12;
}

.service-featured h3 {
  color: white;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  color: #496156;
  font-size: 0.82rem;
  list-style: none;
}

.service-featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.service-card li {
  position: relative;
  padding-left: 15px;
}

.service-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.about-contact {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 15% 25%, rgba(114, 169, 51, 0.16), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(201, 152, 53, 0.11), transparent 30%),
    var(--forest-950);
}

.about-contact::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 0.92fr);
  align-items: start;
  gap: 90px;
  padding-bottom: 100px;
}

.eyebrow-light {
  color: var(--leaf-light);
}

.about-copy h2 {
  color: white;
}

.about-copy h2 em {
  color: var(--gold-light);
}

.about-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.approach-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
}

.approach-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-list span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
}

.approach-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.approach-list strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.contact-card {
  padding: 40px;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.2);
}

.contact-kicker {
  margin: 0 0 9px;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card h2 {
  color: var(--forest-950);
  font-size: clamp(2.15rem, 3.3vw, 3.2rem);
  line-height: 1.04;
}

.contact-intro {
  margin: 17px 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: #2c493a;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(11, 75, 45, 0.18);
  border-radius: 8px;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 11px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 152, 53, 0.13);
}

.button-gold {
  width: 100%;
  margin-top: 4px;
  color: #173624;
  background: var(--gold-light);
  box-shadow: 0 12px 22px rgba(201, 152, 53, 0.22);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #edc975;
}

.form-note {
  margin: -4px 0 0;
  color: #718078;
  font-size: 0.7rem;
  text-align: center;
}

.direct-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.direct-contact > a,
.pending-contact {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 9px;
  background: rgba(246, 243, 233, 0.7);
  border-radius: 10px;
}

.direct-contact > a:hover,
.direct-contact > a:focus-visible {
  background: var(--leaf-light);
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  place-items: center;
  color: white;
  background: var(--forest-800);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.direct-contact > * > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.28;
}

.direct-contact small {
  color: var(--muted);
  font-size: 0.63rem;
}

.direct-contact strong {
  overflow: hidden;
  color: var(--forest-900);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pending-contact {
  opacity: 0.72;
}

.pending-contact .contact-icon {
  color: var(--forest-700);
  background: #e9ebe5;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 110px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  border-radius: 50%;
}

.footer-brand span {
  display: grid;
  line-height: 1.3;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.footer-brand small,
.footer-inner p {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.7rem;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(201, 152, 53, 0.65);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 118px;
  }

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

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

  .hero-visual {
    width: min(540px, 88vw);
    margin: 0 auto;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-copy {
    max-width: 690px;
  }

  .contact-card {
    max-width: 690px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 30px, 620px);
  }

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

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(253, 252, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(8, 47, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    padding: 104px 0 68px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    width: max-content;
    margin-inline: auto;
  }

  .proof-row {
    gap: 12px;
    margin-top: 37px;
  }

  .proof-row span {
    font-size: 0.66rem;
  }

  .orbit-note {
    display: none;
  }

  .logo-card {
    padding: 13px 13px 12px;
    border-radius: 21px;
  }

  .logo-card::after {
    inset: 7px;
    border-radius: 17px;
  }

  .logo-kicker {
    padding-top: 5px;
    font-size: 0.58rem;
  }

  .markets {
    padding-inline: 9px;
  }

  .markets span {
    font-size: 0.62rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

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

  .service-card {
    min-height: auto;
  }

  .about-grid {
    padding-bottom: 74px;
  }

  .contact-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .field-row,
  .direct-contact {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
