:root {
  --navy: #061b3a;
  --navy-2: #0a2448;
  --ink: #111820;
  --muted: #697684;
  --muted-light: #aab5bf;
  --ice: #eef7fb;
  --paper: #ffffff;
  --paper-soft: #fbfcfb;
  --line: rgba(6, 27, 58, 0.1);
  --line-dark: rgba(255, 255, 255, 0.16);
  --hero-guide: rgba(255, 255, 255, 0.24);
  --hero-guide-soft: rgba(255, 255, 255, 0.15);
  --hero-guide-inset: clamp(24px, 5.85vw, 120px);
  --hero-content-gap: 20px;
  --hero-content-inset: calc(var(--hero-guide-inset) + var(--hero-content-gap));
  --page-content-width: min(calc(100% - var(--hero-content-inset) - var(--hero-content-inset)), var(--container));
  --warm: #c89f61;
  --bft-red: #d7192a;
  --shadow: 0 24px 80px rgba(6, 27, 58, 0.13);
  --container: 1180px;
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(200, 159, 97, 0.75);
  outline-offset: 4px;
}

.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;
}

.container {
  width: var(--page-content-width);
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 27, 58, 0.22);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-light {
  background: var(--paper);
  color: var(--navy);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--paper);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  padding-block: 12px;
  background: rgba(6, 27, 58, 0.86);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--container));
  min-height: 50px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.brand {
  display: block;
  width: clamp(118px, 11.5vw, 156px);
  aspect-ratio: 640 / 298;
  border: 0;
  background: transparent url("../images/logo-white.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
  overflow: hidden;
}

.brand-mark,
.brand-name,
.brand-mark::before,
.brand-mark::after {
  display: none;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 27, 58, 0.35);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.nav-pill a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.nav-pill a:hover,
.nav-pill a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.nav-pill a[aria-current="page"] {
  background: var(--paper);
  color: var(--navy);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  width: min(calc(100% - 48px), var(--container));
  margin: 14px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(6, 27, 58, 0.96);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-panel:not([hidden]) {
  display: grid;
  gap: 6px;
}

.mobile-panel a {
  padding: 13px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.mobile-panel a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.mobile-panel .mobile-cta {
  margin-top: 8px;
  background: var(--paper);
  color: var(--navy);
  text-align: center;
  font-weight: 600;
}

.hero {
  --hero-nav-line: clamp(112px, 15.8vh, 158px);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 132px 0 34px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.site-header .nav-shell,
.site-header .mobile-panel,
.hero > .container {
  width: var(--page-content-width);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(var(--hero-guide), var(--hero-guide)) var(--hero-guide-inset) 0 / 1px 100% no-repeat,
    linear-gradient(var(--hero-guide), var(--hero-guide)) calc(100% - var(--hero-guide-inset)) 0 / 1px 100% no-repeat;
}

.hero::after {
  background:
    linear-gradient(90deg, var(--hero-guide-soft), var(--hero-guide-soft)) 0 var(--hero-nav-line) / 100% 1px no-repeat,
    linear-gradient(90deg, var(--hero-guide), var(--hero-guide)) 0 calc(100% - 1px) / 100% 1px no-repeat;
}

.hero-media,
.hero-shade,
.consultation > img,
.consultation-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media,
.consultation > img {
  object-fit: cover;
  z-index: 0;
}

.hero-media {
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 17, 38, 0.9) 0%, rgba(6, 27, 58, 0.58) 42%, rgba(6, 27, 58, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 17, 38, 0.8) 0%, rgba(4, 17, 38, 0.08) 54%);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 3;
}

.hero-content {
  margin-bottom: 58px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 520px);
  min-height: 36px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 1.02;
}

.hero-content > p {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

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

.hero-stats article {
  min-height: 112px;
  padding: 18px 24px 0 0;
}

.hero-stats strong {
  display: block;
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.hero-stats span {
  display: block;
  max-width: 190px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.45;
}

.intro {
  position: relative;
  background: var(--paper);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(6, 27, 58, 0.1), rgba(6, 27, 58, 0.055) 58%, rgba(6, 27, 58, 0)) var(--hero-guide-inset) 0 / 1px 100% no-repeat,
    linear-gradient(to bottom, rgba(6, 27, 58, 0.1), rgba(6, 27, 58, 0.055) 58%, rgba(6, 27, 58, 0)) calc(100% - var(--hero-guide-inset)) 0 / 1px 100% no-repeat;
}

.intro > .container {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(44px, 6.8vw, 112px);
  row-gap: 0;
  align-items: stretch;
}

.intro-copy {
  grid-column: 1;
  grid-row: 1;
}

.intro-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.12;
}

.js-enabled .scroll-title[data-scroll-title] {
  color: var(--muted);
}

.js-enabled .scroll-title.is-scroll-title-static {
  color: var(--ink);
}

.scroll-title-char {
  display: inline;
  color: var(--muted);
}

.intro-proof {
  grid-column: 1;
  grid-row: 2;
  margin-top: clamp(78px, 11vh, 132px);
}

.intro-proof p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.avatar-row {
  display: flex;
}

.avatar-row img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.avatar-row img + img {
  margin-left: -10px;
}

.garage-stats {
  --door-lift: -93%;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  position: relative;
  min-height: 100%;
  margin-top: 0;
  border: 1px solid rgba(6, 27, 58, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 247, 251, 0.92)),
    radial-gradient(circle at 50% 12%, rgba(200, 159, 97, 0.16), transparent 36%);
  box-shadow: 0 24px 70px rgba(6, 27, 58, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.js-enabled .garage-stats {
  --door-lift: 0%;
}

.garage-stats-grid {
  position: absolute;
  inset: clamp(48px, 5vw, 76px) clamp(48px, 5.1vw, 82px) clamp(28px, 3vw, 42px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(6, 27, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.garage-stats-grid article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2vw, 28px) clamp(22px, 2.7vw, 38px);
  border-right: 1px solid rgba(6, 27, 58, 0.08);
  border-bottom: 1px solid rgba(6, 27, 58, 0.08);
}

.garage-stats-grid article:nth-child(2n) {
  border-right: 0;
}

.garage-stats-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.garage-stats-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.3vw, 3.3rem);
  font-weight: 600;
  line-height: 0.96;
}

.garage-stats-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: clamp(0.72rem, 0.85vw, 0.88rem);
  font-weight: 600;
  line-height: 1.3;
}

