/* ==========================================================================
   Four Points Signs & Graphics — global stylesheet
   Plain CSS, no build step. Organized: tokens, base, layout, components, pages.
   ========================================================================== */

:root {
  --color-navy: #003c75;
  --color-navy-dark: #002850;
  --color-navy-light: #0b4f96;
  --color-red: #d63530;
  --color-red-dark: #b32620;
  --color-cream: #faf7f1;
  --color-white: #ffffff;
  --color-ink: #16212c;
  --color-ink-soft: #3d4a58;
  --color-gray-100: #f1efe9;
  --color-gray-200: #e4e1d8;
  --color-gray-300: #cfccc2;
  --color-gray-500: #6f6e67;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container-w: 1180px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(22, 33, 44, 0.08), 0 1px 2px rgba(22, 33, 44, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 33, 44, 0.12);
  --shadow-lg: 0 16px 40px rgba(22, 33, 44, 0.18);

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(2.75rem, 6vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-red-dark);
  margin-bottom: 0.75em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--color-ink-soft);
  max-width: 62ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--secondary:hover {
  background: transparent;
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--block {
  width: 100%;
}

.btn--bounce {
  animation: header-quote-bounce 3.4s ease-in-out infinite;
}

.btn--bounce:hover {
  animation-play-state: paused;
}

@keyframes header-quote-bounce {
  0%,
  78%,
  100% {
    transform: translateY(0);
  }
  84% {
    transform: translateY(-6px);
  }
  90% {
    transform: translateY(0);
  }
  94% {
    transform: translateY(-3px);
  }
  97% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--bounce {
    animation: none;
  }
}

/* Blueprint accents */
.blueprint-bg {
  background-color: var(--color-navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.dim-line {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: var(--color-gray-500);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.dim-line::before,
.dim-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-gray-300);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.visually-hidden {
  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: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-red);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  border-radius: 7px;
  display: block;
}

.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}

.brand__sub {
  font-weight: 700;
  font-size: 0.62rem;
  color: var(--color-red);
  letter-spacing: 0.08em;
}

.site-nav ul {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
}

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

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  color: var(--color-navy);
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

@media (max-width: 880px) {
  .site-nav,
  .header-phone:not(.header-phone--mobile) {
    display: none;
  }

  .site-header__actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
    border-top: 1px solid var(--color-gray-200);
    padding: 1.25rem;
    background: var(--color-white);
  }

  .mobile-nav ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .mobile-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-navy);
  }

  .header-phone--mobile {
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-navy-dark);
  color: #cdd8e4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand .brand__mark {
  border-radius: 6px;
}

.footer-brand .brand__name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-white);
  display: block;
}

.footer-brand .brand__sub {
  font-weight: 700;
  font-size: 0.6rem;
  color: #ff8f8a;
  letter-spacing: 0.08em;
  display: block;
}

.footer-tag {
  font-size: 0.9rem;
  color: #a9bad0;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.footer-social a {
  color: #cdd8e4;
  display: inline-flex;
}

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

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #cdd8e4;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #ff8f8a;
}

.footer-hours {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.9rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(205, 216, 228, 0.2);
}

.footer-area-heading {
  margin-bottom: 0.6rem;
}

.footer-area {
  font-size: 0.9rem;
  color: #a9bad0;
}

.footer-bottom {
  border-top: 1px solid rgba(205, 216, 228, 0.15);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: #8ea0b8;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Service card
   ========================================================================== */

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card__summary {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  flex: 1;
}

.service-card__equipment {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  color: var(--color-gray-500);
  font-weight: 600;
  margin: 0 0 1.1rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  text-decoration: none;
  font-weight: 700;
  color: var(--color-red);
  font-size: 0.9rem;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Gallery + lightbox
   ========================================================================== */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  border: 1.5px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  cursor: pointer;
}

.gallery-filter.is-active,
.gallery-filter:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-gray-100);
  aspect-ratio: 4 / 3;
}

.gallery-item__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.gallery-item__trigger picture,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item__zoom {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 20, 40, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.gallery-item__trigger:hover .gallery-item__zoom,
.gallery-item__trigger:focus-visible .gallery-item__zoom {
  opacity: 1;
}

.gallery-item__trigger:hover img {
  filter: brightness(0.92);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 20, 40, 0.75), transparent);
  pointer-events: none;
}

