:root {
  --ink: #0b1f33;
  --ink-deep: #071726;
  --ink-mid: #173a58;
  --blue: #176fa8;
  --blue-bright: #46a7eb;
  --blue-soft: #e5f3fc;
  --amber: #e5a93d;
  --amber-deep: #9c6413;
  --green: #247f5f;
  --paper: #f4f7f9;
  --paper-deep: #e7edf1;
  --white: #ffffff;
  --text: #1d2b38;
  --muted: #596b79;
  --line: #cbd7df;
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 48px rgba(7, 23, 38, 0.14);
  --shadow-small: 0 10px 24px rgba(7, 23, 38, 0.1);
  --shell: 1200px;
  --radius: 6px;
  --section: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 58px;
  font-weight: 800;
}

h2 {
  font-size: 40px;
  font-weight: 750;
}

h3 {
  font-size: 23px;
  font-weight: 750;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink-deep);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.topline {
  background: var(--ink-deep);
  color: #dbe7f0;
  font-size: 13px;
}

.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.topline__divider {
  width: 1px;
  height: 14px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.28);
}

.topline a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.topline__icon {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(11, 31, 51, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 274px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: block;
  width: 274px;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.site-nav a {
  position: relative;
  color: #e6eef4;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-current {
  color: var(--white);
}

.site-nav .site-nav__cta {
  display: none;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: #f0bc5c;
  transform: translateY(-1px);
}

.header-cta__icon {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero--compact {
  min-height: 570px;
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 23, 38, 0.96) 0%, rgba(7, 23, 38, 0.86) 48%, rgba(7, 23, 38, 0.24) 100%);
}

.hero__content {
  padding-top: 110px;
  padding-bottom: 86px;
}

.hero__content h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__summary {
  max-width: 720px;
  margin-bottom: 28px;
  color: #dbe7f0;
  font-size: 22px;
  line-height: 1.55;
}

.hero__credibility {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  color: #dbe7f0;
  font-size: 13px;
  font-weight: 700;
}

.hero__credibility span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__credibility svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9bd4f7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--amber);
  color: var(--ink-deep);
}

.button--primary:hover {
  background: #f0bc5c;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 23, 38, 0.45);
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(7, 23, 38, 0.76);
}

.button--ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip__grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.proof-strip__grid > div:first-child {
  padding-left: 0;
}

.proof-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--blue);
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof-strip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 16px;
}

.section {
  padding-block: var(--section);
}

.section--light {
  background: var(--paper);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--blue {
  background: var(--blue);
  color: var(--white);
}

.section--ink .section-heading h2,
.section--ink .section-heading p,
.section--blue h2,
.section--blue p {
  color: inherit;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 17px;
  color: var(--ink);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section--ink .section-heading > p:last-child {
  color: #bccbd6;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-action {
  margin-top: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-path {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 23, 38, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.project-path:hover {
  border-color: #91b4ca;
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.project-path__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.project-path__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 23, 38, 0.28), transparent 55%);
  content: "";
}

.project-path__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-path:hover .project-path__media img {
  transform: scale(1.025);
}

.project-path__body {
  padding: 27px;
}

.project-path__body h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 25px;
}

.project-path__body > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.project-path__links {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.project-path__links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.project-path__links svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 160ms ease;
}

.project-path__links a:hover svg {
  transform: translateX(3px);
}

.service-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 23, 38, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  border-color: #91b4ca;
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.service-card__icon svg {
  width: 25px;
  height: 25px;
}

.service-card__label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3 {
  min-height: 50px;
  margin-bottom: 14px;
  color: var(--ink);
}

.service-card > p:not(.service-card__label) {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.work-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

.work-feature__images {
  position: relative;
  min-height: 550px;
}

.work-feature__image {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.work-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-feature__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(7, 23, 38, 0.82);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.work-feature__image--1 {
  inset: 0 18% 20% 0;
}

.work-feature__image--2 {
  width: 44%;
  height: 39%;
  top: 5%;
  right: 0;
}

.work-feature__image--3 {
  width: 49%;
  height: 43%;
  right: 0;
  bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-width: 0;
  padding: 0 28px 0 0;
  border-top: 2px solid var(--line);
}

.process-grid li + li {
  padding-left: 28px;
}

.process-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-top: -23px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.section--ink .process-grid li {
  border-color: rgba(255, 255, 255, 0.23);
}

.section--ink .process-grid span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--amber);
  color: var(--ink-deep);
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section--ink .process-grid p {
  color: #d5e0e8;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 72px;
}

.split--wide {
  grid-template-columns: 1.2fr 0.8fr;
}

.area-list {
  border-top: 1px solid var(--line);
}

.area-list a,
.link-stack a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.area-list a svg,
.link-stack a svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

.area-list p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.identity-band {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 26px;
}

.identity-band > div:first-child {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
}

.identity-band > div:first-child svg {
  width: 31px;
  height: 31px;
}

.identity-band h2 {
  margin-bottom: 8px;
  font-size: 31px;
}

.identity-band p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue);
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(-90deg);
}