.garage-door-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--navy), var(--navy)) 18px 28px / 4px calc(100% - 48px) no-repeat,
    linear-gradient(var(--navy), var(--navy)) calc(100% - 22px) 28px / 4px calc(100% - 48px) no-repeat;
}

.garage-door-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.98), rgba(10, 36, 72, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 18px, transparent 18px 36px);
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.18);
}

.garage-door-frame::after {
  content: "";
  position: absolute;
  inset: auto 26px 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(6, 27, 58, 0.2);
}

.garage-door-curtain {
  position: absolute;
  inset: 28px 28px 0;
  z-index: 1;
  border: 1px solid rgba(6, 27, 58, 0.16);
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 16%, rgba(6, 27, 58, 0.08) 72%, transparent),
    repeating-linear-gradient(
      180deg,
      #eef2f4 0,
      #d7e0e6 18px,
      #b8c7d1 19px,
      #f9fbfc 22px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 16px 28px rgba(6, 27, 58, 0.2);
  transform: translate3d(0, var(--door-lift), 0);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.garage-door-window {
  position: absolute;
  top: clamp(30px, 4vw, 48px);
  left: 50%;
  width: min(190px, 46%);
  height: 28px;
  transform: translateX(-50%);
  border: 1px solid rgba(6, 27, 58, 0.12);
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 30%, rgba(6, 27, 58, 0.12) 30% 33%),
    linear-gradient(180deg, rgba(238, 247, 251, 0.9), rgba(170, 181, 191, 0.34));
}

.garage-door-handle {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 58px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(6, 27, 58, 0.7);
}

