:root {
  --ink: #081019;
  --ink-2: #0c1722;
  --ink-3: #132432;
  --paper: #f3f1eb;
  --white: #ffffff;
  --muted: #a9b4bd;
  --muted-dark: #5e6870;
  --blue: #1283c3;
  --blue-bright: #2aa8eb;
  --blue-deep: #075788;
  --orange: #ff6b2c;
  --orange-hot: #ff4b18;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 16, 25, 0.16);
  --header-height: 78px;
  --concept-height: 34px;
  --page-pad: clamp(20px, 4vw, 72px);
  --content-width: 1540px;
  --display: "Barlow Condensed", "Liberation Sans Narrow", "Arial Narrow", "DejaVu Sans Condensed", sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.concept-bar {
  position: relative;
  z-index: 120;
  height: var(--concept-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--page-pad);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.concept-bar__detail { opacity: .72; font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 16, 25, .76);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(8, 16, 25, .95);
  box-shadow: 0 14px 44px rgba(0,0,0,.2);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.wordmark__logo {
  display:block;
  width:clamp(184px, 17vw, 226px);
  height:auto;
  max-height:54px;
}
.wordmark__mark {
  width: 44px;
  height: 32px;
  overflow: visible;
}
.wordmark__mark path {
  fill: none;
  stroke: var(--blue-bright);
  stroke-width: 3.2;
  stroke-linecap: round;
}
.wordmark__mark rect { fill: var(--white); }
.wordmark__number {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.035em;
}
.wordmark__name {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  line-height: .8;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.wordmark__name small {
  margin-top: 5px;
  color: var(--blue-bright);
  font-size: 9px;
  letter-spacing: .28em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
  transition: right .3s var(--ease);
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.header-call svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 50%;
  background: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: calc(var(--concept-height) + var(--header-height)) 0 0;
  z-index: 105;
  visibility: hidden;
  opacity: 0;
  background: rgba(8,16,25,.98);
  transform: translateY(-16px);
  transition: opacity .35s ease, transform .35s var(--ease), visibility .35s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu__inner {
  height: 100%;
  padding: 38px var(--page-pad) 120px;
  overflow-y: auto;
}
.mobile-menu nav { display: grid; margin-top: 28px; border-top: 1px solid var(--line-dark); }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(36px, 9vw, 54px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}
.mobile-menu nav a span {
  color: var(--blue-bright);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .1em;
}
.mobile-menu__contact { display: grid; gap: 12px; margin-top: 30px; color: var(--muted); font-size: 14px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 2px; background: var(--orange); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--concept-height) - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(56px, 7vh, 105px) var(--page-pad) clamp(78px, 10vh, 124px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(18,131,195,.23), transparent 34%),
    linear-gradient(135deg, var(--ink) 0%, #07131d 46%, #0b1822 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  left: -32vw;
  bottom: -38vw;
  border: 1px solid rgba(42,168,235,.26);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(42,168,235,.03), 0 0 0 104px rgba(42,168,235,.025);
}
.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.hero__copy { position: relative; z-index: 3; max-width: 710px; }
.hero__copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 7.6vw, 138px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero__copy h1 > span, .hero__copy h1 > em { display: block; white-space: nowrap; }
.hero__copy h1 em { color: var(--orange); font-style: normal; }
.hero__lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: #c7d0d7;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.button--primary { background: var(--orange); color: var(--white); box-shadow: 0 14px 34px rgba(255,107,44,.2); }
.button--primary:hover { background: var(--orange-hot); box-shadow: 0 18px 42px rgba(255,75,24,.28); }
.button--ghost { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.02); color: var(--white); }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button--full { width: 100%; }
.hero__location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #9eabb5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: uppercase;
}
.hero__location svg { width: 24px; height: 24px; fill: none; stroke: var(--blue-bright); stroke-width: 1.7; }

.hero__visual {
  position: relative;
  width: min(100%, 850px);
  justify-self: end;
  padding: 5% 7% 9% 0;
}
.hero__image-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-2);
  clip-path: polygon(9% 0, 100% 0, 100% 88%, 83% 100%, 0 100%, 0 14%);
  box-shadow: var(--shadow);
}
.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,11,17,.05), transparent 48%, rgba(5,11,17,.55));
}
.hero__image-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: hero-breathe 12s ease-in-out infinite alternate; }
@keyframes hero-breathe { to { transform: scale(1.095) translate3d(-1.5%, -1%, 0); } }
.hero__scan {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  filter: drop-shadow(0 0 10px var(--blue-bright));
  opacity: .7;
  animation: scan 5.5s ease-in-out infinite;
}
@keyframes scan { 0%, 18% { top: 5%; opacity: 0; } 30% { opacity: .7; } 72% { opacity: .7; } 88%, 100% { top: 94%; opacity: 0; } }
.hero__inset {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: clamp(165px, 20vw, 270px);
  margin: 0;
  padding: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0,0,0,.4);
}
.hero__inset img { width: 100%; height: auto; aspect-ratio: 4 / 4.6; object-fit: cover; }
.hero__inset figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__inset figcaption span { color: var(--blue); font-size: 11px; }
.hero__stamp {
  position: absolute;
  z-index: 3;
  left: -34px;
  bottom: 3%;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 0 0 8px rgba(18,131,195,.13);
  transform: rotate(-8deg);
  text-transform: uppercase;
}
.hero__stamp span, .hero__stamp small { font-size: 8px; font-weight: 800; letter-spacing: .24em; }
.hero__stamp strong { font-family: var(--display); font-size: 44px; line-height: .9; }
.hero__line {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 17%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--blue-bright), transparent);
  opacity: .55;
}
.scroll-cue {
  position: absolute;
  left: var(--page-pad);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 62px; height: 1px; background: rgba(255,255,255,.25); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: scroll-line 2.2s ease-in-out infinite; }