.faq-list details > div {
  max-width: 760px;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

.final-cta {
  padding-block: 70px;
  background: var(--ink-deep);
  color: var(--white);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--white);
}

.final-cta p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #bdccd7;
}

.site-footer {
  padding-top: 76px;
  background: #06131f;
  color: #b9c8d3;
}

.mobile-actions {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.75fr);
  gap: 55px;
  padding-bottom: 58px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-grid a {
  min-height: 34px;
  display: block;
  color: #c7d4dd;
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid p {
  font-size: 14px;
}

.footer-brand img {
  width: 274px;
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 390px;
}

.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dbe7f0;
  font-size: 14px;
}

.footer-location svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  margin-left: auto;
}

.breadcrumbs {
  margin-bottom: 38px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: #8798a5;
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.page-intro {
  padding-block: 68px 76px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-intro--dark {
  border-bottom-color: var(--line-dark);
  background: var(--ink);
  color: var(--white);
}

.page-intro--dark .breadcrumbs li {
  color: #b9c8d3;
}

.page-intro__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 78px;
}

.page-intro h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 52px;
}

.page-intro--dark h1 {
  color: var(--white);
}

.page-intro__grid > div:first-child > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.page-intro--dark .page-intro__grid > div:first-child > p:last-child {
  color: #c8d5de;
}

.page-intro__aside {
  padding: 25px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--paper);
}

.page-intro__aside--dark {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--amber);
  background: rgba(255, 255, 255, 0.06);
}

.page-intro__aside > svg {
  width: 27px;
  height: 27px;
  margin-bottom: 18px;
  color: var(--blue);
}

.page-intro__aside--dark > svg {
  color: var(--amber);
}

.page-intro__aside h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.page-intro__aside p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.page-intro__aside--dark p {
  color: #bdccd7;
}

.service-breadcrumb {
  padding-top: 30px;
}

.service-breadcrumb .breadcrumbs {
  margin-bottom: 0;
}

.service-opening {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: start;
  gap: 70px;
}

.lede {
  margin-bottom: 45px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.55;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.fit-grid > div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-grid h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.scope-note {
  background: var(--paper);
}

.scope-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.estimate-card {
  position: sticky;
  top: 110px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-small);
}

.estimate-card h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 27px;
}

.estimate-card ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.estimate-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #d2dee6;
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--green);
}

.artifact-card {
  padding: 27px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-small);
}

.artifact-card__label {
  color: #9bd4f7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-card__sheet {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0 14px;
  padding: 22px;
  border-radius: 3px;
  background: var(--white);
  color: var(--text);
}

.artifact-card__sheet span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.artifact-card__sheet p {
  margin-bottom: 17px;
  font-size: 13px;
}

.artifact-card__sheet p:last-child {
  margin-bottom: 0;
}

.artifact-card__sheet strong {
  display: block;
  color: var(--ink);
}

.artifact-card > p:last-child {
  margin: 17px 0 0;
  color: #bccbd6;
  font-size: 12px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 70px;
}

