:root {
  --ink: #10233d;
  --ink-deep: #09182c;
  --ink-soft: #44546a;
  --paper: #f5f2eb;
  --paper-raised: #fffdf8;
  --white: #ffffff;
  --red: #c93632;
  --red-dark: #a92522;
  --line: #d9d8d2;
  --line-dark: #29405f;
  --blue-wash: #e8eef5;
  --success: #1f6d4e;
  --shadow: 0 20px 60px rgb(9 24 44 / 12%);
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid #f4b9b6;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--ink-deep);
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -2px;
  width: 30px;
  height: 7px;
  background: var(--red);
  transform: rotate(-45deg);
}

.brand-name {
  display: grid;
  line-height: 1.05;
}

.brand-name strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-name span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #314158;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink-deep);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 2px;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

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

.button-outline:hover {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.button-dark {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.button-dark:hover {
  background: #173454;
  border-color: #173454;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-deep);
  font-weight: 760;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper-raised);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(16 35 61 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(16 35 61 / 5%) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, #000, transparent 62%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  min-height: 720px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px 96px 0;
}

.hero-copy .lede {
  max-width: 660px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 680px;
  margin: 42px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.hero-note div {
  display: grid;
  gap: 3px;
}

.hero-note dt {
  color: var(--ink-deep);
  font-size: 0.9rem;
  font-weight: 760;
}

.hero-note dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hero-photo {
  position: relative;
  margin: 40px 0 40px;
  min-height: 640px;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgb(9 24 44 / 78%), transparent);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
}

.photo-label strong {
  max-width: 250px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.photo-label a {
  color: rgb(255 255 255 / 78%);
  font-size: 0.68rem;
  text-decoration: none;
}

.service-strip {
  color: var(--white);
  background: var(--ink-deep);
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-item {
  padding: 26px 25px;
  border-right: 1px solid var(--line-dark);
}

.strip-item:first-child {
  border-left: 1px solid var(--line-dark);
}

.strip-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.97rem;
}

.strip-item span {
  color: #b7c3d2;
  font-size: 0.82rem;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.section-dark .section-heading > p {
  color: #bdc8d6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  background: var(--paper-raised);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 45px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.details-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 110px);
}

.details-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  align-self: start;
}

.details-intro p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

.delivery-row {
  display: grid;
  grid-template-columns: 52px 0.45fr 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-row > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.delivery-row p {
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.process-step {
  min-height: 320px;
  padding: 36px;
  background: var(--ink-deep);
}

.process-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 72px;
  color: var(--white);
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step p {
  color: #bdc8d6;
}

.job-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.job-detail {
  padding-top: 20px;
  border-top: 2px solid var(--red);
}

.job-detail h3 {
  color: var(--white);
}

.job-detail p {
  margin-bottom: 0;
  color: #bdc8d6;
  font-size: 0.9rem;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.area-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.area-list div {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 720;
}

.area-list div::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 13px;
  background: var(--red);
  border-radius: 50%;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(48px, 8vw, 100px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 44px 25px 0;
  color: var(--ink-deep);
  font-size: 1.05rem;
  font-weight: 740;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin-bottom: 26px;
  padding-right: 30px;
  color: var(--ink-soft);
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.cta-section::before {
  content: "ACS";
  position: absolute;
  right: -40px;
  bottom: -88px;
  color: rgb(255 255 255 / 8%);
  font-size: clamp(10rem, 30vw, 28rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 52px;
  padding-block: clamp(70px, 9vw, 112px);
}

.cta-copy {
  max-width: 750px;
}

.cta-copy h2 {
  color: var(--white);
}

.cta-copy p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 84%);
  font-size: 1.1rem;
}

.cta-section .button-dark {
  min-width: 210px;
}

.site-footer {
  color: var(--white);
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 0.6fr 0.85fr;
  gap: 50px;
  padding-block: 64px 52px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-name strong,
.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer .brand-name span {
  color: #aebccc;
}

.footer-intro p {
  max-width: 360px;
  margin: 22px 0 0;
  color: #aebccc;
}

.footer-column h2 {
  margin-bottom: 17px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #c8d1dc;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  color: #8fa0b4;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding-block: 92px 76px;
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-hero .lede {
  margin-bottom: 0;
}

.quote-page {
  padding-block: 72px 112px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: start;
  gap: clamp(45px, 8vw, 95px);
}

.quote-aside {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.quote-aside h2 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.quote-aside p,
.quote-aside li {
  color: var(--ink-soft);
}

.quote-aside ol {
  margin: 24px 0 0;
  padding-left: 21px;
}

.quote-aside li + li {
  margin-top: 10px;
}

.quote-form {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-section {
  padding: 36px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: 0;
}

.form-section-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 27px;
}

.form-section-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--ink-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-section-header h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.form-section-header p {
  grid-column: 2;
  margin: -7px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  color: var(--ink-deep);
  font-size: 0.86rem;
  font-weight: 720;
}

.field .optional {
  color: #718095;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  color: var(--ink-deep);
  background: var(--white);
  border: 1px solid #bdc3cb;
  border-radius: 0;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a8695;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink-deep);
  outline: 3px solid var(--blue-wash);
}

.form-actions {
  padding: 30px 36px 36px;
  background: var(--blue-wash);
}

.form-actions p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--success);
  font-weight: 700;
}

.legal-page {
  padding-block: 72px 112px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 2px solid var(--line);
}

.legal-nav a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--ink-deep);
  text-decoration: underline;
}

.legal-content h2 {
  margin: 56px 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
}

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

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-callout {
  margin-bottom: 34px;
  padding: 20px 22px;
  background: var(--blue-wash);
  border-left: 4px solid var(--ink-deep);
}

.legal-callout p {
  margin: 0;
  color: var(--ink-deep);
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
  font-size: clamp(4.5rem, 16vw, 10rem);
}

.not-found p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    min-height: 650px;
  }

  .hero-copy {
    padding-right: 42px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 28px 20px;
    background: var(--paper-raised);
  }

  .site-nav[data-open="true"] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 75px 36px;
  }

  .hero-copy {
    padding: 0 0 52px;
  }

  .hero-photo {
    min-height: min(680px, 88vw);
    margin: 0;
  }

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

  .strip-item:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .strip-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section-heading,
  .details-layout,
  .area-layout,
  .faq-layout,
  .quote-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .details-intro,
  .quote-aside,
  .legal-nav {
    position: static;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card::before {
    margin-bottom: 26px;
  }

  .process-step {
    min-height: 0;
  }

  .process-number {
    margin-bottom: 45px;
  }

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

  .legal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 20px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-name strong {
    max-width: 150px;
    font-size: 0.84rem;
  }

  .brand-name span {
    display: none;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.45rem);
  }

  .hero-grid {
    padding-top: 58px;
  }

  .hero-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-photo {
    min-height: 520px;
  }

  .photo-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .button-outline {
    width: 100%;
  }

  .service-strip-grid,
  .job-details,
  .area-list,
  .footer-main,
  .form-grid,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .strip-item,
  .strip-item:nth-child(3) {
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 38px;
  }

  .delivery-row {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .delivery-row p {
    grid-column: 2;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-section,
  .form-actions {
    padding: 25px 20px;
  }

  .form-section-header {
    grid-template-columns: 36px 1fr;
  }

  .page-hero {
    padding-block: 64px 56px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