@keyframes scroll-line { 50%, 100% { transform: translateX(100%); } }

.proof-rail { position: relative; z-index: 5; background: var(--paper); color: var(--ink); overflow: hidden; }
.proof-rail__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--content-width);
  margin: 0 auto;
}
.proof-rail__item {
  min-height: 142px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line-light);
}
.proof-rail__item:last-child { border-right: 0; }
.proof-rail__item strong {
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 84px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.04em;
}
.proof-rail__item span { font-size: 11px; font-weight: 800; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.proof-rail__item small { color: var(--muted-dark); font-size: 8px; letter-spacing: .1em; }
.proof-rail__item--blue { background: var(--blue); color: var(--white); }
.proof-rail__item--blue small { color: rgba(255,255,255,.72); }
.proof-rail__item--outline { background: var(--ink); color: var(--white); }
.proof-rail__item--outline small { color: var(--muted); }

.section { position: relative; padding: clamp(88px, 10vw, 170px) var(--page-pad); }
.section-heading { max-width: 920px; margin-bottom: clamp(56px, 7vw, 104px); }
.section-heading h2, .social__intro h2, .contact__copy h2, .proof-story__copy h2, .shop-story__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 116px);
  font-weight: 900;
  line-height: .83;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading > p:last-child, .social__intro > p:last-child, .contact__copy > p, .proof-story__copy > p, .shop-story__copy > p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted-dark);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
}
.section-index {
  position: absolute;
  right: var(--page-pad);
  top: 54px;
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 190px);
  font-weight: 900;
  line-height: 1;
  color: rgba(8,16,25,.055);
}

