:root {
  --ink: #192126;
  --muted: #5d6765;
  --paper: #f7f7f2;
  --panel: #ffffff;
  --line: #d9ded6;
  --pine: #174d3a;
  --jade: #2d7c62;
  --brass: #b8862d;
  --coral: #cf5f46;
  --shadow: 0 24px 70px rgba(19, 31, 35, 0.16);
}

* {
  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.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 21, 24, 0.72), rgba(13, 21, 24, 0.08));
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.site-header nav a {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0e171a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 20, 0.86) 0%, rgba(10, 18, 20, 0.62) 38%, rgba(10, 18, 20, 0.18) 72%),
    linear-gradient(0deg, rgba(10, 18, 20, 0.55) 0%, rgba(10, 18, 20, 0) 45%);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  padding: 120px 0 72px clamp(18px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c463;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: #fff;
  color: var(--ink);
}

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

.ticker-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: -36px auto 0;
  padding: 0 18px;
  position: relative;
  z-index: 2;
}

.ticker-band article {
  min-height: 124px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ticker-band span,
.ticker-band small {
  display: block;
  color: var(--muted);
}

.ticker-band strong {
  display: block;
  margin: 2px 0;
  color: var(--pine);
  font-size: 2rem;
  line-height: 1;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.22rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 18px;
  padding-top: 0;
}

.service-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(25, 33, 38, 0.08);
}

.service-card p {
  color: var(--muted);
}

.service-card.featured {
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.card-number {
  display: block;
  margin-bottom: 54px;
  color: var(--coral);
  font-weight: 900;
}

.home-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 0;
  width: min(1240px, calc(100% - 36px));
  margin: 10px auto 0;
  background: var(--ink);
  color: #fff;
}

.home-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.home-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 70px);
}

.home-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.home-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.home-copy li {
  padding-left: 22px;
  position: relative;
}

.home-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(26px, 6vw, 78px);
}

.insight-list {
  display: grid;
  gap: 16px;
}

.insight-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.insight-list p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--pine);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(10, 18, 20, 0.9) 0%, rgba(10, 18, 20, 0.42) 74%),
      linear-gradient(90deg, rgba(10, 18, 20, 0.55), rgba(10, 18, 20, 0.05));
  }

  .hero-copy {
    padding-top: 110px;
    padding-bottom: 54px;
  }

  .ticker-band,
  .service-grid,
  .intro-grid,
  .home-panel,
  .insight-section {
    grid-template-columns: 1fr;
  }

  .ticker-band {
    margin-top: 0;
    padding: 0;
  }

  .ticker-band article {
    box-shadow: none;
  }

  .service-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .home-panel {
    width: 100%;
  }

  .home-panel img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }
}
