:root {
  --ink: #102233;
  --ink-soft: #34495e;
  --green: #177a3f;
  --green-deep: #0d5b35;
  --leaf: #7b9842;
  --mist: #f3f6f1;
  --paper: #fbfaf5;
  --line: rgba(16, 34, 51, 0.14);
  --shadow: 0 24px 70px rgba(16, 34, 51, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(16, 34, 51, 0.1);
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 86px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green-deep);
  background: rgba(23, 122, 63, 0.1);
}

.nav-short {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(500px, calc(100vh - 200px), 700px);
  isolation: isolate;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #102233;
}

.hero.compact {
  min-height: clamp(500px, calc(100vh - 190px), 620px);
}

.hero.fit-full {
  background: #102233;
}

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

.hero.fit-full img {
  object-fit: contain;
  object-position: right center;
}

.hero.align-top img {
  object-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 24, 36, 0.86) 0%, rgba(10, 24, 36, 0.62) 39%, rgba(10, 24, 36, 0.14) 70%),
    linear-gradient(0deg, rgba(10, 24, 36, 0.52) 0%, rgba(10, 24, 36, 0) 42%);
}

.hero.home::before {
  background:
    linear-gradient(270deg, rgba(10, 24, 36, 0.82) 0%, rgba(10, 24, 36, 0.42) 34%, rgba(251, 250, 245, 0.08) 64%),
    linear-gradient(0deg, rgba(10, 24, 36, 0.64) 0%, rgba(10, 24, 36, 0) 44%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 64px 0 78px;
}

.hero-copy {
  max-width: 690px;
  color: #fff;
}

.home .hero-copy {
  color: #fff;
  width: 58%;
  max-width: 660px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subpage h1 {
  font-size: clamp(2.8rem, 7vw, 6.2rem);
}

.privacy-page h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.home .lead {
  color: rgba(255, 255, 255, 0.94);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  line-height: 1.34;
  text-shadow: 0 4px 20px rgba(4, 15, 24, 0.9), 0 1px 3px rgba(4, 15, 24, 0.95);
}

.home .hero-inner {
  justify-items: end;
  align-content: center;
}

.home .hero-actions {
  justify-content: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-socials-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 18px 40px rgba(23, 122, 63, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  box-shadow: none;
}

.hero-contact-tiles {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 18px 0 10px;
}

.phone-hero-button {
  min-height: 60px;
  padding: 17px 30px;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: 0.02em;
}

.mail-hero-button {
  min-height: 60px;
  padding: 17px 26px;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  word-break: break-word;
}

.home .button.secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.page {
  overflow: hidden;
}

.section {
  padding: 96px 0;
}

.hero + .section {
  padding-top: 32px;
}

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

.section.dark {
  background: #102233;
  color: #fff;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.intro-grid > div {
  min-width: 0;
}

.intro-grid h2 {
  max-width: 100%;
  font-size: clamp(1.9rem, 3.3vw, 3.45rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.intro-graphic-label {
  margin: 22px 0 10px;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.intro-graphic {
  width: 100%;
  margin-top: 0;
  aspect-ratio: 2600 / 1536;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 34, 51, 0.14);
}

.kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.24;
}

.section-text {
  color: rgba(16, 34, 51, 0.72);
  font-size: 1.06rem;
}

.dark .section-text {
  color: rgba(255, 255, 255, 0.74);
}

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

.stat {
  padding: 22px;
  background: var(--paper);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--green-deep);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  color: rgba(16, 34, 51, 0.64);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #102233;
  box-shadow: var(--shadow);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 18, 27, 0.88) 0%, rgba(7, 18, 27, 0.52) 38%, rgba(7, 18, 27, 0.02) 100%);
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.service-card-content p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.text-link {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dark .text-link {
  color: #b9d56e;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dfe7df;
}

.feature-image img,
.feature-image video {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.quote-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.quote-panel p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3.2vw, 2.8rem);
  line-height: 1.16;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.step {
  counter-increment: step;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 22px;
  color: #b9d56e;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.deliverable {
  min-height: 138px;
  padding: 24px;
  background: var(--paper);
}

.deliverable span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}

.deliverable p {
  margin-bottom: 0;
  color: rgba(16, 34, 51, 0.68);
}

.insight-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.insight-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 90px);
  background: #102233;
  color: #fff;
}

