:root {
  --ink: #0d2743;
  --muted: #596679;
  --paper: #f7f9fb;
  --soft: #eaf0f7;
  --line: #d8e0ea;
  --slate: #12385d;
  --slate-dark: #081f38;
  --orange: #ff6900;
  --orange-dark: #d95400;
  --orange-text: #b84700;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 34, 52, 0.16);
  --soft-shadow: 0 14px 44px rgba(20, 34, 52, 0.08);
  --header-offset: calc(13px + 46px + 13px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--slate-dark);
  border: 3px solid var(--orange);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: auto;
  padding: 13px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(247, 249, 251, 0.9);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-text strong {
  color: var(--slate-dark);
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-text span {
  color: var(--orange-text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--orange-text);
}

.site-nav a[aria-current="page"] {
  color: var(--orange-text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  overflow: hidden;
  padding: clamp(38px, 5vw, 62px) clamp(20px, 6vw, 84px) clamp(28px, 4vw, 44px);
  background: var(--paper);
}

.showcase-photo {
  position: relative;
  margin-top: var(--header-offset);
  overflow: hidden;
  background: var(--slate-dark);
  border-top: 0;
  border-bottom: 8px solid var(--orange);
}

.showcase-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 31, 56, 0.82), rgba(18, 56, 93, 0.28) 58%, rgba(255, 105, 0, 0.13)),
    linear-gradient(0deg, rgba(8, 31, 56, 0.34), transparent 58%);
}

.showcase-photo img {
  display: block;
  width: 100%;
  height: clamp(230px, 30vw, 360px);
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.78) contrast(1.08);
}

.image-strapline {
  position: absolute;
  left: clamp(20px, 6vw, 84px);
  right: clamp(20px, 6vw, 84px);
  top: clamp(28px, 5vw, 58px);
  bottom: auto;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 40px);
  padding: 0 0 0 16px;
  color: var(--white);
  background: transparent;
  border-left: 5px solid var(--orange);
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(8, 31, 56, 0.72);
  text-transform: uppercase;
}

.page-main {
  padding-top: var(--header-offset);
}

.page-hero {
  min-height: clamp(390px, 52vh, 560px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 31, 56, 0.94), rgba(18, 56, 93, 0.78)),
    url("assets/signage-network-showcase.png") center / cover;
}

.page-hero.image-backed {
  background:
    linear-gradient(90deg, rgba(8, 31, 56, 0.94), rgba(18, 56, 93, 0.5)),
    url("assets/signage-network-showcase.png") center / cover;
}

.page-hero.about-hero {
  background:
    linear-gradient(90deg, rgba(8, 31, 56, 0.96), rgba(18, 56, 93, 0.64)),
    url("https://images.unsplash.com/photo-1758873268745-dd2cf0d677b5?auto=format&fit=crop&w=2000&q=85") center / cover;
}

.page-hero.services-hero {
  background:
    linear-gradient(90deg, rgba(8, 31, 56, 0.96), rgba(18, 56, 93, 0.58)),
    url("https://images.pexels.com/photos/37605911/pexels-photo-37605911.jpeg?auto=compress&cs=tinysrgb&w=2000") center / cover;
}

.page-hero > div {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.6vw, 5rem);
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #dce8f2;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.placeholder-section > p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 56px);
  max-width: 1120px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-capabilities {
  background: var(--paper);
  border-top: 1px solid rgba(216, 224, 234, 0.72);
}

.about-locations {
  padding-top: clamp(70px, 10vw, 130px);
}

.about-values {
  border-top: 1px solid rgba(216, 224, 234, 0.72);
}

.services-overview,
.service-support {
  background: var(--paper);
}

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