.circle-link {
  grid-column: 11 / span 2;
  justify-self: end;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.circle-link:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.logo-strip-title {
  margin: 78px auto 24px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 2rem;
  color: var(--muted-light);
  font-size: 0.83rem;
  font-weight: 600;
}

.logo-strip span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services,
.values {
  background: var(--ice);
}

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

.service-card {
  position: relative;
  min-height: 304px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(6, 27, 58, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card-centered {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 24px) / 2);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -78px;
  right: -54px;
  border: 1px solid rgba(6, 27, 58, 0.07);
  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 27, 58, 0.18);
  box-shadow: 0 24px 70px rgba(6, 27, 58, 0.1);
}

.service-card-dark {
  background: var(--navy);
  color: var(--paper);
}

.service-card-dark::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
}

.service-card-dark .card-icon {
  background: var(--paper);
  color: var(--navy);
}

.service-card h3 {
  margin: 52px 0 14px;
  font-size: 1.03rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  padding-top: 28px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-card-dark a {
  color: var(--paper);
}

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

.bft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.bft-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.12;
}

.bft-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.bft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.bft-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.bft-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.bft-actions .button-light {
  background: var(--navy);
  color: var(--paper);
}

.bft-actions .button-light span {
  background: var(--paper);
  color: var(--navy);
}

.bft-visual {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: center;
  min-height: 460px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(6, 27, 58, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 251, 0.88)),
    repeating-linear-gradient(90deg, rgba(6, 27, 58, 0.06) 0 1px, transparent 1px 42px);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(6, 27, 58, 0.12);
}

.bft-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(6, 27, 58, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.bft-visual img {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 22px 28px rgba(6, 27, 58, 0.18));
}

.bft-metric {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(6, 27, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.bft-metric strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--bft-red);
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 600;
}

.bft-metric span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-head.services-head {
  justify-content: center;
  margin-bottom: 34px;
  text-align: center;
}

.section-head h2,
.values-copy h2,
.faq-title h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.12;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button,
.small-pill {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button.is-active,
.small-pill:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.small-pill {
  display: inline-flex;
  align-items: center;
}

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

.project-card {
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-card.is-hidden {
  display: none;
}

.project-card a,
.news-card,
.cta-tile {
  overflow: hidden;
  border-radius: var(--radius);
}

.project-card a {
  display: block;
  background: var(--ice);
  aspect-ratio: 5 / 3.6;
}

.project-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-card img,
.news-card img,
.cta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-card:hover img,
.news-card:hover img,
.cta-tile:hover img {
  transform: scale(1.045);
}

.project-card h3 {
  margin: 16px 0 3px;
  font-size: 0.93rem;
  font-weight: 600;
}

.project-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.values {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(238, 247, 251, 0.98), rgba(255, 255, 255, 0.92) 48%, rgba(238, 247, 251, 0.88)),
    repeating-linear-gradient(90deg, rgba(6, 27, 58, 0.045) 0 1px, transparent 1px 58px);
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(200, 159, 97, 0.2), rgba(200, 159, 97, 0)) var(--hero-guide-inset) 0 / 1px 100% no-repeat,
    linear-gradient(to bottom, rgba(6, 27, 58, 0.16), rgba(6, 27, 58, 0)) calc(100% - var(--hero-guide-inset)) 0 / 1px 100% no-repeat;
}

.values > .container {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.values-copy {
  grid-column: auto;
}

.values-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.value-cards {
  grid-column: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
  counter-reset: process-step;
}

.value-cards::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 159, 97, 0.15), rgba(200, 159, 97, 0.78), rgba(215, 25, 42, 0.22));
}

.value-cards article {
  position: relative;
  min-height: 236px;
  padding: 18px;
  border: 1px solid rgba(6, 27, 58, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 252, 0.9)),
    radial-gradient(circle at 18% 14%, rgba(200, 159, 97, 0.18), transparent 34%);
  box-shadow: 0 18px 52px rgba(6, 27, 58, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.value-cards article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(6, 27, 58, 0.1);
  transition: background 180ms ease;
}

.value-cards article:hover,
.value-cards article:focus-within,
.value-cards article.is-active {
  transform: translateY(-6px);
  border-color: rgba(200, 159, 97, 0.58);
  box-shadow: 0 26px 70px rgba(6, 27, 58, 0.14);
}

.value-cards article:hover::after,
.value-cards article:focus-within::after,
.value-cards article.is-active::after {
  background: linear-gradient(90deg, var(--warm), var(--bft-red));
}

