:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5f6a64;
  --line: #dce3df;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --charcoal: #111715;
  --forest: #18392f;
  --teal: #1c786a;
  --cyan: #7bd0ca;
  --amber: #c98b30;
  --shadow: 0 22px 60px rgba(17, 23, 21, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  width: clamp(220px, 29vw, 360px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.nav-links {
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 23, 21, 0.38);
  backdrop-filter: blur(18px);
}

.nav-links a {
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 620;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 142px clamp(22px, 5vw, 72px) 54px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 15, 0.92), rgba(12, 17, 15, 0.62) 42%, rgba(12, 17, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 17, 15, 0.68), rgba(12, 17, 15, 0.06) 48%, rgba(12, 17, 15, 0.54));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 78px);
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 760;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #08201d;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
  gap: 1px;
  width: min(880px, 100%);
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 18px;
  background: rgba(12, 17, 15, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 760;
}

section {
  padding: 96px clamp(22px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  background: var(--surface);
}

.intro h2,
.section-heading h2,
.advisory h2,
.contact h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.intro > p,
.advisory-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.services {
  background: #eef3ef;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

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

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(17, 23, 21, 0.06);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #e5f5f2;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.service-card h3,
.timeline h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.advisory {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: var(--charcoal);
  color: #fff;
}

.advisory-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-list strong,
.metric-list span {
  display: block;
}

.metric-list strong {
  color: var(--cyan);
  font-size: 18px;
}

.metric-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.approach {
  background: var(--surface);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  min-height: 260px;
  padding: 28px;
  background: var(--surface);
}

.timeline span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--forest);
  color: #fff;
}

.contact p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-brand {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.contact-brand img {
  width: clamp(120px, 12vw, 168px);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

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

  .intro,
  .advisory,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-brand {
    justify-items: start;
  }

  .contact .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .hero {
    min-height: 820px;
    padding: 112px 18px 36px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-panel span {
    min-height: 52px;
  }

  section {
    padding: 68px 18px;
  }

  .intro h2,
  .section-heading h2,
  .advisory h2,
  .contact h2 {
    font-size: 30px;
  }

  .section-heading {
    display: block;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }
}
