:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #5f676f;
  --paper: #f7f4ee;
  --snow: #fffdf8;
  --night: #0f1318;
  --pine: #1f4d45;
  --glow: #d9714d;
  --gold: #e0ad55;
  --line: rgba(21, 23, 26, 0.14);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(15, 19, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--snow);
}

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

.brand {
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 86svh);
  overflow: hidden;
  color: var(--snow);
}

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

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

.hero-shade {
  background:
    radial-gradient(circle at 72% 20%, rgba(217, 113, 77, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(7, 10, 13, 0.86) 0%, rgba(7, 10, 13, 0.56) 38%, rgba(7, 10, 13, 0.18) 72%),
    linear-gradient(180deg, rgba(7, 10, 13, 0.2) 0%, rgba(7, 10, 13, 0.28) 58%, rgba(7, 10, 13, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1120px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 112px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(4rem, 8.8vw, 8.8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

.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: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  background: var(--snow);
  color: var(--night);
}

.button-secondary {
  border-color: var(--white-line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--snow);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section p {
  margin: 0;
}

.section-intro {
  background: var(--snow);
}

.intro-grid,
.approach-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.section-lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.62;
}

.capability-band {
  background:
    linear-gradient(135deg, rgba(31, 77, 69, 0.95), rgba(15, 19, 24, 0.98)),
    var(--night);
  color: var(--snow);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.capability-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(15, 19, 24, 0.72);
}

.capability-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.capability-card p,
.step p {
  color: rgba(255, 253, 248, 0.72);
}

.approach-section {
  background: #e9ece4;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.step span {
  display: block;
  margin-bottom: 8px;
  color: var(--pine);
  font-size: 0.92rem;
  font-weight: 800;
}

.step p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section {
  background: var(--night);
  color: var(--snow);
}

.contact-panel {
  align-items: end;
}

.contact-link {
  justify-self: end;
  color: var(--gold);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 22px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 10, 13, 0.42) 0%, rgba(7, 10, 13, 0.42) 42%, rgba(7, 10, 13, 0.82) 100%),
      linear-gradient(90deg, rgba(7, 10, 13, 0.78), rgba(7, 10, 13, 0.28));
  }

  .hero-content {
    align-self: end;
    width: min(100% - 40px, 640px);
    margin: 0 auto;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 14vw, 5.2rem);
    white-space: normal;
  }

  .intro-grid,
  .approach-grid,
  .contact-panel,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 240px;
  }

  .capability-card h3 {
    margin-top: 0;
  }

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

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

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero-content {
    width: calc(100% - 32px);
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }
}
