:root {
  --forest: #103c30;
  --forest-deep: #08251e;
  --forest-mid: #174a3b;
  --sage: #a9c0b2;
  --sage-soft: #dce6df;
  --ivory: #f3f0e8;
  --paper: #faf9f5;
  --sand: #d9d3c6;
  --gold: #c9a86a;
  --ink: #15231d;
  --muted: #69786f;
  --line: rgba(21, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-synthesis: none;
}

main {
  overflow: hidden;
}

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

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

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

ul {
  padding: 0;
  list-style: none;
}

.shell {
  width: min(100% - 80px, 1440px);
  margin-inline: auto;
}

.section {
  padding-block: 140px;
}

.eyebrow {
  color: var(--forest-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.brand-logo {
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(99, 137, 117, 0.18), transparent 24%),
    linear-gradient(135deg, #092820 0%, var(--forest-deep) 44%, #0c3026 100%);
  color: var(--ivory);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(169, 192, 178, 0.12);
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -380px;
  right: -240px;
  width: 820px;
  height: 820px;
}

.hero::after {
  right: 14%;
  bottom: -380px;
  width: 630px;
  height: 630px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 98px;
  border-bottom: 1px solid rgba(243, 240, 232, 0.14);
  transform: translateX(-50%);
}

.brand {
  width: 270px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: rgba(243, 240, 232, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-contact,
.text-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.header-contact:hover,
.header-contact:focus-visible {
  color: var(--ivory);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--sage-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-contact svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(470px, 1.07fr);
  gap: clamp(54px, 6vw, 112px);
  align-items: center;
  min-height: 800px;
  padding-top: 160px;
  padding-bottom: 92px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-copy .eyebrow {
  margin-bottom: 32px;
  animation: enter-up 700ms 80ms both ease-out;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(4.35rem, 6.65vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
  animation: enter-up 780ms 130ms both ease-out;
}

.hero h1 span {
  display: block;
  color: var(--sage);
}

.hero-lede {
  max-width: 580px;
  margin-top: 36px;
  color: rgba(243, 240, 232, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  letter-spacing: -0.01em;
  line-height: 1.75;
  animation: enter-up 780ms 190ms both ease-out;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  animation: enter-up 780ms 240ms both ease-out;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

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

.button-light {
  background: var(--ivory);
  color: var(--forest-deep);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--sage-soft);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--forest-mid);
}

.text-link {
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.text-link-light {
  color: rgba(243, 240, 232, 0.72);
}

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

.hero-visual {
  position: relative;
  min-height: 610px;
  animation: visual-in 950ms 120ms both ease-out;
}

.hero-visual::before {
  position: absolute;
  top: 4%;
  left: -3%;
  width: 78%;
  height: 75%;
  border: 1px solid rgba(169, 192, 178, 0.22);
  border-radius: 42% 58% 58% 42% / 54% 42% 58% 46%;
  content: "";
  transform: translate(-24px, 30px) rotate(-8deg);
}

.hero-image {
  position: absolute;
  overflow: hidden;
  background: #18382f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 18, 14, 0.24));
  content: "";
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main {
  top: 0;
  right: 0;
  width: 86%;
  height: 78%;
  border-radius: 12px 76px 12px 12px;
}

.hero-image-detail {
  right: -4%;
  bottom: 0;
  z-index: 2;
  width: 36%;
  height: 45%;
  border: 8px solid var(--forest-deep);
  border-radius: 12px 12px 64px 12px;
}

.visual-note {
  position: absolute;
  z-index: 3;
  bottom: 8%;
  left: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 185px;
  padding: 17px 20px;
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: 12px;
  background: rgba(12, 48, 38, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  color: rgba(243, 240, 232, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  line-height: 1.55;
  text-transform: uppercase;
}

.visual-note strong {
  display: block;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 700;
}

.visual-note-dot {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 168, 106, 0.12);
}

.hero-foot {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-top: 1px solid rgba(243, 240, 232, 0.14);
  color: rgba(243, 240, 232, 0.48);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot span:not(:last-child)::after {
  margin-left: clamp(20px, 4vw, 68px);
  color: var(--gold);
  content: "•";
}

.expertise {
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(430px, 1.2fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.section-intro h2,
.network-heading h2,
.contact h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-list {
  margin-top: 112px;
  border-bottom: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 78px minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
  padding-block: 48px;
  border-top: 1px solid var(--line);
}

.service-number,
.service-kicker {
  color: var(--forest-mid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-row h3 {
  max-width: 460px;
  margin-top: 14px;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-copy {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.network {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 84%, rgba(116, 154, 133, 0.12), transparent 26%),
    var(--forest-deep);
  color: var(--ivory);
}

.network::after {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(169, 192, 178, 0.12);
  border-radius: 50%;
  content: "";
}

.network-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(70px, 10vw, 170px);
}

.network-heading {
  max-width: 520px;
}

.network-heading h2 {
  margin-top: 32px;
}

.network-heading > p:last-child {
  max-width: 430px;
  margin-top: 34px;
  color: rgba(243, 240, 232, 0.62);
  line-height: 1.8;
}

.network-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.network-label {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(243, 240, 232, 0.2);
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.network-column li {
  padding-block: 24px;
  border-bottom: 1px solid rgba(243, 240, 232, 0.12);
}

.network-column li span {
  display: block;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.network-column li small {
  display: block;
  margin-top: 8px;
  color: rgba(243, 240, 232, 0.48);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(480px, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: start;
  margin-top: 46px;
}

.contact h2 {
  max-width: 830px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-details > a:not(.button) {
  display: block;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  font-size: 1.02rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.contact-details > a:not(.button):hover,
.contact-details > a:not(.button):focus-visible {
  color: var(--forest-mid);
}

.contact-details a span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details .button {
  align-self: flex-start;
  margin-top: 34px;
}

footer {
  background: #e8e4db;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  min-height: 130px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  width: 220px;
}

.footer-inner p:last-child {
  justify-self: end;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-in {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 56px, 1100px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6.1rem);
  }

  .section-intro {
    grid-template-columns: 150px 1fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
    max-width: 580px;
  }

  .network-inner {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 108px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 170px;
  }

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

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

  .hero-image-main {
    width: 91%;
  }

  .hero-image-detail {
    right: 0;
    width: 34%;
  }

  .hero-foot {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-block: 28px;
  }

  .hero-foot span:not(:last-child)::after {
    margin-left: 20px;
  }

  .service-row {
    grid-template-columns: 60px 0.9fr 1fr;
    gap: 28px;
  }

  .network-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .network-heading {
    max-width: 700px;
  }

  .contact-details {
    max-width: 620px;
  }

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

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 40px, 640px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    height: 82px;
  }

  .brand {
    width: 205px;
  }

  .header-contact {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(243, 240, 232, 0.2);
    border-radius: 50%;
    font-size: 0;
    justify-content: center;
  }

  .hero-inner {
    gap: 56px;
    padding-top: 140px;
    padding-bottom: 64px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16.3vw, 5rem);
    letter-spacing: -0.06em;
  }

  .hero-lede {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 34px;
  }

  .button {
    min-height: 52px;
    padding-inline: 20px;
    font-size: 0.7rem;
  }

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

  .hero-image-main {
    width: 100%;
    height: 76%;
    border-radius: 10px 48px 10px 10px;
  }

  .hero-image-detail {
    width: 42%;
    height: 48%;
    border-width: 6px;
    border-radius: 10px 10px 42px 10px;
  }

  .visual-note {
    bottom: 5%;
    left: -6px;
    min-width: 166px;
    padding: 14px 16px;
  }

  .hero-foot {
    gap: 12px 0;
    font-size: 0.58rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-intro > p:last-child {
    grid-column: 1;
  }

  .section-intro h2,
  .network-heading h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .service-list {
    margin-top: 72px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 36px;
  }

  .service-copy {
    font-size: 0.95rem;
  }

  .network-columns {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-grid {
    gap: 50px;
    margin-top: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 32px;
  }

  .footer-brand {
    width: 210px;
  }

  .footer-inner p:last-child {
    justify-self: start;
  }
}

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

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