.gallery-item.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 24, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox__figure figcaption {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 3vw, 1.75rem);
  right: clamp(0.75rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__nav--prev {
  left: clamp(0.5rem, 3vw, 1.5rem);
}

.lightbox__nav--next {
  right: clamp(0.5rem, 3vw, 1.5rem);
}

@media (max-width: 640px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   Quote form
   ========================================================================== */

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.quote-form--compact {
  padding: 1.5rem;
  gap: 1.25rem;
}

.qf-label {
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.75rem;
}

.qf-req {
  color: var(--color-red);
}

.qf-optional {
  color: var(--color-gray-500);
  font-weight: 500;
  font-size: 0.85em;
}

.qf-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.qf-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1.5px solid var(--color-gray-300);
  border-radius: 10px;
  padding: 0.85rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}

.qf-tile .qf-tile__icon {
  color: var(--color-navy);
}

.qf-tile:hover {
  border-color: var(--color-navy-light);
}

/* Keep the radio in the layout (1px, centered) so browser validation
   messages anchor to the tile group instead of the page corner. */
.qf-tile input {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.qf-tile:has(input:checked) {
  border-color: var(--color-red);
  background: #fdf1f0;
}

.qf-tile:has(input:checked) .qf-tile__icon {
  color: var(--color-red);
}

.qf-tile:has(input:focus-visible) {
  outline: 2px solid var(--color-navy-light);
  outline-offset: 2px;
}

.qf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.qf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
}

.qf-field input[type="text"],
.qf-field input[type="email"],
.qf-field input[type="tel"],
.qf-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-ink);
  border: 1.5px solid var(--color-gray-300);
  border-radius: 8px;
  padding: 0.7em 0.85em;
  background: var(--color-white);
}

.qf-field input:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--color-navy-light);
}

.qf-field textarea {
  resize: vertical;
}

.qf-hint {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-gray-500);
}

.qf-microcopy {
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-navy);
  margin: 0;
}

.qf-turnaround {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin: 0;
}

.qf-status {
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.qf-status[data-state="success"] {
  background: #e9f7ee;
  color: #216b3f;
}

.qf-status[data-state="error"] {
  background: #fdeceb;
  color: #a3241e;
}

.qf-status[data-state="sending"] {
  background: var(--color-gray-100);
  color: var(--color-ink-soft);
}

@media (max-width: 640px) {
  .qf-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .qf-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
}

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

.faq-item .faq-item__chevron {
  flex-shrink: 0;
  color: var(--color-red);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.faq-item__answer p {
  margin: 0;
}

/* ==========================================================================
   Page: Home
   ========================================================================== */

.hero {
  color: var(--color-white);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  color: var(--color-white);
}

.hero__lede {
  font-size: 1.08rem;
  color: #cfe0f2;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero__art img {
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.process-step {
  position: relative;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.process-step__num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
}

.process-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-step p {
  color: #cfe0f2;
  font-size: 0.92rem;
  margin: 0;
}

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-area__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-area__list li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  color: var(--color-navy);
}

.service-area__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero__inner,
  .service-area,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero__art {
    order: -1;
  }
}

/* ==========================================================================
   Page hero (Services / Our Work / About / Quote share this banner)
   ========================================================================== */

.page-hero {
  color: var(--color-white);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

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

.page-hero .hero__lede {
  color: #cfe0f2;
  max-width: 60ch;
  font-size: 1.05rem;
}

/* ==========================================================================
   Page: Services
   ========================================================================== */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.service-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-detail__copy p {
  color: var(--color-ink-soft);
}

.service-detail__equipment {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-500);
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1.5rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  padding: 0.75em 1em;
}

.service-list svg {
  color: var(--color-red);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

@media (max-width: 560px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page: Our Work / About shared CTA band
   ========================================================================== */

.cta-band {
  text-align: center;
}

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

.cta-band p {
  color: #cfe0f2;
  max-width: 50ch;
  margin: 0 auto 1.75rem;
}

.cta-band .lede {
  max-width: 50ch;
  margin: 0 auto 1.75rem;
}

/* ==========================================================================
   Page: About
   ========================================================================== */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-intro__media .blueprint-art {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  display: block;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .about-intro,
  .about-split {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page: Quote
   ========================================================================== */

.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.quote-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 96px;
}

.trust-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.trust-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.55em;
  font-size: 0.88rem;
  color: var(--color-ink-soft);
}

.trust-card svg {
  flex-shrink: 0;
  color: var(--color-red);
  margin-top: 0.15em;
}

.contact-list a {
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 600;
}

.trust-card--map {
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

@media (max-width: 900px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-layout__aside {
    position: static;
  }
}

/* ==========================================================================
   Page: 404
   ========================================================================== */

.not-found {
  color: var(--color-white);
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.not-found h1 {
  color: var(--color-white);
}

.not-found .lede {
  max-width: 50ch;
  margin: 0 auto 2rem;
}

.not-found__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
