:root {
  --ink: #181815;
  --ink-soft: #24231f;
  --paper: #f3eee5;
  --paper-deep: #e5ddd0;
  --paper-light: #faf7f0;
  --oxblood: #64191b;
  --red: #9e2928;
  --red-bright: #bd3c36;
  --camel: #b69774;
  --muted: #716a60;
  --line: rgba(30, 28, 25, .17);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --typewriter: "Special Elite", "Courier New", monospace;
  --page: min(1380px, calc(100vw - 64px));
  --shadow: 0 22px 70px rgba(19, 12, 7, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--oxblood); color: var(--paper-light); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  z-index: 1000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.availability {
  min-height: 34px;
  padding: 6px max(24px, calc((100vw - 1380px) / 2));
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #eee7dd;
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.availability span:first-child::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: #cc5550;
  box-shadow: 0 0 0 3px rgba(204, 85, 80, .14);
}
.availability a { color: #d7b0a9; text-underline-offset: 3px; }

.site-header {
  height: 88px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 241, 232, .97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { height: 74px; box-shadow: 0 8px 30px rgba(21, 16, 11, .1); }
.brand { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 34px; letter-spacing: -.045em; }
.brand-line { margin-top: 8px; color: var(--oxblood); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.site-nav > a {
  position: relative;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 19px; color: #fff; background: var(--oxblood); transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--red); transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 122px));
  overflow: hidden;
  color: var(--paper-light);
  background: #17120f;
}
.hero-image { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, .96) 0%, rgba(16, 13, 11, .84) 33%, rgba(16, 13, 11, .28) 65%, rgba(16, 13, 11, .08) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, .62), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0 150px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--oxblood);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.eyebrow.light { color: #dfa29b; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6.2vw, 102px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
}
.red-rule { width: 82px; height: 3px; margin: 28px 0 25px; background: var(--red-bright); transform: rotate(-1.5deg); }
.hero-lede { max-width: 540px; margin: 0; color: #e8dfd4; font-family: var(--serif); font-size: clamp(20px, 1.8vw, 27px); line-height: 1.35; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.button {
  min-height: 50px;
  padding: 14px 23px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); }
.button-red { color: #fff; background: var(--oxblood); }
.button-red:hover { background: var(--red); }
.text-link { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-underline-offset: 5px; text-transform: uppercase; }
.light-link { color: #eee4d9; }
.proof-seal {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 115px;
  width: 152px;
  height: 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #d64943;
  border: 2px solid currentColor;
  border-radius: 50%;
  outline: 1px solid currentColor;
  outline-offset: -8px;
  font-size: 10px;
  letter-spacing: .19em;
  text-transform: uppercase;
  transform: rotate(-7deg);
  opacity: .88;
}
.proof-seal::before, .proof-seal::after { content: "•"; position: absolute; top: 65px; font-size: 14px; }
.proof-seal::before { left: 17px; } .proof-seal::after { right: 17px; }
.proof-seal strong { margin: 8px 0; padding: 3px 12px; border-top: 1px solid; border-bottom: 1px solid; font-size: 15px; letter-spacing: .08em; }
.hero-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 62px;
  padding: 0 calc((100vw - min(1380px, calc(100vw - 64px))) / 2);
  display: flex;
  align-items: center;
  gap: 0;
  color: #cfc2b5;
  border-top: 1px solid rgba(255,255,255,.19);
  background: rgba(14, 12, 10, .58);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-caption span { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.hero-caption span:last-child { border: 0; }

.paper-section {
  position: relative;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(89,65,36,.035) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(89,65,36,.025) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px;
}
.services { padding: clamp(90px, 9vw, 140px) max(32px, calc((100vw - 1380px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.1fr .75fr; gap: 8vw; align-items: end; margin-bottom: 58px; }
.section-heading h2, .resources h2, .faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 70px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.03;
}
.section-intro { max-width: 520px; margin: 0 0 6px; color: #615a50; font-size: 16px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { position: relative; padding: 46px clamp(28px, 3vw, 48px) 42px; border-right: 1px solid var(--line); transition: background .25s, transform .25s; }
.service-card:first-child { padding-left: 0; }
.service-card:last-child { padding-right: 0; border-right: 0; }
.service-card.featured { background: rgba(255,255,255,.34); }
.service-card:hover { background: rgba(255,255,255,.5); }
.service-number { margin-bottom: 38px; font-family: var(--serif); font-size: 22px; }
.proof-mark { position: absolute; top: 27px; right: 28px; color: var(--red); font-family: var(--serif); font-size: 30px; transform: rotate(-8deg); }
.circle-mark { width: 43px; height: 34px; border: 1.5px solid; border-radius: 50%; text-align: center; line-height: 31px; }
.card-kicker { margin: 0 0 6px; color: var(--red); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.service-card h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(30px, 2.5vw, 42px); font-weight: 400; letter-spacing: -.03em; }
.service-card > p:not(.card-kicker) { min-height: 80px; margin: 0 0 26px; color: #625c53; line-height: 1.65; }
.service-card ul { margin: 0 0 35px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-card li { padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid rgba(30,28,25,.08); font-size: 13px; }
.service-card li::before { content: "—"; position: absolute; left: 0; color: var(--red); }
.card-link { color: var(--oxblood); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; text-underline-offset: 4px; }
.scope-note { margin: 28px 0 0; color: #72695d; font-family: var(--serif); font-size: 16px; text-align: center; }
.scope-note span { margin-right: 8px; color: var(--red); }

.about-section { min-height: 760px; display: grid; grid-template-columns: 1fr 1.13fr; color: #f3ece2; background: var(--ink); }
.about-copy { padding: clamp(80px, 8vw, 130px) clamp(44px, 8vw, 130px) clamp(80px, 8vw, 130px) max(32px, calc((100vw - 1380px) / 2)); background: radial-gradient(circle at 15% 20%, #6c1c20, #3e1213 55%, #271011 100%); }
.about-copy h2 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 5vw, 78px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.about-lede { margin: 0 0 20px; color: #fff; font-family: var(--serif); font-size: 23px; line-height: 1.4; }
.about-copy > p:not(.eyebrow):not(.about-lede) { max-width: 690px; color: #d3c4b9; font-size: 14px; line-height: 1.8; }
.credential-row { margin-top: 44px; padding-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.credential-row span { color: #bda9a0; font-size: 9px; letter-spacing: .13em; line-height: 1.7; text-transform: uppercase; }
.credential-row strong { color: #f6eee5; font-size: 11px; font-weight: 500; }
.about-image-wrap { position: relative; margin: 0; overflow: hidden; background: #15130f; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .88; }
.about-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,16,12,.25), transparent 28%), linear-gradient(0deg, rgba(14,12,10,.86), transparent 35%); }
.about-image-wrap figcaption { position: absolute; z-index: 2; right: 12%; bottom: 70px; left: 12%; color: #f5ece0; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 58px); line-height: 1.05; }
.tape { position: absolute; z-index: 3; top: 54px; left: 50%; width: 90px; height: 25px; background: rgba(224, 205, 167, .47); transform: translateX(-50%) rotate(-4deg); }

.process { padding: clamp(90px, 9vw, 140px) max(32px, calc((100vw - 1380px) / 2)); }
.section-heading.compact { margin-bottom: 48px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 138px; display: grid; grid-template-columns: 120px 1fr; align-items: center; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.process-list li:hover { padding: 0 24px; background: rgba(255,255,255,.42); }
.step-num { color: var(--red); font-family: var(--typewriter); font-size: 13px; }
.process-list div { display: grid; grid-template-columns: 1fr 1.1fr; gap: 8vw; align-items: center; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(29px, 3vw, 43px); font-weight: 400; }
.process-list p { margin: 0; color: #645d53; }

.evidence-section { padding: clamp(80px, 9vw, 130px) max(32px, calc((100vw - 1200px) / 2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: center; color: #ece3d9; background: linear-gradient(115deg, #171714, #28241e); }
.evidence-note { position: relative; padding: 55px 48px; color: var(--ink); background: #e8dece; box-shadow: var(--shadow); transform: rotate(-1deg); }
.evidence-note::after { content: "No. 27"; position: absolute; top: 31px; right: 25px; color: var(--red); font-family: var(--typewriter); font-size: 12px; letter-spacing: .12em; writing-mode: vertical-rl; }
.evidence-note h2 { margin: 0 0 15px; font-family: var(--serif); font-size: clamp(42px, 4vw, 62px); font-weight: 400; line-height: 1; }
.evidence-note > p:last-child { margin: 0; color: #5b554d; }
.paperclip { position: absolute; top: -31px; left: 42px; width: 20px; height: 65px; border: 3px solid #9b8f80; border-radius: 12px; transform: rotate(4deg); }
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 45px; }
.checklist > div { padding: 28px 0; display: grid; grid-template-columns: 38px 1fr; border-bottom: 1px solid rgba(255,255,255,.14); }
.checklist span { grid-row: 1 / 3; color: #d24a44; font-family: var(--serif); font-size: 25px; }
.checklist strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.checklist small { color: #afa69a; font-size: 12px; }

.resources { padding: clamp(90px, 9vw, 135px) max(32px, calc((100vw - 1380px) / 2)); }
.resources-header { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.resources-header > p { max-width: 430px; margin: 0 0 6px; color: var(--muted); }
.resource-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.resource-list article { min-height: 310px; padding: 39px 42px 38px 0; border-right: 1px solid var(--line); }
.resource-list article + article { padding-left: 42px; }
.resource-list article:last-child { padding-right: 0; border: 0; }
.resource-list article > span { color: var(--red); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.resource-list h3 { margin: 26px 0 12px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.12; }
.resource-list p { color: var(--muted); font-size: 14px; }
.resource-list a { display: inline-block; margin-top: 16px; color: var(--oxblood); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; text-underline-offset: 4px; }

.faq { padding: 10px max(32px, calc((100vw - 1380px) / 2)) clamp(100px, 10vw, 160px); display: grid; grid-template-columns: .62fr 1fr; gap: 10vw; }
.faq-intro > p:last-child { max-width: 330px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 25px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 23px; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--red); font-family: var(--sans); font-size: 24px; font-weight: 300; transition: transform .25s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -5px 45px 24px 0; color: var(--muted); font-size: 14px; }

.contact-section { padding: clamp(85px, 9vw, 135px) max(32px, calc((100vw - 1380px) / 2)); display: grid; grid-template-columns: .8fr 1fr; gap: 9vw; color: #f1e7dc; background: radial-gradient(circle at 10% 10%, #672023, #421415 46%, #1b1715 100%); }
.contact-copy h2 { max-width: 640px; margin: 0 0 25px; font-family: var(--serif); font-size: clamp(48px, 5vw, 79px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.contact-copy > p:not(.eyebrow) { max-width: 590px; color: #cfbdb4; }
.direct-email { display: inline-flex; gap: 18px; margin-top: 20px; color: #fff; font-family: var(--serif); font-size: 22px; text-underline-offset: 5px; }
.contact-promise { margin-top: 54px; padding-top: 30px; display: flex; gap: 19px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-promise p { margin: 0; color: #bdaaa0; font-size: 12px; }
.contact-promise strong { color: #f2e6dc; font-size: 13px; }
.check-stamp { width: 44px; height: 44px; flex: 0 0 44px; color: #dc615b; border: 1.5px solid; display: grid; place-items: center; font-size: 24px; transform: rotate(-5deg); }
.project-form { padding: clamp(32px, 4vw, 58px); color: var(--ink); background: var(--paper); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.project-form label { display: block; margin-bottom: 19px; color: #554f47; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.project-form input, .project-form select, .project-form textarea { width: 100%; margin-top: 7px; padding: 13px 12px; color: var(--ink); border: 1px solid #aaa094; border-radius: 0; outline: 0; background: rgba(255,255,255,.3); font-size: 14px; text-transform: none; letter-spacing: 0; transition: border .2s, box-shadow .2s; }
.project-form input, .project-form select { height: 48px; }
.project-form textarea { resize: vertical; min-height: 125px; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(158,41,40,.12); }
.project-form .button { width: 100%; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.site-footer { padding: 72px max(32px, calc((100vw - 1380px) / 2)) 28px; display: grid; grid-template-columns: 1fr 1fr .5fr; gap: 40px; color: #e8dfd5; background: #121210; }
.brand.inverted .brand-line { color: #d58a84; }
.footer-brand p { color: #817b73; font-family: var(--serif); }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 35px; align-content: start; }
.site-footer nav a { color: #bdb5ab; font-size: 10px; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.site-footer nav a:hover { color: #fff; }
.footer-mark { display: flex; align-items: center; justify-content: flex-end; font-family: var(--serif); font-size: 48px; }
.footer-mark i { width: 1px; height: 65px; margin: 0 13px; background: #a02d2b; }
.footer-bottom { grid-column: 1 / -1; margin-top: 28px; padding-top: 24px; display: flex; justify-content: space-between; color: #6e6962; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

@media (max-width: 1050px) {
  :root { --page: calc(100vw - 48px); }
  .site-header { padding-inline: 24px; }
  .site-nav { gap: 18px; }
  .proof-seal { right: 4%; width: 130px; height: 130px; font-size: 8px; }
  .proof-seal::before, .proof-seal::after { top: 54px; }
  .service-card { padding-inline: 26px; }
  .service-card:first-child { padding-left: 0; }
  .service-card:last-child { padding-right: 0; }
  .about-section { grid-template-columns: 1fr; }
  .about-copy { padding-left: 40px; }
  .about-image-wrap { min-height: 620px; }
  .evidence-section { grid-template-columns: 1fr; }
  .evidence-note { max-width: 620px; }
  .faq { gap: 6vw; }
  .contact-section { gap: 5vw; }
}

@media (max-width: 820px) {
  .availability { justify-content: space-between; padding-inline: 18px; }
  .site-header { height: 72px; }
  .brand-name { font-size: 28px; }
  .brand-line { margin-top: 6px; font-size: 8px; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
  }
  .nav-toggle > span:not(.sr-only) { width: 100%; height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 106px 0 0;
    padding: 50px 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s, transform .2s;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .site-nav .nav-cta { margin-top: 30px; color: #fff; text-align: center; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
  .hero { min-height: 740px; }
  .hero-image { object-position: 63% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(10,9,8,.94), rgba(10,9,8,.69) 65%, rgba(10,9,8,.25)); }
  .hero-content { padding-top: 100px; }
  .proof-seal { display: none; }
  .section-heading, .resources-header, .faq, .contact-section { grid-template-columns: 1fr; }
  .section-heading { gap: 30px; }
  .service-grid, .resource-list { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child, .service-card:last-child { padding: 38px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card.featured { background: none; }
  .service-card > p:not(.card-kicker) { min-height: 0; }
  .process-list li { grid-template-columns: 70px 1fr; padding-block: 30px; }
  .process-list li:hover { padding: 30px 14px; }
  .process-list div { grid-template-columns: 1fr; gap: 8px; }
  .checklist { gap: 0 25px; }
  .resources-header { display: grid; align-items: initial; }
  .resource-list article, .resource-list article + article, .resource-list article:last-child { min-height: auto; padding: 36px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .resource-list article:last-child { border-bottom: 0; }
  .faq { padding-top: 30px; }
  .contact-section { gap: 55px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-mark { display: none; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 36px); }
  body { font-size: 15px; }
  .availability { min-height: 32px; justify-content: center; font-size: 9px; }
  .availability > span { display: none; }
  .site-header { padding-inline: 18px; }
  .site-nav { inset: 104px 0 0; }
  .hero { min-height: 710px; }
  .hero-image { object-position: 67% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(9,8,7,.96), rgba(9,8,7,.76)); }
  .hero-content { padding: 90px 0 120px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-lede { max-width: 94%; font-size: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-caption { padding: 0 10px; }
  .hero-caption span { padding: 0 7px; font-size: 7px; letter-spacing: .1em; }
  .services, .process, .resources { padding-inline: 18px; }
  .section-heading h2, .resources h2, .faq h2 { font-size: 44px; }
  .about-copy { padding: 80px 18px; }
  .about-copy h2 { font-size: 49px; }
  .credential-row { grid-template-columns: 1fr; }
  .about-image-wrap { min-height: 480px; }
  .about-image-wrap figcaption { font-size: 38px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .evidence-section { padding-inline: 18px; }
  .evidence-note { padding: 48px 30px; }
  .checklist { grid-template-columns: 1fr; }
  .faq { padding-inline: 18px; }
  summary { font-size: 20px; }
  .contact-section { padding-inline: 18px; }
  .contact-copy h2 { font-size: 50px; }
  .direct-email { font-size: 18px; word-break: break-all; }
  .project-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding-inline: 18px; grid-template-columns: 1fr; }
  .site-footer nav { margin-top: 10px; }
  .footer-bottom { gap: 15px; flex-direction: column; }
}

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