.services { background: var(--paper); color: var(--ink); overflow: hidden; }
.service-explorer {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(280px, .74fr) minmax(350px, .9fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 72px);
}
.service-explorer__media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%);
}
.service-explorer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,16,25,.72), transparent 48%);
}
.service-explorer__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .28s ease, transform .7s var(--ease); }
.service-explorer__media.is-changing img { opacity: .18; transform: scale(1.04); }
.service-explorer__media-label {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: var(--white);
}
.service-explorer__media-label span { font-family: var(--display); font-size: 66px; font-weight: 900; line-height: .72; }
.service-explorer__media-label small { padding-bottom: 4px; font-size: 8px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.service-explorer__crosshair {
  position: absolute;
  z-index: 3;
  right: 26px;
  top: 26px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
}
.service-explorer__crosshair::before, .service-explorer__crosshair::after { content: ""; position: absolute; background: rgba(255,255,255,.5); }
.service-explorer__crosshair::before { left: 50%; top: -12px; bottom: -12px; width: 1px; }
.service-explorer__crosshair::after { top: 50%; left: -12px; right: -12px; height: 1px; }
.service-explorer__controls { align-self: center; border-top: 1px solid var(--line-light); }
.service-tab {
  position: relative;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: var(--muted-dark);
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, padding .35s var(--ease);
}
.service-tab::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width .4s var(--ease);
}
.service-tab span { font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.service-tab strong { font-family: var(--display); font-size: clamp(22px, 2vw, 31px); font-weight: 800; line-height: 1; text-transform: uppercase; }
.service-tab i { position: relative; width: 22px; height: 22px; border: 1px solid currentColor; border-radius: 50%; opacity: .45; }
.service-tab i::before, .service-tab i::after { content: ""; position: absolute; background: currentColor; }
.service-tab i::before { width: 8px; height: 1px; left: 6px; top: 10px; }
.service-tab i::after { width: 1px; height: 8px; left: 10px; top: 6px; transition: transform .25s ease; }
.service-tab:hover, .service-tab.is-active { color: var(--ink); padding-left: 10px; }
.service-tab.is-active::before { width: 100%; }
.service-tab.is-active i { background: var(--ink); color: var(--white); opacity: 1; border-color: var(--ink); }
.service-tab.is-active i::after { transform: rotate(90deg); }
.service-explorer__detail { align-self: center; padding: 12px 0; transition: opacity .25s ease, transform .25s ease; }
.service-explorer__detail.is-changing { opacity: 0; transform: translateY(10px); }
.service-explorer__detail .eyebrow { color: var(--blue); }
.service-explorer__detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.service-explorer__detail > p:not(.eyebrow) { margin: 24px 0; color: var(--muted-dark); font-size: 16px; line-height: 1.75; }
.service-explorer__detail ul { list-style: none; display: grid; gap: 10px; margin: 0 0 30px; padding: 0; }
.service-explorer__detail li { position: relative; padding-left: 22px; font-size: 13px; font-weight: 700; }
.service-explorer__detail li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 2px; background: var(--blue); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.text-link span { color: var(--orange); font-size: 18px; }

.proof-story {
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, .8fr) minmax(300px, .72fr);
  grid-template-areas:
    "number copy image"
    "cards cards image";
  align-items: center;
  gap: clamp(30px, 5vw, 88px);
  overflow: hidden;
  background: var(--ink);
}
.proof-story::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  background: linear-gradient(135deg, rgba(18,131,195,.26), transparent 68%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.proof-story__number {
  grid-area: number;
  position: relative;
  z-index: 1;
  align-self: start;
  font-family: var(--display);
  font-size: clamp(180px, 24vw, 430px);
  font-weight: 900;
  line-height: .62;
  letter-spacing: -.075em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
}
.proof-story__copy { grid-area: copy; position: relative; z-index: 2; }
.proof-story__copy h2 { font-size: clamp(60px, 6vw, 104px); }
.proof-story__copy > p { color: #aebac3; }
.proof-story__links { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; }
.proof-story__links a { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.proof-story__links span { color: var(--orange); }
.proof-story__cards { grid-area: cards; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line-dark); }
.proof-story__cards article { min-height: 180px; display: flex; align-items: center; gap: 24px; padding: 28px; background: var(--ink-2); }
.proof-story__rating { min-width: 105px; color: var(--blue-bright); font-family: var(--display); font-size: 72px; font-weight: 900; line-height: .8; }
.proof-story__cards strong { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.proof-story__cards p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.proof-story__image { grid-area: image; position: relative; height: min(760px, 72vw); max-height: 790px; align-self: stretch; overflow: hidden; }
.proof-story__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,25,.72), transparent 55%); }
.proof-story__image img { width: 100%; height: 100%; object-fit: cover; }
.proof-story__image span {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.shop-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}
.shop-story::before {
  content: "";
  position: absolute;
  right: -18vw;
  top: -30vw;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02);
}
.shop-story__media { position: relative; min-height: 620px; margin-left: calc(var(--page-pad) * -1); overflow: hidden; clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); }
.shop-story__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,16,25,.5), transparent 55%); }
.shop-story__media img { width: 100%; height: 100%; object-fit: cover; }
.shop-story__media-tag {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: 38px;
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  text-transform: uppercase;
}
.shop-story__media-tag span { font-size: 18px; font-weight: 700; letter-spacing: .14em; }
.shop-story__media-tag strong { font-size: clamp(54px, 7vw, 104px); line-height: .76; }
.shop-story__copy { position: relative; z-index: 2; max-width: 650px; }
.shop-story__copy > p { color: rgba(255,255,255,.78); }
.shop-story__copy blockquote { position: relative; margin: 38px 0 0; padding: 24px 0 0 56px; border-top: 1px solid rgba(255,255,255,.3); }
.shop-story__copy blockquote span { position: absolute; left: 0; top: 6px; font-family: Georgia, serif; font-size: 68px; line-height: 1; color: rgba(255,255,255,.4); }
.shop-story__copy blockquote p { margin: 0; font-family: var(--display); font-size: clamp(25px, 2.6vw, 38px); font-weight: 700; line-height: 1.05; text-transform: uppercase; }

