:root {
  --green: #65b832;
  --green-dark: #3f8e28;
  --blue: #073153;
  --blue-deep: #031d34;
  --cyan: #1686b7;
  --ink: #102033;
  --muted: #687484;
  --line: #dfe8ec;
  --soft: #f3f8f7;
  --paper: #ffffff;
  --shadow: 0 24px 70px rgba(6, 31, 52, 0.14);
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 4.7vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.5rem);
}

h3 {
  font-size: 1.05rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 232, 236, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 78px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
}

.brand span {
  display: block;
  max-width: 210px;
  padding-left: 14px;
  border-left: 1px solid rgba(17, 65, 86, 0.2);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover {
  color: var(--green-dark);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--blue-deep);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 29, 52, 0.96) 0%, rgba(3, 29, 52, 0.82) 46%, rgba(3, 29, 52, 0.24) 100%),
    linear-gradient(135deg, rgba(101, 184, 50, 0.75) 0 9%, transparent 9.2% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(88px, 13vw, 160px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow,
.method-section .eyebrow,
.contact-section .eyebrow {
  color: white;
}

.lead {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-light {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-dark {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 64px);
  z-index: 2;
  width: min(460px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 29, 52, 0.76);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: white;
  text-transform: uppercase;
}

.hero-panel span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--blue);
  color: white;
}

.proof-strip span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 136px) 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
}

.copy-block p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

.image-panel {
  position: relative;
  width: min(100%, 520px);
  justify-self: center;
}

.image-panel::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 38%;
  height: 42%;
  background: var(--green);
  z-index: -1;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-panel-compact {
  width: min(100%, 550px);
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel-compact::after {
  right: -12px;
  bottom: -12px;
  width: 54%;
  height: 32%;
}

.image-panel-compact img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: none;
}

.specialized-section {
  background:
    linear-gradient(180deg, white 0 58%, var(--soft) 58% 100%);
}

.specialized-layout {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.specialized-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.specialized-heading {
  max-width: 640px;
}

.specialized-heading h2 {
  color: var(--ink);
}

.identity-section {
  background: linear-gradient(90deg, var(--blue) 0 36%, white 36% 100%);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.identity-card,
.service-card,
.why-grid article {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(6, 31, 52, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.identity-card:hover,
.service-card:hover,
.why-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.identity-card {
  min-height: 300px;
  padding: 30px;
}

.identity-card span,
.method-steps span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: white;
  background: var(--green);
  font-weight: 950;
}

.identity-card h3,
.service-card h3,
.special-list h3,
.method-steps h3,
.why-grid h3 {
  color: var(--blue);
}

.identity-card p,
.service-card p,
.special-list p,
.method-steps p,
.why-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: grid;
  grid-template-columns: 142px 1fr;
  align-items: stretch;
  min-height: 100%;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
}

.service-card div {
  padding: 26px 28px;
}

.special-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.special-list article {
  min-height: 220px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  box-shadow: 0 16px 42px rgba(6, 31, 52, 0.07);
}

.special-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: white;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.method-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--blue-deep);
}

.method-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.method-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 52, 0.96), rgba(3, 29, 52, 0.76));
}

.method-content {
  position: relative;
  z-index: 1;
}

.method-content h2 {
  max-width: 980px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.method-steps article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid article {
  min-height: 240px;
  padding: 30px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  min-height: 720px;
  color: white;
  background: var(--blue);
}

.contact-media {
  position: relative;
  overflow: hidden;
}

.contact-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-copy {
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 90px);
}

.contact-copy h2 {
  max-width: 650px;
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

address {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  font-style: normal;
}

address a,
address p {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.08rem;
  font-weight: 850;
}

address span {
  color: var(--green);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: white;
  background: var(--blue-deep);
}

.footer span {
  color: rgba(255, 255, 255, 0.68);
}

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

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

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

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

@media (max-width: 1080px) {
  .proof-strip,
  .identity-grid,
  .method-steps,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialized-intro {
    grid-template-columns: 1fr;
  }

  .specialized-heading {
    max-width: 820px;
  }

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(1180px, calc(100% - 40px));
    margin: -70px auto 34px;
  }
}

@media (max-width: 900px) {
  :root {
    --header: 78px;
  }

  .brand img {
    height: 62px;
    max-width: 96px;
  }

  .brand span {
    max-width: 128px;
    padding-left: 10px;
    font-size: 0.66rem;
  }

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

  .nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .split,
  .split.reverse,
  .service-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .identity-section {
    background: var(--soft);
  }

  .service-card {
    grid-template-columns: 150px 1fr;
    min-height: 0;
  }

  .service-card img {
    min-height: 150px;
  }

  .contact-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.55rem);
  }

  .actions,
  .btn {
    width: 100%;
  }

  .proof-strip,
  .identity-grid,
  .special-list,
  .method-steps,
  .why-grid,
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .identity-card,
  .why-grid article,
  .method-steps article {
    min-height: auto;
  }

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

  .service-card img {
    width: 100%;
    height: 100%;
    min-height: 128px;
    aspect-ratio: auto;
  }

  .service-card div {
    padding: 18px;
  }

  .footer {
    flex-direction: column;
  }
}
