:root {
  --ink: #181715;
  --navy: #071d49;
  --cobalt: #123db4;
  --blue: #2357d7;
  --green: #00511c;
  --gray: #dddddd;
  --paper: #ffffff;
  --muted: #5f6268;
  --line: rgba(24, 23, 21, .18);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 120px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid #5c83ff; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 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;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  padding: 12px 18px; background: var(--paper); color: var(--ink); font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  color: var(--paper); background: rgba(24,23,21,.98); border-bottom: 1px solid rgba(255,255,255,.2);
  transition: inset .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  inset: 0 0 auto;
  background: rgba(24,23,21,.96);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 28px rgba(7,29,73,.22);
}
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; transition: height .25s ease; }
.site-header.is-scrolled .nav-wrap { height: 58px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; font-size: 20px; text-decoration: none; letter-spacing: -.04em; }
.brand small { font-size: 10px; letter-spacing: .1em; vertical-align: top; }
.brand-mark {
  width: 44px; height: 44px; object-fit: cover; display: block;
  border: 1px solid rgba(255,255,255,.3); background: var(--paper);
  transition: width .25s ease, height .25s ease;
}
.site-header.is-scrolled .brand-mark { width: 36px; height: 36px; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { font-size: 14px; font-weight: 700; text-decoration: none; }
.site-nav a:not(.button):hover, .site-nav a:not(.button):focus-visible { color: #9ab3ff; }
.nav-item { position: relative; display: flex; align-items: center; gap: 5px; }
.nav-item > a[aria-current="page"] { color: #9ab3ff; }
.dropdown-toggle {
  display: none; place-items: center; padding: 0; border: 0;
  color: inherit; background: transparent; cursor: pointer;
}
.dropdown-label { white-space: nowrap; }
.dropdown {
  position: absolute; top: calc(100% + 20px); left: -18px; width: max-content; min-width: 180px;
  display: grid; visibility: hidden; opacity: 0; transform: translateY(-6px);
  padding: 9px; color: var(--ink); background: var(--paper); border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--cobalt); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.site-header.is-scrolled .dropdown { top: calc(100% + 14px); }
.dropdown a { padding: 10px 12px; }
.dropdown a:hover, .dropdown a:focus-visible { color: var(--navy) !important; background: #e8eee9; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.dropdown-open .dropdown {
  visibility: visible; opacity: 1; transform: translateY(0);
}
.secondary-nav { transition: max-height .25s ease, opacity .2s ease; }
.secondary-nav .shell { min-height: 39px; display: flex; align-items: center; justify-content: flex-end; gap: 27px; }
.secondary-nav a { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; text-decoration: none; }
.secondary-nav a:hover, .secondary-nav a:focus-visible { color: #a5d5b5; }
.site-header.is-scrolled .secondary-nav { max-height: 29px; opacity: 1; }
.site-header.is-scrolled .secondary-nav .shell { min-height: 28px; }
.nav-toggle { display: none; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 52px;
  padding: 0 23px; border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
  font-size: 14px; font-weight: 850; text-decoration: none; box-shadow: 5px 5px 0 var(--cobalt);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--cobalt); background: var(--gray); }
.button-small { min-height: 40px; padding: 0 17px; box-shadow: none; border-color: var(--paper); }

.hero {
  position: relative; overflow: hidden; padding-top: 127px; color: var(--paper);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  width: 48vw; height: 1px; background: var(--blue); transform-origin: right center;
}
.hero::before { right: -8vw; top: 24%; transform: rotate(-28deg); }
.hero::after { right: -4vw; top: 44%; transform: rotate(19deg); }
.hero-grid { position: relative; z-index: 1; min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; padding-block: 70px; }
.eyebrow { margin: 0 0 22px; color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow.light { color: #8cabff; }
.hero .eyebrow { color: #9ab3ff; }
.hero h1 {
  max-width: 730px; margin: 0; font-size: clamp(64px, 7.6vw, 112px); line-height: .82;
  letter-spacing: -.075em; text-transform: uppercase; font-weight: 900;
}
.hero h1 em { color: #5c83ff; font-style: normal; }
.hero-lede { max-width: 620px; margin: 34px 0 0; color: rgba(255,255,255,.72); font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.text-link { color: var(--paper); font-size: 14px; font-weight: 800; text-underline-offset: 5px; }
.hero-panel {
  position: relative; min-height: 510px; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; padding: 42px; color: var(--paper); background: var(--navy);
  border: 1px solid rgba(255,255,255,.35); clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 0 100%);
  box-shadow: inset 8px 0 0 var(--cobalt);
}
.hero-panel::before {
  content: ""; position: absolute; inset: 15px; border: 1px solid rgba(255,255,255,.13);
  clip-path: polygon(0 0, 79% 0, 100% 21%, 100% 100%, 0 100%); pointer-events: none;
}
.hero-brand-mark {
  position: absolute; width: 280px; height: 280px; object-fit: cover; top: -38px; right: -30px;
  opacity: .17; mix-blend-mode: screen; filter: grayscale(1) contrast(1.5);
}
.code-field {
  position: absolute; top: 48px; left: 42px; z-index: 1; display: grid; gap: 8px;
  color: #8cabff; font: 10px/1.4 "Courier New", monospace; opacity: .7;
}
.panel-kicker { position: relative; margin: 0 0 16px; color: #9ab3ff; font: 700 11px/1.2 "Courier New", monospace; text-transform: uppercase; letter-spacing: .17em; }
.hero-panel ul { position: relative; margin: 0; padding: 0; list-style: none; }
.hero-panel li { display: flex; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.24); font-size: 18px; font-weight: 800; }
.hero-panel li span { padding-top: 3px; color: #8cabff; font: 700 10px/1 "Courier New", monospace; letter-spacing: .1em; }
.panel-note { position: relative; margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 750; }
.audience-strip { position: relative; z-index: 2; color: var(--paper); background: var(--green); border-top: 1px solid rgba(255,255,255,.2); }
.audience-strip .shell { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.audience-strip i { width: 18px; height: 1px; background: rgba(255,255,255,.55); transform: rotate(-45deg); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: start; }
h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .98; letter-spacing: -.055em; }
.intro {
  background-color: var(--gray);
  background-image: radial-gradient(rgba(7,29,73,.14) 1px, transparent 1px);
  background-size: 18px 18px;
}
.intro .split > div:first-child { padding: 36px; background: var(--paper); border-left: 7px solid var(--cobalt); }
.intro-copy { padding-top: 38px; font-size: 19px; }
.intro-copy > p:first-child { margin-top: 0; }
.pull-quote { margin: 34px 0 0; padding: 22px 0 0 28px; border-top: 1px solid rgba(24,23,21,.35); border-left: 5px solid var(--green); font-weight: 800; }
.section-heading { display: grid; grid-template-columns: 1.7fr .7fr; gap: 12%; align-items: end; margin-bottom: 54px; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.service-card { position: relative; min-height: 500px; padding: 34px; border-right: 1px solid var(--ink); background: var(--paper); }
.service-card:hover { box-shadow: inset 0 -5px 0 rgba(0,81,28,.45); }
.service-card:last-child { border-right: 0; }
.service-card.featured { color: var(--paper); background: var(--navy); transform: translateY(-16px); box-shadow: 0 16px 0 var(--green); }
.card-number { position: absolute; top: 20px; right: 22px; color: var(--muted); font: 700 11px/1 "Courier New", monospace; }
.featured .card-number { color: #9ab3ff; }
.service-icon {
  width: 70px; height: 70px; display: grid; place-items: center; margin: 42px 0 70px;
  border: 1px solid currentColor; color: var(--cobalt); font: 900 22px/1 "Courier New", monospace;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
}
.featured .service-icon { color: #8cabff; }
.service-card h3 { max-width: 290px; margin: 0; font-size: 26px; line-height: 1.05; letter-spacing: -.035em; }
.service-card p { min-height: 73px; color: var(--muted); }
.featured p { color: rgba(255,255,255,.7); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 5px 9px; border: 1px solid var(--line); font: 700 11px/1.4 "Courier New", monospace; }
.featured .tag-list li { border-color: rgba(255,255,255,.25); }

.recovery { position: relative; overflow: hidden; color: var(--paper); background: var(--ink); }
.recovery::after {
  content: ""; position: absolute; width: 600px; height: 600px; right: -280px; bottom: -380px;
  border: 1px solid var(--cobalt); transform: rotate(45deg); pointer-events: none;
}
.recovery-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 11%; align-items: start; }
.recovery-lead { position: sticky; top: 40px; }
.recovery-lead h2 { color: #8cabff; }
.recovery-lead > p:not(.eyebrow) { max-width: 470px; margin: 28px 0 35px; color: rgba(255,255,255,.68); font-size: 18px; }
.button-light { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: 5px 5px 0 var(--green); }
.capability-list article { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.23); }
.capability-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.23); }
.capability-list article > span { color: #8cabff; font: 700 11px/1.4 "Courier New", monospace; }
.capability-list h3 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.capability-list p { margin: 7px 0 0; color: rgba(255,255,255,.6); }

.ai-section { overflow: hidden; background: var(--gray); }
.ai-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9%; align-items: center; }
.ai-visual { position: relative; aspect-ratio: 1; }
.ai-visual::before {
  content: ""; position: absolute; inset: 5%; background-image: radial-gradient(var(--cobalt) 1px, transparent 1px);
  background-size: 17px 17px; opacity: .18; clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%);
}
.ai-visual svg { position: relative; width: 100%; height: 100%; fill: none; stroke: rgba(7,29,73,.32); stroke-width: 1.5; animation: spin 50s linear infinite; }
.signal-core {
  position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 165px; height: 165px; display: grid; place-content: center;
  text-align: center; color: var(--paper); background: var(--navy); transform: translate(-50%, -50%);
  clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
}
.signal-core span { font-size: 50px; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.signal-core small { margin-top: 10px; font-weight: 750; }
.signal {
  position: absolute; z-index: 3; padding: 9px 13px; border: 1px solid var(--ink);
  background: var(--paper); font: 700 11px/1.3 "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em;
}
.signal-a { top: 13%; left: 4%; }.signal-b { top: 20%; right: 0; }.signal-c { bottom: 14%; left: 12%; }
@keyframes spin { to { transform: rotate(360deg); } }
.ai-copy > p:not(.eyebrow) { max-width: 630px; margin: 26px 0 35px; font-size: 18px; }
.ai-offers { border-top: 1px solid rgba(24,23,21,.32); }
.ai-offers p { display: grid; grid-template-columns: 1fr 1.35fr; gap: 24px; margin: 0; padding: 18px 0; border-bottom: 1px solid rgba(24,23,21,.32); }
.ai-offers strong { color: var(--navy); }
.ai-offers span { color: #4f535b; font-size: 14px; }

.process { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.process-list li { position: relative; min-height: 260px; padding: 25px 20px 20px 0; border-right: 1px solid var(--line); }
.process-list li::after { content: ""; position: absolute; top: 0; left: 0; width: 45%; height: 4px; background: linear-gradient(90deg, var(--cobalt), var(--green)); }
.process-list li + li { padding-left: 20px; }
.process-list li + li::after { left: 20px; }
.process-list li:last-child { border-right: 0; }
.process-list span { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 70px; color: var(--paper); background: var(--navy); font: 700 12px/1 "Courier New", monospace; }
.process-list h3 { margin: 0; font-size: 19px; line-height: 1.15; letter-spacing: -.025em; }
.process-list p { color: var(--muted); font-size: 14px; }

.contact { background: var(--gray); }
.contact-card {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .8fr; gap: 10%; padding: 74px;
  color: var(--paper); background: var(--navy); border: 1px solid var(--ink); box-shadow: 14px 14px 0 var(--green);
  clip-path: polygon(0 0, calc(100% - 58px) 0, 100% 58px, 100% 100%, 0 100%);
}
.contact-card::before {
  content: ""; position: absolute; width: 330px; height: 1px; top: 74px; right: -70px;
  background: #5c83ff; transform: rotate(-42deg);
}
.contact-card h2 { max-width: 650px; }
.contact-card > div:first-child > p:last-child { max-width: 600px; margin-top: 25px; color: rgba(255,255,255,.68); font-size: 17px; }
.contact-link { position: relative; display: block; padding: 18px 38px 18px 0; border-bottom: 1px solid rgba(255,255,255,.25); text-decoration: none; }
.contact-link:first-child { border-top: 1px solid rgba(255,255,255,.25); }
.contact-link span { display: block; color: #9ab3ff; font: 700 10px/1.4 "Courier New", monospace; text-transform: uppercase; letter-spacing: .15em; }
.contact-link strong { display: block; overflow-wrap: anywhere; margin-top: 5px; font-size: 17px; }
.contact-link i { position: absolute; top: 28px; right: 4px; color: #8cabff; font-size: 22px; font-style: normal; }
.contact-link:hover strong { color: #9ab3ff; }
.consultant { margin: 38px 0 0; color: rgba(255,255,255,.65); font-size: 14px; }
.consultant strong { color: var(--paper); font-size: 17px; }

.page-hero {
  min-height: 520px; display: flex; align-items: center; padding: 190px 0 80px; color: var(--paper);
  background-color: var(--ink);
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 9%; align-items: end; }
.page-hero h1, .quote-copy h1 { margin: 0; font-size: clamp(58px, 7.2vw, 100px); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; }
.page-hero h1 em { color: #5c83ff; font-style: normal; }
.page-hero-grid > p { margin: 0 0 8px; padding-left: 24px; color: rgba(255,255,255,.7); border-left: 4px solid #4f9b68; font-size: 18px; }
.team { background: var(--gray); }
.profile-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9%; align-items: center; }
.profile-mark { position: relative; padding: 13%; background: var(--navy); box-shadow: 12px 12px 0 var(--green); }
.profile-mark::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.profile-mark img { display: block; width: 100%; height: auto; filter: grayscale(1) contrast(1.35); opacity: .9; }
.profile-grid article { max-width: 680px; }
.profile-grid .role { margin: 22px 0 30px; padding-left: 18px; color: var(--navy); border-left: 4px solid var(--green); font-weight: 800; }
.profile-grid article > p:not(.eyebrow):not(.role) { font-size: 18px; }
.profile-grid .button { margin-top: 20px; }
.experimental { min-height: 560px; background: var(--gray); }
.construction-card { position: relative; padding: 70px; background: var(--paper); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--green); }
.construction-card::after { content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: linear-gradient(135deg, transparent 49%, var(--cobalt) 50%); opacity: .12; }
.construction-index { position: absolute; top: 32px; right: 34px; color: var(--muted); font: 700 11px/1 "Courier New", monospace; text-transform: uppercase; letter-spacing: .1em; }
.construction-card h2 { max-width: 850px; }
.construction-card > p:last-child { margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.quote-main { padding-top: 88px; color: var(--paper); background: var(--ink); }
.quote-section { min-height: calc(100vh - 88px); background: var(--navy); }
.quote-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7%; align-items: start; }
.quote-copy { position: sticky; top: 105px; }
.quote-copy h1 { font-size: clamp(48px, 5.5vw, 78px); }
.quote-copy > p:not(.eyebrow) { margin: 28px 0 36px; color: rgba(255,255,255,.7); font-size: 18px; }
.booking-card { min-height: 720px; padding: 32px; color: var(--ink); background: var(--paper); box-shadow: 12px 12px 0 var(--green); }
#inline-widget-30-minute-quote { min-height: 650px; }
.booking-card noscript a { color: var(--cobalt); font-weight: 800; }
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card, .contact-link, .profile-mark { transition: transform .22s ease, box-shadow .22s ease; }
.profile-mark:hover { transform: translateY(-4px); box-shadow: 12px 16px 0 var(--green); }

.site-footer { padding: 28px 0; color: var(--paper); background: var(--ink); border-top: 4px solid var(--cobalt); }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 25px; }
.footer-grid > p { margin: 0; font: 700 10px/1.5 "Courier New", monospace; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid > p:last-child { text-align: right; }
.footer-grid i { display: inline-block; width: 11px; height: 1px; margin: 0 7px 3px; background: #8cabff; transform: rotate(-45deg); }
.footer-brand { font-size: 15px; }.footer-brand .brand-mark { width: 34px; height: 34px; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .nav-toggle { position: relative; z-index: 2; display: grid; gap: 6px; width: 44px; height: 44px; place-content: center; border: 1px solid rgba(255,255,255,.4); color: inherit; background: var(--ink); }
  .nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: currentColor; transition: transform .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; inset: 0; min-height: 100vh; display: none; align-content: start; align-items: stretch; gap: 0; padding: 100px 24px 34px; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.2); overflow-y: auto; }
  .site-nav.open { display: grid; }
  .nav-item { display: grid; grid-template-columns: 1fr auto; border-top: 1px solid rgba(255,255,255,.18); }
  .nav-item > a { padding: 18px 0; font-size: 18px; }
  .dropdown-toggle { width: auto; height: 58px; display: grid; padding-left: 18px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
  .dropdown { position: static; grid-column: 1 / -1; width: 100%; max-height: 0; min-width: 0; overflow: hidden; padding: 0 0 0 16px; visibility: visible; opacity: 1; transform: none; color: var(--paper); background: transparent; border: 0; box-shadow: none; transition: max-height .22s ease, padding .22s ease; }
  .dropdown a { padding: 11px 0; color: rgba(255,255,255,.72); visibility: hidden; }
  .has-dropdown.dropdown-open .dropdown { max-height: 250px; padding-bottom: 15px; }
  .has-dropdown.dropdown-open .dropdown a { visibility: visible; }
  .site-nav > .button { margin-top: 24px; }
  .secondary-nav .shell { justify-content: flex-start; overflow-x: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 90px 70px; }
  .hero-panel { min-height: 480px; max-width: 550px; width: 100%; margin-inline: auto; }
  .split, .section-heading, .recovery-grid, .ai-grid, .contact-card, .page-hero-grid, .profile-grid, .quote-grid { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .section-heading { gap: 25px; }
  .section-heading > p { max-width: 560px; }
  .service-grid { grid-template-columns: 1fr; border: 0; gap: 16px; }
  .service-card { min-height: auto; border: 1px solid var(--ink); }
  .service-card.featured { transform: none; }
  .service-icon { margin-bottom: 45px; }
  .service-card p { min-height: auto; }
  .recovery-lead { position: static; margin-bottom: 45px; }
  .ai-visual { max-width: 500px; width: 100%; margin-inline: auto; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 220px; border-bottom: 1px solid var(--line); }
  .process-list span { margin-bottom: 40px; }
  .contact-card { gap: 45px; padding: 50px; }
  .page-hero { min-height: 490px; padding-top: 180px; }
  .page-hero-grid { gap: 38px; }
  .page-hero-grid > p { max-width: 600px; }
  .profile-mark { max-width: 500px; }
  .quote-copy { position: static; }
  .quote-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { margin-inline: auto; }
  .footer-grid > p:last-child { text-align: center; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 68px 0; }
  h2 { font-size: 42px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding-top: 127px; }
  .hero-grid { min-height: auto; gap: 60px; padding-block: 76px 56px; }
  .hero h1 { font-size: clamp(45px, 14.5vw, 64px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-panel { min-height: 440px; padding: 28px; clip-path: polygon(0 0, 78% 0, 100% 16%, 100% 100%, 0 100%); }
  .code-field { top: 38px; left: 28px; font-size: 8px; }
  .hero-brand-mark { width: 230px; height: 230px; }
  .hero-panel li { font-size: 15px; }
  .audience-strip .shell { justify-content: center; flex-wrap: wrap; padding: 11px 0; gap: 8px 14px; }
  .audience-strip i { width: 10px; }
  .intro .split > div:first-child { padding: 28px 24px; }
  .intro-copy { font-size: 17px; }
  .service-card { padding: 27px; }
  .ai-offers p { grid-template-columns: 1fr; gap: 5px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { min-height: auto; padding: 22px 0; border-right: 0; }
  .process-list li + li::after { left: 0; }
  .process-list span { margin-bottom: 24px; }
  .contact-card { padding: 42px 24px; box-shadow: 8px 8px 0 var(--green); clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%); }
  .contact-link strong { font-size: 15px; }
  .secondary-nav .shell { gap: 20px; }
  .page-hero { min-height: 450px; padding: 175px 0 60px; }
  .page-hero h1 { font-size: clamp(38px, 11vw, 46px); }
  .profile-mark { box-shadow: 8px 8px 0 var(--green); }
  .construction-card { padding: 54px 24px 42px; box-shadow: 8px 8px 0 var(--green); }
  .construction-index { position: static; display: block; margin-bottom: 30px; }
  .booking-card { min-height: 680px; padding: 18px 8px; box-shadow: 8px 8px 0 var(--green); }
  .booking-card > .eyebrow { padding-left: 12px; }
}

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