.process { background: var(--paper); color: var(--ink); }
.section-heading--compact { margin-bottom: 54px; }
.process__steps { max-width: var(--content-width); margin: 0 auto; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process__steps li { min-height: 300px; display: grid; grid-template-rows: auto 1fr; gap: 64px; padding: 24px 34px 34px; border-right: 1px solid var(--line-light); }
.process__steps li:last-child { border-right: 0; }
.process__steps > li > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.process__steps h3 { margin: 0 0 16px; font-family: var(--display); font-size: clamp(35px, 3vw, 50px); font-weight: 900; line-height: .92; text-transform: uppercase; }
.process__steps p { margin: 0; color: var(--muted-dark); font-size: 13px; line-height: 1.75; }

.social { background: #0a1118; overflow: hidden; }
.social::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.social__intro { position: relative; z-index: 1; max-width: 950px; margin-bottom: 64px; }
.social__intro > p:last-child { color: var(--muted); }
.social__rail { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.5vw, 34px); max-width: 1360px; margin: 0 auto; }
.social-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
  transition: transform .45s var(--ease);
}
.social-card:nth-child(2) { transform: translateY(44px); }
.social-card:hover { transform: translateY(-8px); }
.social-card:nth-child(2):hover { transform: translateY(34px); }
.social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.social-card:hover img { transform: scale(1.045); }
.social-card__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,15,.94) 0%, rgba(5,10,15,.2) 64%, rgba(5,10,15,.48) 100%); }
.social-card__shade::after { content: ""; position: absolute; left: -15%; right: -15%; bottom: 21%; height: 15%; background: var(--blue); transform: rotate(-5deg); mix-blend-mode: multiply; opacity: .9; }
.social-card--brakes .social-card__shade::after { background: var(--orange); transform: rotate(6deg); }
.social-card--maintenance .social-card__shade::after { background: var(--blue); transform: rotate(-3deg); }
.social-card__brand { position: absolute; left: 24px; right: 24px; top: 22px; display: flex; align-items: baseline; gap: 7px; font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.social-card__brand span { font-size: 30px; font-weight: 900; }
.social-card__copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.social-card__copy small { display: block; margin-bottom: 14px; color: var(--blue-bright); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.social-card--brakes .social-card__copy small { color: #ff9a61; }
.social-card__copy strong { display: block; font-family: var(--display); font-size: clamp(52px, 5vw, 76px); font-weight: 900; line-height: .76; letter-spacing: -.025em; text-transform: uppercase; }
.social-card__copy > span { display: block; margin-top: 24px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.3); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.social__note { position: relative; z-index: 1; max-width: 760px; margin: 92px auto 0; color: var(--muted); font-size: 11px; text-align: center; }

.contact {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  min-height: 880px;
  background: var(--blue-deep);
  overflow: hidden;
}
.contact::before { content: "1660"; position: absolute; left: -2vw; bottom: -7vw; color: rgba(255,255,255,.045); font-family: var(--display); font-size: 34vw; font-weight: 900; line-height: .6; letter-spacing: -.07em; }
.contact__copy { position: relative; z-index: 2; }
.contact__copy > p { color: rgba(255,255,255,.77); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact .button--ghost { border-color: rgba(255,255,255,.48); }
.contact__details { display: grid; grid-template-columns: repeat(3, 1fr); margin: 48px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.25); }
.contact__details div { padding: 18px 18px 0 0; }
.contact__details dt { margin-bottom: 8px; color: rgba(255,255,255,.55); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact__details dd { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.6; }
.route-map { position: relative; aspect-ratio: 1.1 / 1; border: 1px solid rgba(255,255,255,.18); background: rgba(8,16,25,.18); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.route-map::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(4,13,21,.45); pointer-events: none; }
.route-map svg { width: 100%; height: 100%; }
.route-map__minor { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 6; }
.route-map__major { fill: none; stroke: var(--orange); stroke-width: 10; stroke-dasharray: 16 13; animation: route-dash 16s linear infinite; }
@keyframes route-dash { to { stroke-dashoffset: -232; } }
.route-map__pulse { fill: none; stroke: rgba(42,168,235,.7); stroke-width: 2; transform-origin: 407px 416px; animation: map-pulse 2.6s ease-out infinite; }
@keyframes map-pulse { from { transform: scale(.3); opacity: .9; } to { transform: scale(1.65); opacity: 0; } }
.route-map__pin { fill: var(--white); }
.route-map__pointer { fill: var(--blue-bright); transform: translateY(-28px); }
.route-map__label { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 16px 18px; background: var(--paper); color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.23); }
.route-map__label small { display: block; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.route-map__label strong { display: block; margin: 4px 0; font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.route-map__label span { color: var(--muted-dark); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.route-map__north { position: absolute; z-index: 2; right: 22px; top: 18px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-family: var(--display); font-size: 20px; font-weight: 800; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 64px var(--page-pad) 110px;
  background: #050b10;
  border-top: 1px solid var(--line-dark);
}
.site-footer__brand { display: flex; align-items: flex-end; gap: 18px; }
.site-footer__brand > span { font-family: var(--display); font-size: clamp(80px, 10vw, 150px); font-weight: 900; line-height: .62; letter-spacing: -.05em; }
.site-footer__brand p { margin: 0; color: var(--muted); font-family: var(--display); font-size: 18px; font-weight: 700; line-height: .95; text-transform: uppercase; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__links a { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.25); }
.site-footer__note { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 20px; border-top: 1px solid var(--line-dark); color: #697681; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }


/* V3.6.9.4 — final Facebook handoff links. */
.site-footer__links .site-footer__facebook-v3694 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px 5px;
  border: 1px solid rgba(21,150,210,.45);
  border-radius: 999px;
  color: #dff5ff;
  background: rgba(21,150,210,.08);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.site-footer__links .site-footer__facebook-v3694:hover {
  border-color: rgba(21,150,210,.9);
  background: rgba(21,150,210,.17);
  transform: translateY(-1px);
}
.facebook-mark-v3694 {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.contact-facebook-v3694 { margin: 18px 0 0; }
.contact-facebook-v3694 a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(21,150,210,.34);
  background: rgba(21,150,210,.08);
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-facebook-v3694 a:hover {
  border-color: rgba(21,150,210,.85);
  background: rgba(21,150,210,.15);
  transform: translateY(-1px);
}
.contact-facebook-v3694 a > span:last-child { color: var(--blue-bright); }

.mobile-dock { display: none; }

.estimate-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(880px, calc(100svh - 34px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
  overflow: auto;
}
.estimate-dialog::backdrop { background: rgba(2,7,11,.78); backdrop-filter: blur(8px); }
.estimate-form { padding: clamp(24px, 5vw, 54px); }
.estimate-form__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.estimate-form__header h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 82px); font-weight: 900; line-height: .8; letter-spacing: -.03em; text-transform: uppercase; }
.estimate-form__header .eyebrow { color: var(--blue); }
.estimate-close { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; cursor: pointer; }
.estimate-close svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.estimate-form__intro { max-width: 590px; margin: 24px 0 30px; color: var(--muted-dark); font-size: 13px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.estimate-form label { display: grid; gap: 8px; margin-bottom: 16px; }
.estimate-form label > span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.estimate-form input, .estimate-form select, .estimate-form textarea {
  width: 100%;
  border: 1px solid rgba(8,16,25,.2);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.estimate-form input, .estimate-form select { min-height: 52px; padding: 0 14px; }
.estimate-form textarea { padding: 14px; resize: vertical; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,131,195,.12); }
.estimate-form input::placeholder, .estimate-form textarea::placeholder { color: #929a9f; }
.estimate-form .consent-row { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; margin: 2px 0 20px; }
.estimate-form .consent-row input { width: 17px; height: 17px; min-height: 0; margin-top: 2px; accent-color: var(--blue); }
.estimate-form .consent-row span { color: var(--muted-dark); font-size: 10px; font-weight: 600; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.estimate-form__fineprint { margin: 14px 0 0; color: #7a858c; font-size: 9px; text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --header-height: 72px; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); }
  .service-explorer { grid-template-columns: minmax(300px, .9fr) minmax(280px, 1fr); grid-template-areas: "media controls" "media detail"; }
  .service-explorer__media { grid-area: media; min-height: 720px; }
  .service-explorer__controls { grid-area: controls; align-self: end; }
  .service-explorer__detail { grid-area: detail; align-self: start; }
  .proof-story { grid-template-columns: minmax(240px,.7fr) minmax(340px,1fr); grid-template-areas: "number copy" "cards image"; }
  .proof-story__image { height: 620px; }
  .proof-story__cards { grid-template-columns: 1fr; }
  .proof-story__cards article { min-height: 150px; }
  .contact { grid-template-columns: 1fr 1fr; gap: 50px; }
  .contact__details { grid-template-columns: 1fr; }
  .contact__details div { padding-top: 14px; }
}

@media (max-width: 900px) {
  :root { --page-pad: 24px; }
  .header-call span { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 58px;
    padding-bottom: 82px;
  }
  .hero__copy { max-width: 760px; }
  .hero__copy h1 { font-size: clamp(72px, 14vw, 118px); }
  .hero__visual { width: 92%; justify-self: end; }
  .scroll-cue { display: none; }
  .proof-rail__track { grid-template-columns: repeat(4, minmax(240px, 1fr)); width: max-content; }
  .proof-rail { overflow-x: auto; scrollbar-width: none; }
  .proof-rail::-webkit-scrollbar { display: none; }
  .proof-rail__item { width: 240px; }
  .service-explorer { grid-template-columns: 1fr; grid-template-areas: "media" "controls" "detail"; }
  .service-explorer__media { min-height: 620px; max-height: 760px; }
  .service-explorer__controls { display: flex; overflow-x: auto; border-top: 0; scrollbar-width: none; }
  .service-explorer__controls::-webkit-scrollbar { display: none; }
  .service-tab { flex: 0 0 230px; min-height: 88px; border-top: 1px solid var(--line-light); padding-right: 10px; }
  .service-tab:hover, .service-tab.is-active { padding-left: 8px; }
  .proof-story { grid-template-columns: 1fr; grid-template-areas: "number" "copy" "image" "cards"; min-height: auto; }
  .proof-story__number { margin-bottom: -30px; font-size: clamp(190px, 48vw, 380px); }
  .proof-story__copy { max-width: 720px; }
  .proof-story__image { height: 680px; }
  .proof-story__cards { grid-template-columns: 1fr 1fr; }
  .shop-story { grid-template-columns: 1fr; }
  .shop-story__media { min-height: 560px; margin: 0 calc(var(--page-pad) * -1); clip-path: polygon(0 0, 100% 0, 100% 90%, 84% 100%, 0 100%); }
  .shop-story__copy { max-width: 760px; }
  .process__steps { grid-template-columns: 1fr; }
  .process__steps li { min-height: 210px; grid-template-columns: 60px 1fr; grid-template-rows: 1fr; gap: 0; border-right: 0; border-bottom: 1px solid var(--line-light); padding: 30px 0; }
  .process__steps li:last-child { border-bottom: 0; }
  .social__rail { display: flex; gap: 18px; overflow-x: auto; padding: 0 7vw 52px 0; margin-right: calc(var(--page-pad) * -1); scroll-snap-type: x mandatory; scrollbar-width: none; }
  .social__rail::-webkit-scrollbar { display: none; }
  .social-card { flex: 0 0 min(72vw, 420px); scroll-snap-align: start; }
  .social-card:nth-child(2) { transform: none; }
  .social-card:nth-child(2):hover { transform: translateY(-8px); }
  .social__note { margin-top: 28px; }
  .contact { grid-template-columns: 1fr; min-height: auto; }
  .contact__details { grid-template-columns: repeat(3, 1fr); }
  .route-map { max-width: 720px; width: 100%; justify-self: center; }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 19px;
    --concept-height: 30px;
    --header-height: 64px;
  }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .concept-bar { justify-content: center; padding: 0 12px; font-size: 8px; letter-spacing: .16em; }
  .concept-bar__detail { display: none; }
  .site-header { padding: 0 14px 0 17px; gap: 10px; }
  .wordmark { gap: 7px; }
  .wordmark__logo { width: 150px; max-height: 44px; }
  .wordmark__mark { width: 35px; height: 27px; }
  .wordmark__number { font-size: 30px; }
  .wordmark__name { font-size: 13px; }
  .wordmark__name small { margin-top: 4px; font-size: 7px; }
  .header-actions { gap: 7px; }
  .header-call svg { width: 40px; height: 40px; padding: 10px; border: 1px solid rgba(255,255,255,.2); background: transparent; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-menu { inset: calc(var(--concept-height) + var(--header-height)) 0 calc(72px + env(safe-area-inset-bottom)); }
  .mobile-menu__inner { padding-top: 30px; padding-bottom: 50px; }

  .hero { gap: 30px; padding: 42px var(--page-pad) 58px; }
  .hero::before { width: 96vw; height: 96vw; left: -74vw; bottom: -56vw; }
  .hero__grid { background-size: 42px 42px; }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero__copy h1 { font-size: clamp(54px, 15.2vw, 63px); line-height: .82; }
  .hero__lede { margin-top: 23px; font-size: 14px; line-height: 1.7; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 26px; }
  .hero__actions .button { min-height: 50px; padding: 0 13px; font-size: 9px; }
  .hero__actions .button--primary { grid-column: 1 / -1; }
  .hero__location { margin-top: 22px; }
  .hero__visual { width: calc(100% + 2px); justify-self: center; padding: 0 0 19% 0; }
  .hero__image-frame { aspect-ratio: 4 / 3.25; clip-path: polygon(8% 0,100% 0,100% 88%,84% 100%,0 100%,0 12%); }
  .hero__inset { width: 132px; right: 5px; padding: 5px; }
  .hero__inset figcaption { padding: 7px 2px 1px; font-size: 6px; }
  .hero__inset figcaption span { font-size: 8px; }
  .hero__stamp { left: 4px; bottom: 1%; width: 88px; height: 88px; }
  .hero__stamp strong { font-size: 31px; }
  .hero__stamp span, .hero__stamp small { font-size: 5px; }
  .hero__line { display: none; }

  .proof-rail__item { min-height: 112px; width: 210px; padding: 18px 20px; gap: 14px; }
  .proof-rail__item strong { font-size: 52px; }
  .proof-rail__item span { font-size: 9px; }

  .section { padding: 82px var(--page-pad); }
  .section-index { top: 28px; font-size: 92px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .social__intro h2, .contact__copy h2, .proof-story__copy h2, .shop-story__copy h2 { font-size: clamp(52px, 15vw, 68px); line-height: .84; }
  .section-heading > p:last-child, .social__intro > p:last-child, .contact__copy > p, .proof-story__copy > p, .shop-story__copy > p { margin-top: 20px; font-size: 14px; line-height: 1.72; }
  .eyebrow { margin-bottom: 14px; font-size: 8px; }

  .service-explorer { gap: 26px; }
  .service-explorer__media { min-height: 0; aspect-ratio: 4 / 5; }
  .service-explorer__media-label { left: 18px; bottom: 17px; }
  .service-explorer__media-label span { font-size: 52px; }
  .service-explorer__crosshair { right: 19px; top: 19px; width: 42px; height: 42px; }
  .service-tab { flex-basis: 205px; min-height: 78px; grid-template-columns: 27px 1fr 21px; }
  .service-tab strong { font-size: 24px; }
  .service-explorer__detail h3 { font-size: 46px; }
  .service-explorer__detail > p:not(.eyebrow) { font-size: 14px; }

  .proof-story { gap: 30px; }
  .proof-story__number { margin: 0 0 -25px; font-size: 190px; }
  .proof-story__image { height: 540px; }
  .proof-story__cards { grid-template-columns: 1fr; }
  .proof-story__cards article { min-height: 150px; padding: 22px; }
  .proof-story__rating { min-width: 84px; font-size: 60px; }
  .proof-story__cards strong { font-size: 22px; }

  .shop-story__media { min-height: 430px; }
  .shop-story__media-tag { left: var(--page-pad); bottom: 28px; }
  .shop-story__media-tag span { font-size: 12px; }
  .shop-story__media-tag strong { font-size: 57px; }
  .shop-story__copy blockquote { padding-left: 45px; }
  .shop-story__copy blockquote p { font-size: 27px; }

  .process__steps li { grid-template-columns: 42px 1fr; min-height: 180px; padding: 25px 0; }
  .process__steps h3 { font-size: 35px; }
  .process__steps p { font-size: 12px; }

  .social__intro { margin-bottom: 42px; }
  .social-card { flex-basis: 82vw; }
  .social-card__brand { left: 18px; right: 18px; top: 17px; }
  .social-card__copy { left: 18px; right: 18px; bottom: 19px; }
  .social-card__copy strong { font-size: 58px; }

  .contact { gap: 48px; }
  .contact__actions { display: grid; grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr; margin-top: 36px; }
  .contact__details div { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .route-map { aspect-ratio: .94 / 1; margin: 0 calc(var(--page-pad) * -1); width: calc(100% + var(--page-pad) * 2); }
  .route-map__label { left: 16px; bottom: 16px; padding: 13px 14px; }
  .route-map__label strong { font-size: 25px; }

  .site-footer { grid-template-columns: 1fr; align-items: start; padding: 56px var(--page-pad) 50px; }
  .site-footer__brand > span { font-size: 94px; }
  .site-footer__links { justify-content: flex-start; }
  .site-footer__note { margin-top: 10px; }

  .mobile-dock {
    position: fixed;
    z-index: 130;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(72px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255,255,255,.15);
    background: rgba(7,14,20,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -12px 34px rgba(0,0,0,.26);
  }
  .mobile-dock a, .mobile-dock button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
  }
  .mobile-dock > :last-child { border-right: 0; background: var(--orange); }
  .mobile-dock svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }

  .estimate-dialog {
    width: 100%;
    max-width: none;
    max-height: 92svh;
    margin: auto 0 0;
    border-radius: 18px 18px 0 0;
  }
  .estimate-form { padding: 27px 19px calc(28px + env(safe-area-inset-bottom)); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .estimate-form__header h2 { font-size: 54px; }
  .estimate-form__intro { margin: 20px 0 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Guard against headline min-content overflow when web fonts are unavailable. */
.hero__copy,
.hero__visual { min-width: 0; }

@media (max-width: 620px) {
  .hero__copy h1 { font-size: clamp(48px, 12.8vw, 53px); }
  .hero__copy h1 em { font-size: .9em; letter-spacing: -.055em; }
}

/* Final responsive refinements. */
.hero__image-frame::after {
  background:
    linear-gradient(90deg, rgba(5, 11, 17, .76) 0%, rgba(5, 11, 17, .15) 26%, transparent 46%),
    linear-gradient(135deg, rgba(5, 11, 17, .04), transparent 48%, rgba(5, 11, 17, .55));
}

@media (max-width: 620px) {
  .hero__copy h1 { font-size: clamp(40px, 12.8vw, 53px); }
  .social-card__copy strong { font-size: 50px; }
}