.insight-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.cta {
  padding: 84px 0;
  background: var(--green-deep);
  color: #fff;
}

.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3.6vw, 3.2rem);
  line-height: 1.08;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-section {
  background: var(--mist);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.contact-intro h2 {
  max-width: 680px;
}

.contact-facts {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-fact {
  padding: 24px;
  background: var(--paper);
}

.contact-fact span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 900;
}

.contact-fact p {
  margin: 0;
  color: rgba(16, 34, 51, 0.68);
}

.contact-form {
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field.full,
.form-consent,
.form-actions,
.form-honeypot {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field label span {
  color: var(--green);
  font-size: 0.7rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 34, 51, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible,
.form-consent input:focus-visible,
.form-actions .button:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 122, 63, 0.14);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(16, 34, 51, 0.42);
}

.form-honeypot {
  display: none;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(16, 34, 51, 0.72);
  font-size: 0.92rem;
}

.form-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--green);
}

.form-consent a {
  color: var(--green-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 6px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  max-width: 390px;
  margin: 0;
  color: rgba(16, 34, 51, 0.62);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  min-height: 0;
  aspect-ratio: 3172 / 1344;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #08141f;
  color: #fff;
}

.site-footer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
}

.footer-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 20, 31, 0.48);
  backdrop-filter: blur(10px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.social-link:hover,
.privacy-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.privacy-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .nav {
    align-items: center;
    flex-direction: row;
    min-height: 72px;
    padding: 8px 0;
    gap: 14px;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 9px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .nav-full {
    display: none;
  }

  .nav-short {
    display: inline;
  }

  .brand-logo {
    width: 62px;
    max-height: 56px;
  }

  .hero.home img {
    object-position: 72% center;
  }

  .hero,
  .hero.compact {
    min-height: clamp(490px, calc(100vh - 170px), 620px);
  }

  .hero.home::before,
  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 24, 36, 0.78) 0%, rgba(10, 24, 36, 0.5) 58%, rgba(10, 24, 36, 0.16) 100%),
      linear-gradient(0deg, rgba(10, 24, 36, 0.58) 0%, rgba(10, 24, 36, 0) 52%);
  }

  .home .hero-copy {
    color: #fff;
    width: min(500px, calc(100% - 172px));
  }

  .home .lead {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.45rem, 4vw, 2rem);
    text-align: center;
  }

  .home .button.secondary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
  }

  .section {
    padding: 72px 0;
  }

  .intro-grid,
  .feature-split,
  .contact-layout,
  .insight-band,
  .cta .wrap,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .stat-row,
  .steps,
  .deliverables,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-card,
  .service-card:last-child {
    min-height: 430px;
    grid-column: auto;
  }

  .insight-band {
    min-height: 0;
  }

  .insight-band img {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .nav,
  .wrap,
  .hero-inner,
  .footer-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.6rem);
  }

  .subpage h1 {
    font-size: clamp(2.4rem, 15vw, 4.2rem);
  }

  .hero-inner {
    padding: 56px 0 68px;
  }

  .home .hero-copy {
    width: 100%;
  }

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

  .button {
    width: 100%;
  }

  .contact-form,
  .contact-fact {
    padding: 20px;
  }

  .form-status {
    max-width: 100%;
  }

  .footer-inner {
    padding-bottom: 10px;
  }

  .footer-links {
    gap: 8px;
    padding: 8px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .privacy-link {
    padding: 8px 9px;
    font-size: 0.68rem;
  }
}