.value-card-trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.value-cards strong {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #153c6d);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(6, 27, 58, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.value-cards article:hover strong,
.value-cards article:focus-within strong,
.value-cards article.is-active strong {
  background: linear-gradient(135deg, var(--warm), #a86f22);
  transform: rotate(-2deg) scale(1.04);
}

.value-card-trigger span {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.value-cards p {
  position: relative;
  z-index: 1;
  display: block;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.news-card {
  display: grid;
  background: var(--paper-soft);
}

.news-card img {
  aspect-ratio: 16 / 10;
}

.news-card div {
  padding: 18px 0 0;
}

.news-card span {
  color: var(--muted-light);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 5px 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.news-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.news-feature img {
  aspect-ratio: 4 / 2.7;
}

.news-feature h3 {
  max-width: 620px;
  font-size: 1.3rem;
}

.news-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-self: start;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 36px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

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

.contact-detail-card {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-detail-card h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-detail-card a,
.contact-detail-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-detail-card a:hover {
  color: var(--warm);
}

.contact-form-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.8vw, 46px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-form-card h3 {
  margin: 0;
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(6, 27, 58, 0.12);
  border-radius: 8px;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 0.9rem;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-field input {
  min-height: 50px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 138px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(200, 159, 97, 0.85);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(200, 159, 97, 0.16);
}

.contact-submit {
  width: max-content;
  border: 0;
  background: var(--navy);
  color: var(--paper);
}

.contact-submit span {
  background: var(--paper);
  color: var(--navy);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(24, 122, 77, 0.24);
  border-radius: 8px;
  background: rgba(24, 122, 77, 0.08);
  color: #187a4d;
  font-size: 0.84rem;
  font-weight: 600;
}

.form-status.is-error {
  border-color: rgba(178, 35, 35, 0.24);
  background: rgba(178, 35, 35, 0.08);
  color: #b22323;
}

.contact-map {
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ice);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-map-link {
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 360px;
  padding: 32px;
  color: var(--navy);
  text-align: center;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-map-link::before,
.contact-map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-map-link::before {
  z-index: -2;
  background:
    linear-gradient(35deg, rgba(6, 27, 58, 0.1) 12%, transparent 12% 22%, rgba(200, 159, 97, 0.28) 22% 30%, transparent 30% 43%, rgba(6, 27, 58, 0.12) 43% 44%, transparent 44%),
    linear-gradient(130deg, transparent 0 34%, rgba(6, 27, 58, 0.12) 34% 35%, transparent 35% 68%, rgba(200, 159, 97, 0.24) 68% 76%, transparent 76%),
    #eef7fb;
}

.contact-map-link::after {
  z-index: -1;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 24%, rgba(255, 255, 255, 0.68) 45%, rgba(255, 255, 255, 0.12) 70%);
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.28);
}

.map-pin {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border: 3px solid var(--navy);
  border-radius: 50% 50% 50% 10px;
  background: var(--paper);
  transform: rotate(-45deg);
  box-shadow: 0 18px 42px rgba(6, 27, 58, 0.18);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: var(--warm);
}

.contact-map-link > span:not(.map-pin) {
  display: grid;
  gap: 6px;
  max-width: 420px;
}

.contact-map-link strong,
.contact-map-link small {
  display: block;
}

.contact-map-link strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.15;
}

.contact-map-link small {
  color: #4d5a66;
  font-size: 0.92rem;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.faq-title {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.faq-title h2 {
  color: var(--ink);
}

.faq-list {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 500;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 1px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 180px;
}

.faq-panel p {
  margin: 0;
  padding: 0 48px 26px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-cta {
  padding: 10px 0 112px;
}

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

.cta-tile {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  color: var(--paper);
  text-align: center;
  isolation: isolate;
}

.cta-tile::before,
.cta-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-tile::before {
  background: rgba(6, 27, 58, 0.48);
  backdrop-filter: blur(1px);
}

.cta-tile::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}

.cta-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-tile span {
  max-width: 360px;
  padding: 0 24px;
  font-size: 1.28rem;
  font-weight: 500;
}

.cta-tile strong {
  position: absolute;
  left: 50%;
  bottom: 82px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(6, 27, 58, 0.46);
  transform: translateX(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.cta-tile:hover strong {
  background: var(--paper);
  color: var(--navy);
  transform: translateX(-50%) translateY(-3px);
}

.page-hero {
  min-height: clamp(580px, 72vh, 720px);
  padding-bottom: 72px;
}

.page-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 17, 38, 0.92) 0%, rgba(6, 27, 58, 0.68) 48%, rgba(6, 27, 58, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 17, 38, 0.82) 0%, rgba(4, 17, 38, 0.16) 58%);
}

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

.page-hero .hero-content h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-hero .hero-content > p {
  max-width: 720px;
}

.page-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(6, 27, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.page-kicker {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.contact-section .eyebrow,
.subpage-contact-cta .eyebrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.subpage-intro,
.service-details {
  background: var(--paper);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.split-copy h2,
.detail-copy h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.12;
}

.split-copy p,
.detail-copy p,
.cta-panel p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.split-media {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(6, 27, 58, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 251, 0.9)),
    repeating-linear-gradient(90deg, rgba(6, 27, 58, 0.055) 0 1px, transparent 1px 44px);
  box-shadow: 0 24px 80px rgba(6, 27, 58, 0.1);
}

.split-media img {
  width: min(430px, 100%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(6, 27, 58, 0.16));
}

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

.proof-card {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(6, 27, 58, 0.1);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.proof-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
}

.proof-card span {
  display: block;
  max-width: 250px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.38;
}

.service-detail-list {
  display: grid;
  gap: 30px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  border: 1px solid rgba(6, 27, 58, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(6, 27, 58, 0.08);
  overflow: hidden;
}

.detail-row-reverse .detail-media {
  order: 2;
}

.detail-media {
  min-height: 430px;
  background: var(--ice);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media-product {
  display: grid;
  place-items: center;
  padding: clamp(30px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(238, 247, 251, 0.98), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(6, 27, 58, 0.055) 0 1px, transparent 1px 42px);
}

.detail-media-product img {
  width: min(390px, 100%);
  height: auto;
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(6, 27, 58, 0.16));
}

.detail-copy {
  align-self: center;
  padding: clamp(34px, 5vw, 64px);
}

.detail-copy .card-icon {
  margin-bottom: 32px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--warm);
}

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

.gallery-grid .project-card a {
  aspect-ratio: 4 / 3.15;
}

.subpage-contact-cta {
  padding: 96px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.cta-panel h2 {
  max-width: 740px;
  color: var(--paper);
}

.cta-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer {
  position: relative;
  padding: 86px 0 42px;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.75fr);
  gap: 46px;
}

.footer-brand p {
  max-width: 360px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.footer-wordmark {
  position: absolute;
  right: -28px;
  bottom: -82px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8.4rem;
  font-weight: 500;
  line-height: 0.8;
  white-space: nowrap;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .hero .reveal,
.js-enabled .page-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1024px) {
  .section {
    padding: 92px 0;
  }

  .nav-pill {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-content h1 {
    max-width: 680px;
    font-size: 3.55rem;
  }

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

  .intro-grid {
    column-gap: 34px;
  }

  .intro-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .intro-copy h2,
  .section-head h2,
  .values-copy h2,
  .faq-title h2,
  .bft-copy h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .intro-proof {
    grid-column: 1;
    grid-row: 2;
    margin-top: clamp(58px, 8vh, 86px);
  }

  .garage-stats {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 100%;
  }

  .circle-link {
    grid-column: 10 / span 3;
  }

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

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

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

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

  .news-grid,
  .bft-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 34px;
  }

  .footer-grid {
    gap: 34px;
  }

  .contact-form-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .mobile-panel {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding-block: 12px;
  }

  .nav-cta {
    display: none;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 790px;
    padding: 136px 0 28px;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 38, 0.91) 0%, rgba(6, 27, 58, 0.7) 70%, rgba(6, 27, 58, 0.3) 100%),
      linear-gradient(0deg, rgba(4, 17, 38, 0.86) 0%, rgba(4, 17, 38, 0.18) 58%);
  }

  .hero-content {
    margin-bottom: 42px;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .hero-content h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hero-content > p {
    font-size: 0.92rem;
  }

  .hero-stats {
    gap: 0;
  }

  .hero-stats article {
    min-height: 100px;
    padding: 18px 12px 0 0;
  }

  .hero-stats strong {
    font-size: 1.35rem;
  }

  .section {
    padding: 76px 0;
  }

  .intro-grid {
    display: block;
  }

  .intro-copy h2,
  .section-head h2,
  .values-copy h2,
  .faq-title h2,
  .bft-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .intro-proof {
    margin-top: 38px;
  }

  .garage-stats {
    min-height: 270px;
    margin-top: 42px;
  }

  .garage-stats-grid {
    inset: 32px 34px 30px;
  }

  .circle-link {
    margin-top: 28px;
    justify-self: start;
  }

  .logo-strip,
  .project-grid,
  .value-cards,
  .news-side,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    margin-top: 0;
  }

  .logo-strip-title {
    margin-top: 54px;
    margin-bottom: 20px;
    text-align: left;
  }

  .service-card,
  .value-cards article {
    min-height: auto;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .project-card a {
    aspect-ratio: 4 / 3;
  }

  .values-copy p,
  .contact-copy p {
    font-size: 0.88rem;
  }

  .value-cards {
    margin-top: 42px;
  }

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

  .news-grid {
    gap: 34px;
  }

  .bft-visual {
    min-height: 360px;
  }

  .bft-metric,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map-link {
    min-height: 360px;
  }

  .faq-item button {
    min-height: 72px;
    font-size: 0.95rem;
  }

  .faq-panel p {
    padding-right: 0;
  }

  .visual-cta {
    padding-bottom: 76px;
  }

  .cta-tile {
    min-height: 300px;
  }

  .footer {
    padding-top: 70px;
  }

  .footer-bottom {
    display: grid;
    min-height: 100px;
  }

  .footer-wordmark {
    right: auto;
    left: -8px;
    bottom: -54px;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
}

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

  .service-card-centered {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 760px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats article,
  .hero-stats article:nth-child(2) {
    min-height: 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .hero-stats span {
    max-width: none;
  }

  .garage-stats {
    min-height: 300px;
  }

  .garage-stats-grid {
    inset: 34px 28px 30px;
  }

  .garage-stats-grid strong {
    font-size: 1.8rem;
  }

  .button {
    width: 100%;
  }

  .consultation-actions .button {
    width: auto;
  }
}

@media (max-width: 1024px) {
  .page-hero {
    min-height: 620px;
  }

  .split-grid,
  .detail-row,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .detail-row-reverse .detail-media {
    order: 0;
  }

  .detail-media {
    min-height: 360px;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }

  .split-copy h2,
  .detail-copy h2,
  .cta-panel h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 620px;
    padding: 132px 0 48px;
  }

  .page-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 38, 0.96) 0%, rgba(6, 27, 58, 0.86) 78%, rgba(6, 27, 58, 0.52) 100%),
      linear-gradient(0deg, rgba(4, 17, 38, 0.9) 0%, rgba(4, 17, 38, 0.2) 58%);
  }

  .page-hero .hero-content h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .page-hero .hero-content > p {
    font-size: 0.92rem;
  }

  .split-copy h2,
  .detail-copy h2,
  .cta-panel h2 {
    font-size: 2rem;
  }

  .split-grid,
  .service-detail-list {
    gap: 22px;
  }

  .split-media {
    min-height: 320px;
  }

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

  .detail-row {
    display: block;
  }

  .detail-media {
    min-height: 286px;
  }

  .detail-copy {
    padding: 28px;
  }

  .subpage-contact-cta {
    padding: 76px 0;
  }

  .cta-actions {
    display: grid;
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .page-hero {
    min-height: 640px;
  }

  .page-kicker,
  .eyebrow {
    margin-bottom: 14px;
  }

  .proof-card {
    min-height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

  .js-enabled .garage-stats {
    --door-lift: -93%;
  }
}
.credits-link {
  color: white;
}

.credits-link:hover {
  color: rgba(255, 255, 255, 0.48);
}