.proof-layout figure {
  margin: 0;
}

.proof-layout figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.proof-layout figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.proof-layout > div > p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 7;
}

.gallery figure:nth-child(2),
.gallery figure:nth-child(3) {
  grid-column: span 5;
}

.gallery button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery button:hover img {
  transform: scale(1.025);
}

.gallery figcaption {
  min-height: 105px;
  display: grid;
  gap: 5px;
  padding: 18px;
}

.gallery figcaption strong {
  color: var(--ink);
}

.gallery figcaption span {
  color: var(--muted);
  font-size: 13px;
}

.gallery-dialog {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  max-height: 90vh;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.gallery-dialog::backdrop {
  background: rgba(2, 10, 16, 0.86);
}

.gallery-dialog img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.gallery-dialog button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(7, 23, 38, 0.86);
  color: var(--white);
  cursor: pointer;
}

.gallery-dialog button svg {
  width: 23px;
  height: 23px;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 40px 160px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.principles h3,
.principles p {
  margin-bottom: 0;
}

.principles h3 {
  font-size: 18px;
}

.principles p {
  color: var(--muted);
  font-size: 14px;
}

.boundary-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--white);
}

.boundary-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.boundary-card p {
  color: var(--muted);
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.area-card-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-card-grid h2 {
  margin-bottom: 15px;
  font-size: 27px;
}

.area-card-grid article > p:not(.eyebrow) {
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.resource-card__number {
  margin-bottom: 58px;
  color: var(--paper-deep);
  font-size: 62px;
  font-weight: 850;
  line-height: 1;
}

.resource-card h2 {
  font-size: 29px;
}

.resource-card > p:not(.eyebrow) {
  color: var(--muted);
}

.resource-card .text-link {
  margin-top: auto;
}

.resource-card--contact {
  background: var(--ink);
  color: var(--white);
}

.resource-card--contact > div {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 58px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
}

.resource-card--contact svg {
  width: 25px;
  height: 25px;
  color: var(--amber);
}

.resource-card--contact h2 {
  color: var(--white);
}

.resource-card--contact > p:not(.eyebrow) {
  color: #bdccd7;
}

.resource-card--contact .text-link {
  color: var(--white);
}

.article-hero {
  padding-block: 68px 76px;
  background: var(--ink);
  color: var(--white);
}

.article-hero .breadcrumbs li {
  color: #b9c8d3;
}

.article-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
}

.article-hero > .shell > p:not(.eyebrow) {
  max-width: 720px;
  color: #c8d5de;
  font-size: 20px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #aebfcb;
  font-size: 13px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.article-layout {
  padding-block: var(--section);
}

.article-layout__grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 72px;
}

.page-article--worksheet .article-layout__grid {
  grid-template-columns: 250px minmax(0, 900px);
  gap: 48px;
}

.article-toc {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-toc > p:first-child {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.article-toc ol {
  margin: 0 0 22px;
  padding-left: 19px;
}

.article-toc li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.article-toc a {
  text-decoration: none;
}

.copy-checklist {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.copy-checklist:hover {
  background: var(--ink);
  color: var(--white);
}

.copy-checklist + .copy-checklist {
  margin-top: 9px;
}

.copy-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--green);
  font-size: 12px;
}

.article-body > .lede {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-body > section {
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.article-body h2 {
  margin-bottom: 18px;
  font-size: 32px;
}

.article-body p {
  color: #3e505e;
}

.article-checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border-left: 3px solid var(--green);
  background: var(--white);
}

.article-checklist svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--green);
}

.official-tools > p:not(.eyebrow) {
  margin-bottom: 24px;
}

.official-tool-list {
  display: grid;
  gap: 12px;
}

.official-tool-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.official-tool-list a:hover {
  border-color: var(--blue);
}

.official-tool-list span {
  display: grid;
  gap: 3px;
}

.official-tool-list small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.official-tool-list svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.official-tool-list p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
}

.comparison-worksheet > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 24px;
}

