:root {
  --black: #080808;
  --ink: #151515;
  --steel: #4d5155;
  --line: #d8d8d5;
  --mist: #f1f1ee;
  --paper: #fbfbf8;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.sr-only, .skip-link {
  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:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: .75rem 1rem;
  z-index: 1000;
  background: white;
  color: black;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.nav-shell {
  max-width: var(--max);
  margin: auto;
  min-height: 78px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: 240px; }
.brand img { width: 100%; mix-blend-mode: normal; }
#site-nav { display: flex; align-items: center; gap: 28px; }
#site-nav a {
  color: #e9e9e9;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
}
#site-nav a:hover, #site-nav a:focus-visible { color: white; }
#site-nav .nav-cta { padding: 12px 16px; border: 1px solid white; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: white; }

.hero {
  color: white;
  background:
    radial-gradient(circle at 78% 35%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #050505 0%, #151515 55%, #050505 100%);
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-grid {
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 56px 28px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: #d8d8d8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--steel); }
h1, h2, h3 { margin-top: 0; line-height: 1.05; letter-spacing: -.035em; }
h1 { max-width: 820px; margin-bottom: 20px; font-size: clamp(3rem, 4.4vw, 5.15rem); line-height: .98; }
h1 span { color: transparent; -webkit-text-stroke: 1.5px white; }
.hero-lede { max-width: 690px; margin: 0 0 28px; color: #cfcfcf; font-size: clamp(.98rem, 1.25vw, 1.15rem); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: black; }
.button-ghost { border-color: #707070; color: white; }
.button-ghost:hover { border-color: white; }
.button-dark { width: 100%; background: black; color: white; }
.hero-mark { border-left: 1px solid #454545; padding-left: 40px; }
.hero-mark img { width: min(220px, 68%); margin: 0 auto 24px; border-radius: 50%; }
.hero-mark strong { display: block; margin: 5px 0; font-size: clamp(1rem, 1.35vw, 1.18rem); }
.proof-strip {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-strip div { padding: 12px 20px; border-top: 1px solid #525252; border-right: 1px solid #353535; }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-size: 1.25rem; }
.proof-strip span { color: #a8a8a8; font-size: .78rem; }

.section { padding: 110px 28px; }
.section-heading { max-width: var(--max); margin: 0 auto 54px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -48px; }
.section-heading h2, .about h2, .area h2, .contact h2 { margin-bottom: 0; font-size: clamp(2.5rem, 4.8vw, 5rem); }
.section-heading > p:last-child { margin: 0; color: #5a5a5a; font-size: 1.1rem; }
.service-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 1fr; }
.service-card { min-height: 500px; padding: 52px; border: 1px solid var(--line); background: white; }
.service-card.inverse { color: white; background: var(--black); border-color: var(--black); }
.service-card h3 { margin-bottom: 24px; font-size: clamp(2rem, 3.2vw, 3.2rem); }
.service-card p { max-width: 530px; color: #5b5b5b; }
.service-card.inverse p { color: #c1c1c1; }
.service-card ul { margin: 32px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 12px 0 12px 25px; border-top: 1px solid var(--line); position: relative; }
.service-card.inverse li { border-color: #363636; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 19px; width: 8px; height: 8px; background: currentColor; }
.compliance-note { max-width: var(--max); margin: 24px auto 0; color: #696969; font-size: .83rem; }

.approach { color: white; background: #111; }
.section-heading.compact { display: block; }
.section-heading.compact .eyebrow { margin-bottom: 18px; }
.section-heading.compact h2 { max-width: 820px; }
.steps { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3a3a3a; }
.step { min-height: 340px; padding: 35px 35px 40px 0; border-right: 1px solid #3a3a3a; }
.step + .step { padding-left: 35px; }
.step:last-child { border-right: 0; }
.step > span { display: flex; width: 42px; height: 42px; margin-bottom: 80px; align-items: center; justify-content: center; border: 1px solid #737373; border-radius: 50%; }
.step h3 { font-size: 1.55rem; }
.step p { color: #aaa; }

.about { background: var(--mist); }
.about-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.about-statement { position: sticky; top: 130px; }
.about-statement h2 { max-width: 480px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.about-summary { max-width: 380px; margin: 24px 0 0; color: var(--steel); font-size: 1.15rem; font-weight: 700; }
.about-copy { padding-top: 44px; }
.about-copy p { color: #545454; font-size: 1.05rem; }
.about-copy .lead { color: var(--ink); font-size: 1.45rem; font-weight: 700; }
.about-copy .about-principle { margin-top: 36px; padding: 28px 0; border-top: 1px solid #b8b8b4; border-bottom: 1px solid #b8b8b4; color: var(--ink); font-size: 1.35rem; font-weight: 800; line-height: 1.35; }
.owner-line { display: flex; align-items: center; gap: 16px; margin-top: 38px; padding-top: 28px; border-top: 1px solid #bbb; }
.owner-badge { display: flex; width: 50px; height: 50px; align-items: center; justify-content: center; border-radius: 50%; background: black; color: white; font-weight: 800; }
.owner-line strong, .owner-line span { display: block; }
.owner-line span { color: #666; font-size: .85rem; }

.area { color: white; background: #050505; }
.area-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.area h2 { margin-bottom: 28px; }
.area p:not(.eyebrow) { max-width: 620px; color: #aaa; }
.text-link { display: inline-block; margin-top: 25px; color: white; text-decoration: none; font-weight: 800; border-bottom: 1px solid #777; }
.text-link span { padding-left: 8px; }
.state-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.state-grid div { min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #393939; }
.state-grid div + div { border-left: 0; }
.state-grid strong { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1; }
.state-grid span { margin-top: 12px; color: #8a8a8a; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }

.contact { background: white; }
.contact-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-copy { padding-top: 20px; }
.contact-copy > p:not(.eyebrow) { color: #5b5b5b; font-size: 1.08rem; }
.contact-direct { margin-top: 50px; }
.contact-direct a { display: block; margin: 22px 0; text-decoration: none; font-weight: 700; }
.contact-direct span { display: block; margin-bottom: 2px; color: #777; font-size: .71rem; text-transform: uppercase; letter-spacing: .12em; }
.request-form { padding: 40px; background: var(--mist); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.request-form label { display: block; margin-bottom: 18px; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.request-form input, .request-form select, .request-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 12px;
  border: 1px solid #c3c3c0;
  border-radius: 0;
  background: white;
  color: black;
  text-transform: none;
  letter-spacing: normal;
  outline: none;
}
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: black; box-shadow: 0 0 0 1px black; }
.form-note { margin: 14px 0 0; color: #666; font-size: .72rem; }

.site-footer {
  padding: 60px max(28px, calc((100vw - var(--max)) / 2));
  color: white;
  background: #050505;
  display: grid;
  grid-template-columns: 1.2fr .6fr .7fr;
  gap: 50px;
  border-top: 1px solid #333;
}
.site-footer > div:first-child {
  width: max-content;
  max-width: 100%;
  justify-self: start;
  text-align: left;
}
.site-footer img { width: 245px; margin: 0 auto 18px; }
.site-footer p { margin: 5px 0; color: #999; font-size: .82rem; }
.footer-links a { display: block; margin: 10px 0; color: #ddd; text-decoration: none; font-weight: 700; }
.footer-meta { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (min-width: 901px) {
  .hero-mark > div { text-align: center; }
  .hero {
    height: calc(100vh - 78px);
    height: calc(100svh - 78px);
    min-height: 620px;
  }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero-grid { padding: 30px 28px 20px; gap: 48px; }
  .hero .eyebrow { margin-bottom: 10px; }
  .hero h1 { margin-bottom: 16px; font-size: clamp(2.7rem, 3.8vw, 4.15rem); line-height: .97; }
  .hero-lede { margin-bottom: 18px; font-size: .95rem; line-height: 1.4; }
  .hero .button { min-height: 48px; }
  .hero-mark img { width: min(180px, 62%); margin-bottom: 14px; }
  .hero-mark strong { margin: 3px 0; font-size: 1rem; }
  .proof-strip { padding-bottom: 12px; }
  .proof-strip div { padding: 8px 18px; }
}

@media (max-width: 900px) {
  .brand { width: 210px; }
  .menu-toggle { display: block; }
  #site-nav {
    display: none;
    position: absolute;
    inset: 78px 0 auto;
    padding: 25px 28px 30px;
    flex-direction: column;
    align-items: stretch;
    background: #080808;
    border-top: 1px solid #333;
  }
  #site-nav.open { display: flex; }
  #site-nav .nav-cta { text-align: center; }
  .hero-grid, .section-heading, .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-grid { padding-top: 80px; }
  .hero-mark { border-left: 0; border-top: 1px solid #454545; padding: 45px 0 0; display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 35px; }
  .hero-mark img { width: 180px; margin: 0; }
  .section-heading .eyebrow { margin-bottom: -32px; }
  .service-card { padding: 40px; }
  .about-statement { position: static; }
  .about-copy { padding-top: 0; }
}

@media (max-width: 680px) {
  .nav-shell { min-height: 70px; padding: 0 18px; }
  .brand { width: 180px; }
  #site-nav { top: 70px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 70px 20px 55px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  h1 span { color: white; -webkit-text-stroke: 0; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-mark { display: block; }
  .hero-mark img { width: 150px; margin: 0 0 28px; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 0 20px 20px; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .section { padding: 78px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading .eyebrow { margin-bottom: -28px; }
  .service-grid, .steps, .state-grid, .field-row, .site-footer { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 34px 25px; }
  .steps { border-top: 0; }
  .step, .step + .step { min-height: 0; padding: 30px 0; border-right: 0; border-top: 1px solid #3a3a3a; }
  .step > span { margin-bottom: 36px; }
  .state-grid div + div { border-left: 1px solid #393939; border-top: 0; }
  .request-form { padding: 28px 20px; }
  .site-footer { padding: 50px 20px; }
  .footer-meta { text-align: left; }
}
