
:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --steel: #6f7478;
  --stone: #d8d5cf;
  --paper: #f5f4f0;
  --white: #ffffff;
  --line-dark: rgba(255,255,255,.22);
  --line-light: rgba(5,5,5,.18);
  --display: "Bodoni MT", Didot, "Baskerville", "Times New Roman", serif;
  --body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1320px;
  --pad: clamp(20px, 4vw, 64px);
  --section: clamp(72px, 10vw, 144px);
  --ease: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--ink); color: var(--white); }
:focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }
.container { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  background: var(--white); color: var(--black); padding: 10px 14px;
  transform: translateY(-150%); transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.utility {
  background: var(--white); color: var(--black);
  border-bottom: 1px solid var(--line-light);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.utility__inner {
  min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.utility__emergency { font-weight: 800; }
.utility__links { display: flex; align-items: center; gap: 22px; }
.utility a { border-bottom: 1px solid transparent; }
.utility a:hover { border-color: currentColor; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(5,5,5,.98); color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { flex: 0 1 460px; min-width: 230px; }
.brand img { width: min(100%, 430px); height: auto; }
.brand img, .footer__brand img { transform: translateX(-10.7%); }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.nav__links a {
  font-size: 13px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  position: relative; padding-block: 10px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 3px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta, .button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 22px; border: 1px solid currentColor; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; font-size: 12px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.nav__cta { background: var(--white); color: var(--black); white-space: nowrap; }
.nav__cta:hover { background: transparent; color: var(--white); }
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-dark);
  background: transparent; align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 20px; height: 1px; background: currentColor; position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.hero {
  min-height: min(820px, calc(100vh - 126px));
  display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  background: var(--black); color: var(--white);
}
.hero__content {
  padding: clamp(72px, 9vw, 140px) var(--pad);
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.hero__content-inner { max-width: 790px; margin-left: auto; min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 28px; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 64px; height: 1px; background: currentColor; opacity: .75; }
.display, h1, h2, h3 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  line-height: .98; letter-spacing: -.025em; margin-top: 0;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(36px, 7.4vw, 118px); margin-bottom: 28px; }
@media (min-width: 1101px) {
  h1 { font-size: clamp(56px, 5.2vw, 96px); }
}
.hero__lead { max-width: 690px; font-size: clamp(18px, 1.6vw, 24px); color: rgba(255,255,255,.76); margin: 0 0 38px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button--light { background: var(--white); color: var(--black); }
.button--light:hover { background: transparent; color: var(--white); }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: var(--white); color: var(--black); }
.button--outline { background: transparent; color: var(--white); }
.button--outline:hover { background: var(--white); color: var(--black); }
.button--outline-dark { background: transparent; color: var(--black); }
.button--outline-dark:hover { background: var(--black); color: var(--white); }
.hero__media { position: relative; overflow: hidden; border-left: 1px solid var(--line-dark); }
.hero__media img { height: 100%; object-fit: cover; object-position: 52% center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 30px 0 50px rgba(0,0,0,.18);
}
.hero__caption {
  position: absolute; left: 0; bottom: 0; z-index: 2; background: var(--white); color: var(--black);
  padding: 20px 24px; max-width: 340px; border-top: 1px solid var(--black); border-right: 1px solid var(--black);
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
}

.capabilities { background: var(--white); border-bottom: 1px solid var(--line-light); }
.capabilities__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.capability {
  min-height: 108px; padding: 24px 28px; display: flex; align-items: center;
  border-right: 1px solid var(--line-light); font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; font-size: 13px;
}
.capability:last-child { border-right: 0; }

.section { padding-block: var(--section); }
.section--flush { padding-block: 0; }
.section--black { background: var(--black); color: var(--white); }
.section--white { background: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section__head {
  display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(28px, 7vw, 110px);
  align-items: start; margin-bottom: clamp(46px, 7vw, 90px);
}
.section__head > * { min-width: 0; }
.section__kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.section__title { font-size: clamp(32px, 5.5vw, 86px); margin-bottom: 24px; }
@media (min-width: 761px) {
  .section__title { font-size: clamp(28px, 3vw, 58px); }
}
.section__intro { max-width: 720px; font-size: clamp(18px, 1.6vw, 23px); margin: 0; color: var(--steel); }
.section--black .section__intro, .section--charcoal .section__intro { color: rgba(255,255,255,.68); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card {
  min-height: 330px; padding: clamp(26px, 3vw, 44px);
  border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
  display: flex; flex-direction: column; justify-content: space-between; background: var(--paper);
  transition: background var(--ease), color var(--ease);
}
.service-card:hover { background: var(--black); color: var(--white); }
.service-card__number { font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { font-size: clamp(30px, 3vw, 46px); margin: 36px 0 18px; }
.service-card p { margin: 0 0 24px; color: var(--steel); }
.service-card:hover p { color: rgba(255,255,255,.72); }
.text-link {
  display: inline-flex; gap: 10px; align-items: center; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
}
.text-link::after { content: "→"; transition: transform var(--ease); }
.text-link:hover::after { transform: translateX(5px); }

.split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 680px;
}
.split > * { min-width: 0; }
.split__media { min-height: 520px; overflow: hidden; }
.split__media img { height: 100%; object-fit: cover; transition: transform 600ms ease; }
.split:hover .split__media img { transform: scale(1.012); }
.split__content { padding: clamp(54px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.split__content h2 { font-size: clamp(32px, 5vw, 78px); margin-bottom: 30px; }
@media (min-width: 761px) {
  .split__content h2 { font-size: clamp(28px, 3.2vw, 60px); }
}
.split__content p { max-width: 660px; color: var(--steel); }
.section--black .split__content p { color: rgba(255,255,255,.68); }
.fact-list { list-style: none; margin: 34px 0 40px; padding: 0; border-top: 1px solid currentColor; }
.fact-list li { padding: 15px 0; border-bottom: 1px solid currentColor; opacity: .82; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.project-card { background: var(--white); display: flex; flex-direction: column; min-width: 0; }
.project-card__image { aspect-ratio: 4 / 3; overflow: hidden; background: #c8c6c1; }
.project-card__image img { height: 100%; object-fit: cover; transition: transform 600ms ease; }
.project-card:hover img { transform: scale(1.02); }
.project-card__body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.project-card__meta { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); }
.project-card h3 { font-size: clamp(28px, 2.6vw, 43px); margin: 18px 0; }
.project-card p { color: var(--steel); margin: 0 0 26px; }
.project-card .text-link { margin-top: auto; }

.process { counter-reset: step; border-top: 1px solid var(--line-dark); }
.process__item {
  counter-increment: step; display: grid; grid-template-columns: 100px 1fr 1.25fr; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--line-dark); align-items: baseline;
}
.process__item::before { content: "0" counter(step); font-size: 12px; letter-spacing: .16em; opacity: .55; }
.process__item h3 { font-family: var(--body); font-size: 15px; letter-spacing: .10em; margin: 0; }
.process__item p { margin: 0; color: rgba(255,255,255,.62); }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-light); }
.proof { padding: 36px 28px; border-right: 1px solid var(--line-light); }
.proof:last-child { border-right: 0; }
.proof__title { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.proof p { color: var(--steel); margin-bottom: 0; font-size: 14px; }

.emergency {
  display: grid; grid-template-columns: 1.3fr .7fr; background: var(--white); color: var(--black); border: 1px solid var(--black);
}
.emergency__content, .emergency__number { min-width: 0; }
.emergency__content { padding: clamp(44px, 7vw, 90px); }
.emergency__content h2 { font-size: clamp(32px, 6vw, 92px); margin-bottom: 24px; overflow-wrap: break-word; }
.emergency__number {
  display: flex; align-items: center; justify-content: center; border-left: 1px solid var(--black);
  font-family: var(--display); font-size: clamp(24px, 3vw, 46px); font-weight: 700; padding: 40px;
  text-align: center; overflow-wrap: break-word;
}

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(44px, 8vw, 120px); }
.contact-layout > * { min-width: 0; }
.contact-copy h2 { font-size: clamp(32px, 5vw, 78px); }
.contact-detail { border-top: 1px solid currentColor; padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.contact-detail > * { min-width: 0; overflow-wrap: break-word; }
.contact-detail:last-child { border-bottom: 1px solid currentColor; }
.contact-detail span:first-child { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
input, select, textarea {
  width: 100%; border: 0; border-bottom: 1px solid currentColor; background: transparent;
  color: inherit; min-height: 52px; padding: 8px 0; border-radius: 0;
}
textarea { min-height: 130px; resize: vertical; }
input::placeholder, textarea::placeholder { color: currentColor; opacity: .45; }
.file-help { font-size: 12px; opacity: .6; margin: 0; }
.form-status { min-height: 28px; margin-top: 14px; font-size: 14px; }

.page-hero {
  background: var(--black); color: var(--white); padding: clamp(76px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--line-dark);
}
.page-hero__inner { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(40px, 8vw, 120px); align-items: end; }
.page-hero__inner > * { min-width: 0; }
.page-hero h1 { font-size: clamp(40px, 8vw, 118px); margin: 0; }
.page-hero p { font-size: clamp(18px, 1.8vw, 25px); color: rgba(255,255,255,.67); margin: 0 0 10px; }
@media (min-width: 1101px) {
  .page-hero h1 { font-size: clamp(40px, 4.5vw, 80px); }
}

.detail-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--black); color: var(--white); }
.detail-hero > * { min-width: 0; }
.detail-hero__copy { padding: clamp(70px, 9vw, 140px) var(--pad); display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.detail-hero__copy-inner { max-width: 760px; margin-left: auto; min-width: 0; }
.detail-hero h1 { font-size: clamp(40px, 7vw, 108px); }
@media (min-width: 1101px) {
  .detail-hero h1 { font-size: clamp(36px, 4vw, 64px); }
}
.detail-hero__media { overflow: hidden; }
.detail-hero__media img { height: 100%; object-fit: cover; }

.content-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 120px); }
.content-grid > * { min-width: 0; }
.sticky-label { position: sticky; top: 150px; align-self: start; }
.rich-copy { max-width: 820px; }
.rich-copy h2 { font-size: clamp(32px, 5vw, 76px); margin-top: 0; }
.rich-copy h3 { font-family: var(--body); font-size: 14px; letter-spacing: .12em; margin-top: 44px; }
.rich-copy p, .rich-copy li { color: var(--steel); font-size: 18px; }
.rich-copy ul { padding-left: 20px; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-light); margin-top: 44px; }
.spec { padding: 28px; border-right: 1px solid var(--line-light); min-width: 0; }
.spec:last-child { border-right: 0; }
.spec span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--steel); }
.spec strong { display: block; margin-top: 8px; font-size: 18px; }

.gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1px; background: var(--line-light); }
.gallery img { height: 100%; object-fit: cover; min-height: 420px; }
.gallery__stack { display: grid; gap: 1px; }
.gallery__stack img { min-height: 250px; }

.site-footer { background: var(--black); color: var(--white); padding: 72px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 50px; padding-bottom: 64px; }
.footer__brand img { max-width: 460px; }
.footer__brand p { max-width: 520px; color: rgba(255,255,255,.6); }
.footer__heading { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; opacity: .55; }
.footer__links { display: grid; gap: 10px; font-size: 14px; }
.footer__links a:hover { text-decoration: underline; }
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; justify-content: space-between;
  gap: 24px; color: rgba(255,255,255,.52); font-size: 12px;
}
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); padding: 28px var(--pad) 34px; border-bottom: 1px solid var(--line-dark); }
  .nav__links.is-open { display: grid; }
  .nav__links .nav__cta { justify-self: start; }
  .menu-toggle { display: inline-flex; }
  .hero, .detail-hero { grid-template-columns: 1fr; }
  .hero__content { min-height: 620px; }
  .hero__content-inner, .detail-hero__copy-inner { margin-left: 0; }
  .hero__media, .detail-hero__media { min-height: 520px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .project-card__image { aspect-ratio: auto; min-height: 360px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof { border-bottom: 1px solid var(--line-light); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .utility__inner { justify-content: center; text-align: center; }
  .utility__links span { display: none; }
  .utility__links a:last-child { display: none; }
  .nav { min-height: 72px; }
  .brand { min-width: 180px; }
  .brand img { max-width: 260px; }
  .hero { min-height: auto; }
  .hero__content { min-height: 570px; padding-top: 70px; padding-bottom: 70px; }
  h1 { font-size: clamp(51px, 15vw, 74px); }
  .hero__media, .detail-hero__media { min-height: 440px; }
  .hero__caption { max-width: 100%; right: 0; font-size: 10px; }
  .capabilities__grid { grid-template-columns: 1fr 1fr; }
  .capability { min-height: 92px; border-bottom: 1px solid var(--line-light); padding: 18px; font-size: 11px; }
  .section__head, .page-hero__inner, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .section__title { font-size: clamp(42px, 13vw, 68px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .split { grid-template-columns: 1fr; }
  .split__content { order: 1; }
  .split__media { order: 2; min-height: 420px; }
  .project-card { display: flex; }
  .project-card__image { min-height: 300px; }
  .process__item { grid-template-columns: 60px 1fr; }
  .process__item p { grid-column: 2; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof { border-right: 0; }
  .emergency { grid-template-columns: 1fr; }
  .emergency__number { border-left: 0; border-top: 1px solid var(--black); justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .page-hero { padding: 72px 0; }
  .page-hero h1 { font-size: clamp(52px, 15vw, 82px); }
  .detail-hero__copy { padding: 76px var(--pad); }
  .sticky-label { position: static; }
  .specs { grid-template-columns: 1fr; }
  .spec { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .spec:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .mobile-actions {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; display: grid; grid-template-columns: 1fr 1fr;
    background: var(--white); color: var(--black); border-top: 1px solid var(--black);
  }
  .mobile-actions a {
    min-height: 66px; display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  }
  .mobile-actions a + a { background: var(--black); color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.form-botcheck { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { margin-top: 12px; line-height: 1.5; }
button:disabled { cursor: wait; opacity: .65; }
.legal-copy { max-width: 860px; }
.legal-copy h2 { margin-top: 48px; font-size: clamp(26px, 4vw, 48px); }
.legal-copy h3 { margin-top: 32px; }
.legal-copy p, .legal-copy li { line-height: 1.75; }
.legal-copy ul { padding-left: 22px; }