.comparison-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  scrollbar-gutter: stable;
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid rgba(70, 167, 235, 0.34);
  outline-offset: 3px;
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--ink);
  font-size: 13px;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table thead th {
  padding-block: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  text-align: left;
}

.comparison-table thead th:first-child,
.comparison-table tbody > tr:not(.comparison-table__group) > th {
  width: 210px;
}

.comparison-table tbody > tr:not(.comparison-table__group) > th {
  background: #f5f8fa;
  font-weight: 760;
}

.comparison-table__group th {
  padding-block: 10px;
  border-right: 0;
  background: #dce9f2;
  color: #17354c;
  font-size: 11px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.comparison-table textarea {
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid #afbfca;
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.35;
  resize: vertical;
}

.comparison-table textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(70, 167, 235, 0.24);
}

.worksheet-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.worksheet-actions .copy-checklist {
  width: auto;
  padding-inline: 18px;
}

.worksheet-actions .copy-status {
  margin: 0;
}

.article-callout {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--white);
}

.article-callout h2 {
  font-size: 28px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.contact-note {
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.contact-direct svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.contact-direct span {
  min-width: 0;
  display: grid;
}

.contact-direct strong {
  color: var(--ink);
}

.contact-direct em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-direct small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 46px;
}

.project-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.form-heading p:last-child {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label {
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.form-grid label b {
  color: var(--amber-deep);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #aebdca;
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
}

.form-grid textarea {
  min-height: 154px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(70, 167, 235, 0.24);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  margin-block: 24px;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-fallback {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid #8fc7af;
  background: #e9f7f1;
  color: #14583f;
}

.form-status.is-error {
  border: 1px solid #df9b9b;
  background: #fff0f0;
  color: #8a2525;
}

.contact-aside {
  display: grid;
  gap: 20px;
}

.contact-aside > div:first-child {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.contact-aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-aside li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-aside li span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.contact-aside li p {
  margin-bottom: 0;
  color: #d1dde5;
  font-size: 14px;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin: 36px 0 13px;
  font-size: 28px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  color: #3e505e;
}

.not-found {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-block: 90px;
  background: var(--ink);
  color: var(--white);
}

.not-found h1 {
  max-width: 850px;
}

.not-found > .shell > p:not(.eyebrow) {
  max-width: 650px;
  color: #c8d5de;
  font-size: 20px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 35px;
  }

  .site-header__inner {
    grid-template-columns: 245px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 245px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .service-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-path__body {
    padding: 24px;
  }

  .project-path__body h3 {
    font-size: 22px;
  }

  .work-feature {
    gap: 42px;
  }

  .page-intro__grid {
    gap: 45px;
  }

  .service-opening {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .page-article--worksheet .article-layout__grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 920px) {
  :root {
    --section: 72px;
  }

  .site-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 238px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
  }

  .nav-toggle svg {
    width: 24px;
    height: 24px;
    grid-area: 1 / 1;
  }

  .nav-toggle__close {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__open {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__close {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 72px);
    min-height: calc(100vh - 72px);
    display: none;
    align-items: stretch;
    padding: 15px 24px 26px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--ink-deep);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .site-nav__cta {
    min-height: 52px;
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding: 12px 16px;
    border: 0;
    border-radius: var(--radius);
    background: var(--amber);
    color: var(--ink-deep);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero--compact {
    min-height: 540px;
  }

  .hero__content {
    padding-top: 90px;
    padding-bottom: 72px;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div:first-child,
  .proof-strip__grid > div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .service-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-paths {
    grid-template-columns: 1fr;
  }

  .project-path {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .project-path__media {
    aspect-ratio: auto;
  }

  .work-feature,
  .split,
  .split--wide,
  .proof-layout,
  .page-intro__grid,
  .service-opening,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .work-feature__images {
    min-height: 520px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 0;
  }

  .identity-band {
    grid-template-columns: 60px 1fr;
  }

  .identity-band > a {
    grid-column: 2;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-intro__grid {
    align-items: start;
  }

  .page-intro__aside {
    max-width: 620px;
  }

  .estimate-card,
  .article-toc {
    position: static;
  }

  .article-layout__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4) {
    grid-column: span 6;
  }

  .contact-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --section: 58px;
  }

  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  h1,
  .page-intro h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 31px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .topline__inner {
    min-height: 38px;
  }

  .topline__inner > span,
  .topline__inner > span + span {
    display: none;
  }

  .topline a {
    margin-inline: auto;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
    min-height: calc(100vh - 68px);
  }

  .brand {
    width: 214px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero,
  .hero--compact {
    min-height: 600px;
  }

  .hero__scrim {
    background: linear-gradient(0deg, rgba(7, 23, 38, 0.98) 0%, rgba(7, 23, 38, 0.8) 62%, rgba(7, 23, 38, 0.38) 100%);
  }

  .hero__content {
    padding-top: 110px;
    padding-bottom: 54px;
  }

  .hero__summary {
    font-size: 18px;
  }

  .hero__credibility {
    display: grid;
    gap: 9px;
    margin-top: 21px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .service-grid,
  .service-grid--three,
  .service-grid--four,
  .area-card-grid,
  .resource-grid,
  .fit-grid,
  .form-grid,
  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .project-path {
    display: block;
  }

  .project-path__media {
    aspect-ratio: 16 / 10;
  }

  .project-path__body {
    padding: 23px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .work-feature__images {
    min-height: 420px;
  }

  .work-feature__image--1 {
    inset: 0 8% 25% 0;
  }

  .work-feature__image--2 {
    width: 41%;
    height: 34%;
  }

  .work-feature__image--3 {
    width: 54%;
    height: 40%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-grid li,
  .process-grid li + li {
    padding: 0;
  }

  .identity-band {
    grid-template-columns: 1fr;
  }

  .identity-band > a {
    grid-column: 1;
  }

  .identity-band h2 {
    font-size: 27px;
  }

  .final-cta {
    padding-block: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-block: 20px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .page-intro,
  .article-hero {
    padding-block: 48px 58px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .page-intro__grid > div:first-child > p:last-child,
  .article-hero > .shell > p:not(.eyebrow) {
    font-size: 18px;
  }

  .service-opening {
    gap: 32px;
  }

  .lede {
    font-size: 20px;
  }

  .estimate-card,
  .artifact-card,
  .project-form,
  .contact-aside > div:first-child {
    padding: 24px;
  }

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4) {
    grid-column: 1 / -1;
  }

  .principles article {
    grid-template-columns: 34px 1fr;
  }

  .principles p {
    grid-column: 2;
  }

  .resource-card {
    min-height: 0;
  }

  .resource-card__number,
  .resource-card--contact > div {
    margin-bottom: 36px;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .article-body h2 {
    font-size: 28px;
  }

  .form-grid__full {
    grid-column: auto;
  }

  .contact-direct a {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink-deep);
    box-shadow: 0 -10px 28px rgba(7, 23, 38, 0.18);
  }

  .mobile-actions a {
    min-width: 0;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a + a {
    background: var(--amber);
    color: var(--ink-deep);
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  body.nav-open .mobile-actions {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topline,
  .site-header,
  .site-footer,
  .final-cta,
  .mobile-actions,
  .article-toc,
  .worksheet-actions,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .article-layout {
    padding: 0;
    background: #fff;
  }

  .article-layout__grid {
    display: block;
  }

  .article-body {
    max-width: none;
  }

  .official-tool-list a {
    break-inside: avoid;
  }

  .comparison-table-wrap {
    overflow: visible;
    border-color: #888;
  }

  .comparison-table {
    min-width: 0;
    font-size: 7.5pt;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 5px;
    border-color: #aaa;
  }

  .comparison-table thead {
    display: table-header-group;
  }

  .comparison-table tr {
    break-inside: avoid;
  }

  .comparison-table textarea {
    min-height: 32px;
    padding: 4px;
    border-color: #999;
    resize: none;
  }
}