.screen-total {
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-detail {
  padding-top: clamp(70px, 10vw, 130px);
}

.contact-section.standalone-contact {
  padding-top: clamp(92px, 12vw, 150px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 34px;
  min-height: calc(100vh - var(--header-offset));
  align-content: start;
  background: var(--paper);
}

.contact-section.standalone-contact .contact-intro {
  max-width: 820px;
  text-align: center;
}

.contact-section.standalone-contact .contact-intro h1 {
  max-width: none;
  color: var(--slate-dark);
}

.contact-section.standalone-contact .contact-intro p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-section.standalone-contact .contact-intro a {
  color: var(--orange-text);
  font-weight: 800;
}

.contact-section.standalone-contact .contact-form {
  width: min(680px, 100%);
  border-top: 5px solid var(--orange);
  box-shadow: var(--soft-shadow);
}

.contact-section .form-status {
  min-height: 24px;
  margin: 0;
  max-width: none;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.contact-section .form-status.success {
  color: var(--slate);
}

.contact-section .form-status.error {
  color: var(--orange-text);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.quote-intro {
  max-width: 1100px;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 84px) 42px;
}

.quote-intro h1 {
  max-width: 12ch;
}

.quote-intro > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.quote-builder {
  padding: 0 clamp(20px, 6vw, 84px) clamp(80px, 10vw, 130px);
}

.quote-progress {
  width: min(820px, 100%);
  height: 6px;
  margin: 0 auto 20px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.quote-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 180ms ease;
}

.quote-form {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.quote-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-step[hidden] {
  display: none;
}

.quote-step legend {
  max-width: 700px;
  padding: 0;
  color: var(--slate-dark);
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.quote-help {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.choice-card {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--slate-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--slate);
  border-radius: 8px;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  background: var(--soft);
  border-color: var(--orange);
  border-left-color: var(--orange);
}

.choice-card input {
  width: 18px;
  margin: 0 12px 0 0;
  accent-color: var(--orange);
}

.quote-number,
.quote-input-grid {
  margin-top: 28px;
}

.quote-number {
  max-width: 320px;
}

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

.quote-input-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.quote-step > label:last-child {
  margin-top: 18px;
}

.discount-status {
  min-height: 22px;
  margin: 7px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.discount-status.success {
  color: var(--slate);
}

.discount-status.error {
  color: var(--orange-text);
}

.rep-code-panel {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rep-code-panel summary {
  color: var(--slate);
  font-weight: 800;
  cursor: pointer;
}

.rep-code-panel label {
  margin-top: 16px;
}

.quote-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.quote-controls [hidden] {
  display: none;
}

.quote-help-button {
  display: grid;
  gap: 2px;
  margin-right: auto;
  min-height: 50px;
  align-content: center;
  padding: 7px 18px;
  color: var(--slate-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(8, 31, 56, 0.08);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.quote-help-button strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.quote-help-button span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.quote-help-button:hover {
  color: var(--orange-dark);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.hero-image,
.hero-overlay {
  display: none;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.9) 42%, rgba(247, 249, 251, 0.18) 78%),
    linear-gradient(0deg, rgba(20, 34, 52, 0.2), rgba(247, 249, 251, 0));
}

.hero-content {
  position: relative;
  max-width: min(1180px, 100%);
}

.hero::after {
  content: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange-text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 980px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.screen-locations {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 84px) clamp(48px, 6vw, 72px);
  background: var(--paper);
}

.locations-copy {
  color: var(--slate-dark);
}

.screen-locations h2 {
  max-width: 820px;
}

.screen-locations p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--slate-dark);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--slate-dark);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.band,
.section,
.split-section,
.contact-section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: linear-gradient(135deg, var(--slate-dark), var(--slate));
  color: var(--white);
}

.intro .section-kicker {
  color: #ffb184;
}

.intro p:last-child {
  margin: 0;
  color: #d6e5e2;
  font-size: 1.08rem;
}

.intro-audience {
  grid-column: 1 / -1;
}

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

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

.service-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(20, 35, 33, 0.06);
}

.card-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange-text);
  font-weight: 800;
}

.service-card p,
.value-item p,
.split-copy p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.value-section {
  background: var(--paper);
  border-top: 1px solid rgba(216, 224, 234, 0.72);
}

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

.value-item {
  min-height: 200px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: stretch;
}

.audience-list span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 15px 16px;
  color: var(--slate-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background: var(--paper);
  border-top: 1px solid rgba(216, 224, 234, 0.72);
}

.split-copy p {
  max-width: 610px;
  margin-top: 24px;
  font-size: 1.06rem;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--orange-text);
  border-radius: 8px;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: clamp(42px, 6vw, 68px) clamp(20px, 6vw, 84px);
  background: var(--paper);
  border-top: 1px solid rgba(216, 224, 234, 0.72);
}

.proof-item {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--slate-dark);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-weight: 700;
}

.next-steps-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 6vw, 84px);
  background: var(--slate-dark);
  color: var(--white);
}

.next-steps-section h2 {
  max-width: 820px;
}

.next-steps-section .section-kicker {
  color: #ffb184;
}

.next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.next-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--slate-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.contact-section p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.06rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(255, 105, 0, 0.18);
  border-color: var(--orange);
}

.site-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.button:focus-visible,
.quote-help-button:focus-visible,
.next-links a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.form-privacy a {
  color: var(--slate);
  font-weight: 800;
}

.privacy-page {
  max-width: 920px;
  min-height: calc(100vh - var(--header-offset));
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 84px);
}

.privacy-page h1 {
  max-width: 12ch;
}

.privacy-content {
  display: grid;
  gap: 28px;
  margin-top: 42px;
}

.privacy-content section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.privacy-content a {
  color: var(--slate);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: #dbe8e5;
  background: var(--ink);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .intro,
  .about-copy,
  .screen-locations,
  .hero,
  .value-grid,
  .service-grid,
  .split-section,
  .contact-section,
  .next-steps-section {
    grid-template-columns: 1fr;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .next-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.72));
  }

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

  .proof-item {
    min-height: 150px;
  }

}

@media (max-width: 560px) {
  :root {
    --header-offset: calc(10px + 46px + 10px);
  }

  .site-header {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-text span {
    letter-spacing: 0.16em;
  }

  .hero {
    padding-top: 70px;
  }

  .showcase-photo {
    margin-top: var(--header-offset);
  }

  .image-strapline {
    left: 16px;
    right: 16px;
    top: 16px;
    bottom: auto;
    padding: 0 0 0 12px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .page-main {
    padding-top: var(--header-offset);
  }

  .showcase-photo img {
    height: 300px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero h1 {
    max-width: 10ch;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  .hero-actions,
  .site-footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .choice-grid,
  .quote-input-grid,
  .screen-option-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .value-item,
  .contact-form,
  .step {
    padding: 22px;
  }
}

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

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