:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --charcoal: #161616;
  --dark-gray: #242424;
  --mid-gray: #8b8b8b;
  --light-gray: #f3f3f0;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 86px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: height .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(5, 5, 5, 0.94);
}
.logo, .footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .45em;
  white-space: nowrap;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: rgba(255,255,255,.74);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--white); }
.header-cta {
  justify-self: end;
  background: var(--white);
  color: var(--black);
  padding: 17px 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  transition: .25s ease;
}
.header-cta:hover {
  background: transparent;
  color: var(--white);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--light-gray); color: var(--black); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 43%) 1fr;
  align-items: center;
  padding: 140px clamp(24px, 7vw, 110px) 72px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 44%, rgba(255,255,255,.07), transparent 35%), linear-gradient(90deg, #050505 0%, rgba(5,5,5,.85) 36%, rgba(5,5,5,.35) 72%, #050505 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero-media {
  position: relative;
  z-index: 0;
  margin-right: -9vw;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hero-media img {
  height: min(760px, 78vh);
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.05);
  opacity: .9;
}
.eyebrow {
  margin: 0 0 24px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.eyebrow.dark { color: rgba(0,0,0,.58); }
.hero h1, .section-heading h2, .band-copy h2, .differential-copy h2, .quote-copy h2, .position-title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .92;
}
.hero h1 { font-size: clamp(50px, 7vw, 112px); max-width: 730px; }
.hero-text {
  max-width: 465px;
  margin: 30px 0 36px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-ghost { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.24); }
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); width: 100%; }
.btn-dark:hover { background: transparent; color: var(--black); }

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-soft);
}
.strip-item {
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.strip-item:last-child { border-right: none; }

section:not(.hero):not(.intro-strip) { padding: clamp(82px, 9vw, 150px) clamp(24px, 7vw, 110px); }
.section-heading { max-width: 900px; margin-bottom: 58px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: clamp(40px, 6vw, 88px); }
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}
.about-card { background: #090909; overflow: hidden; }
.about-card img { filter: grayscale(100%) contrast(1.02); min-height: 520px; object-fit: cover; }
.about-copy p {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.62;
  color: rgba(0,0,0,.72);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.stat-grid div {
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}
.stat-grid strong { display: block; font-size: 13px; letter-spacing: .28em; }
.stat-grid span { display: block; margin-top: 10px; color: rgba(0,0,0,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

.service-grid, .niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card, .niche-card {
  background: var(--black-soft);
  min-height: 330px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .25s ease, transform .25s ease;
}
.service-card:hover, .niche-card:hover { background: var(--charcoal); }
.service-card span {
  color: rgba(255,255,255,.42);
  font-size: 12px;
  letter-spacing: .28em;
}
.service-card h3, .niche-card h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.035em;
}
.service-card p, .niche-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.65;
}
.niche-card { min-height: 260px; justify-content: flex-end; }

.image-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.image-card { overflow: hidden; background: #090909; }
.image-card img { aspect-ratio: 1 / 1; object-fit: cover; filter: grayscale(100%); transition: transform .6s ease; }
.image-card:hover img { transform: scale(1.04); }
.band-copy { text-align: center; }
.band-copy h2 { font-size: clamp(38px, 5.2vw, 76px); }
.band-copy p:last-child { font-size: 18px; color: rgba(0,0,0,.66); line-height: 1.6; }

.process-line {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-line div {
  min-height: 310px;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-line span { color: rgba(255,255,255,.42); letter-spacing: .22em; font-size: 12px; }
.process-line h3 { margin: 70px 0 18px; font-size: 26px; text-transform: uppercase; }
.process-line p { color: rgba(255,255,255,.66); line-height: 1.6; margin: 0; }

.differentials {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}
.differential-media img { filter: grayscale(100%); aspect-ratio: 1 / 1.08; object-fit: cover; }
.differential-copy h2 { font-size: clamp(42px, 6vw, 86px); margin-bottom: 38px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}
.check-list li {
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(0,0,0,.72);
  position: relative;
  line-height: 1.4;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 12px;
  height: 1px;
  background: #000;
}

.quote {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: clamp(40px, 7vw, 105px);
  align-items: start;
}
.quote-copy h2 { font-size: clamp(42px, 6vw, 88px); margin-bottom: 30px; }
.quote-copy p:last-child { max-width: 580px; font-size: 19px; line-height: 1.65; color: rgba(0,0,0,.68); }
.quote-form {
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  gap: 18px;
}
.quote-form label {
  display: grid;
  gap: 10px;
  color: rgba(0,0,0,.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  background: #f7f7f4;
  color: var(--black);
  padding: 16px;
  outline: none;
  transition: border-color .2s ease;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
}
.quote-form textarea { min-height: 130px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #000; }

.footer {
  padding: 58px clamp(24px, 7vw, 110px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  background: var(--black);
}
.footer p {
  color: rgba(255,255,255,.58);
  margin: 18px 0 0;
}
.footer-links {
  display: flex;
  gap: 26px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(5,5,5,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 22px 24px; border-top: 1px solid var(--line); }
  .menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero-media { margin: 48px -24px 0; }
  .hero-media img { height: 460px; width: 100%; }
  .service-grid, .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .differentials, .quote { grid-template-columns: 1fr; }
  .image-band { grid-template-columns: 1fr; }
  .band-copy { order: -1; }
}

@media (max-width: 720px) {
  .site-header { height: 74px; padding: 0 18px; }
  .logo, .footer-logo { font-size: 14px; letter-spacing: .32em; }
  .header-cta { display: none; }
  .hero { padding: 118px 20px 54px; }
  .hero h1 { font-size: clamp(46px, 15vw, 72px); }
  .hero-actions { width: 100%; }
  .btn { width: 100%; min-height: 56px; padding: 0 22px; }
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item { border-bottom: 1px solid var(--line); }
  section:not(.hero):not(.intro-strip) { padding: 72px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .band-copy h2, .differential-copy h2, .quote-copy h2 { letter-spacing: -.05em; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .niche-grid, .process-line { grid-template-columns: 1fr; }
  .service-card, .niche-card, .process-line div { min-height: 240px; }
  .process-line h3 { margin-top: 44px; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 16px; }
}
