/* ============================================================
   UNIQUE COLLISION — Chamblee, GA
   Deep navy · steel blue · chrome. Display: Michroma. Body: Inter.
   ============================================================ */

:root {
  --bg-0: #070C15;
  --bg-1: #0B1322;
  --bg-2: #0F1A2C;
  --panel: #101C30;
  --ink: #E9EEF5;
  --ink-body: #B9C6D6;
  --ink-dim: #7E8FA3;
  --steel: #8FB4D9;
  --steel-soft: rgba(143, 180, 217, 0.35);
  --line: rgba(148, 178, 209, 0.14);
  --line-strong: rgba(148, 178, 209, 0.28);
  --red: #E5484D;
  --chrome-grad: linear-gradient(178deg, #FDFEFF 8%, #C9D6E2 38%, #91A6BA 60%, #E6EEF5 82%, #7E93A8 100%);
  --font-display: 'Michroma', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg-1);
  color: var(--ink-body);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--steel); color: var(--bg-0); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
  border-radius: 2px;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-dim); }
.dim { color: var(--ink-dim); }
.section { padding-block: clamp(90px, 12vw, 160px); position: relative; }

.chrome-text {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin-right: 10px; vertical-align: 1px;
  box-shadow: 0 0 10px rgba(229, 72, 77, 0.8);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 26px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--lg { min-height: 54px; padding: 0 34px; font-size: 15px; }
.btn--chrome {
  background: var(--chrome-grad);
  color: #0A1220;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 10px 30px -12px rgba(143,180,217,0.45);
}
.btn--chrome:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 14px 38px -10px rgba(143,180,217,0.6); }
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(143,180,217,0.05);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--steel); background: rgba(143,180,217,0.1); }

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
}
.intro__inner { text-align: center; }
.intro__logo {
  display: block; width: min(560px, 76vw); height: auto;
  margin-inline: auto;
  clip-path: inset(0 100% 0 0);
  filter: drop-shadow(0 0 40px rgba(143, 180, 217, 0.12));
}
.intro__sub {
  display: block; margin-top: 22px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.4em; color: var(--ink-dim); opacity: 0;
}
.no-anim .intro { display: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, transform 0.45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(9, 15, 26, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto; padding: 0 var(--gutter);
  height: 92px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: inline-flex; align-items: center; flex: none; }
.nav__logo-img {
  height: 68px; width: auto; display: block;
  filter: drop-shadow(0 2px 10px rgba(7, 12, 21, 0.5));
}
.nav__links { display: flex; gap: 6px; }
.nav__links a {
  padding: 10px 14px; font-size: 13.5px; font-weight: 500; color: var(--ink-body);
  border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--ink); background: rgba(143,180,217,0.08); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--ink-body); transition: color 0.2s; padding: 10px 0;
}
.nav__phone:hover { color: var(--steel); }
.nav__cta { min-height: 40px; padding: 0 20px; font-size: 13px; }

.nav__burger {
  display: none; width: 44px; height: 44px; flex: none;
  background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  cursor: pointer; position: relative; z-index: 130;
}
.nav__burger span {
  position: absolute; left: 12px; right: 12px; height: 1.6px; background: var(--ink);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(7, 12, 21, 0.96);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 110px var(--gutter) 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s, visibility 0.35s;
}
.mmenu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mmenu__links { display: flex; flex-direction: column; }
.mmenu__links a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display); font-size: clamp(22px, 6vw, 30px);
  color: var(--ink); letter-spacing: 0.08em;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.mmenu__links a i {
  font-style: normal; font-family: var(--font-mono); font-size: 11px; color: var(--steel);
}
.mmenu__foot { display: grid; gap: 14px; }
.mmenu__foot p { font-size: 14px; color: var(--ink-dim); }
.mmenu__tel { font-family: var(--font-mono); font-size: 18px; color: var(--steel); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: var(--bg-0);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transform-origin: center;
  will-change: transform;
}
.hero__shade { position: absolute; inset: 0; pointer-events: none; }
.hero__shade--btm { background: linear-gradient(180deg, transparent 30%, rgba(7,12,21,0.55) 68%, rgba(7,12,21,0.96) 100%); }
.hero__shade--top { background: linear-gradient(180deg, rgba(7,12,21,0.62) 0%, transparent 32%); }

.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; justify-content: space-between;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
}
.hero__grid span { width: 1px; background: rgba(148,178,209,0.09); transform: scaleY(0); transform-origin: top; }
.no-anim .hero__grid span { transform: none; }

.hero__content { position: relative; z-index: 2; padding-bottom: 34px; width: 100%; }
.hero__kicker { color: var(--steel); margin-bottom: 22px; font-size: 11.5px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 8.4vw, 108px);
  line-height: 1.04;
  letter-spacing: 0.015em;
  color: var(--ink);
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; will-change: transform; }
.hero__sub {
  max-width: 560px; font-size: clamp(15px, 1.6vw, 17.5px); font-weight: 300;
  color: var(--ink-body); margin-bottom: 36px;
  text-shadow: 0 1px 18px rgba(7, 12, 21, 0.9), 0 1px 4px rgba(7, 12, 21, 0.7);
}
.hero__title { text-shadow: 0 2px 30px rgba(7, 12, 21, 0.55); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__foot { position: relative; z-index: 2; border-top: 1px solid var(--line); margin-top: 44px; background: rgba(7,12,21,0.35); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero__foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 16px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 42px); list-style: none; }
.hero__trust li { font-size: 13px; color: var(--ink-body); display: flex; align-items: baseline; gap: 8px; }
.hero__trust li .mono { color: var(--steel); font-size: 10px; }
.hero__scroll { display: inline-flex; align-items: center; gap: 12px; flex: none; padding: 8px 0; }
.hero__scroll .mono { font-size: 9.5px; }
.hero__scroll i {
  width: 44px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; display: block;
}
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--steel);
  transform: translateX(-100%); animation: scrollSweep 2.2s var(--ease-out) infinite;
}
@keyframes scrollSweep { 60% { transform: translateX(0); } 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll i::after { animation: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-0);
  overflow: hidden; padding-block: 18px;
}
.marquee__track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.24em;
  color: var(--ink-dim); white-space: nowrap; padding-right: 12px;
}
.marquee__track i { font-style: normal; color: var(--red); margin-inline: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { margin-bottom: clamp(48px, 7vw, 84px); }
.sec-head__label { margin-bottom: 18px; }
.sec-head__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.08; letter-spacing: 0.02em;
  color: var(--ink);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-1); }
.services__layout {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.services__list { list-style: none; }
.service { border-top: 1px solid var(--line); padding: 26px 6px 28px; transition: background 0.3s, padding-left 0.35s var(--ease-out); }
.service:last-child { border-bottom: 1px solid var(--line); }
.service__row { display: flex; align-items: center; gap: 20px; }
.service__num { color: var(--steel); flex: none; transition: color 0.3s; }
.service__name {
  font-family: var(--font-display); font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400; letter-spacing: 0.04em; color: var(--ink); flex: 1;
}
.service__arrow {
  width: 20px; height: 20px; color: var(--ink-dim); flex: none;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.35s var(--ease-out), color 0.3s;
}
.service__desc { margin: 12px 0 0 0; max-width: 520px; font-size: 14.5px; font-weight: 300; color: var(--ink-dim); }
@media (hover: hover) {
  .service:hover { background: linear-gradient(90deg, rgba(143,180,217,0.05), transparent 70%); padding-left: 18px; }
  .service:hover .service__arrow { opacity: 1; transform: none; color: var(--steel); }
  .service:hover .service__num { color: var(--red); }
}

.services__figure { position: sticky; top: 100px; }
.services__figure-frame {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--bg-0); position: relative;
}
.services__figure-frame img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; will-change: transform;
  /* pull the AI blueprint's indigo background toward the site's deep navy */
  filter: saturate(0.5) brightness(0.72) hue-rotate(-8deg) contrast(1.05);
}
.services__figure-frame figcaption {
  position: absolute; left: 16px; bottom: 14px; font-size: 9.5px;
  color: var(--steel); background: rgba(7,12,21,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--bg-0); border-block: 1px solid var(--line); }
.process__track { position: relative; }
.process__line {
  position: absolute; top: 7px; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.process__line i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--steel), rgba(143,180,217,0.25));
  transform: scaleX(0); transform-origin: left;
}
.no-anim .process__line i { transform: none; }
.process__steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
}
.step { position: relative; padding-top: 34px; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid var(--steel); background: var(--bg-0);
}
.step::after {
  content: ""; position: absolute; top: 4.5px; left: 4.5px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--steel);
}
.step__num { color: var(--red); display: block; margin-bottom: 10px; }
.step__name {
  font-family: var(--font-display); font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 400; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 10px;
}
.step p { font-size: 14px; font-weight: 300; color: var(--ink-dim); max-width: 240px; }

/* ============================================================
   CRAFT / ABOUT
   ============================================================ */
.craft { background: var(--bg-1); overflow: hidden; }
.craft__layout {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.craft__media {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 3 / 4; background: var(--bg-0);
}
.craft__media img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.craft__title {
  font-family: var(--font-display); font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.22; letter-spacing: 0.02em; color: var(--ink);
  margin: 18px 0 26px;
}
.craft__copy { max-width: 560px; font-weight: 300; margin-bottom: 18px; }
.craft__copy a { color: var(--steel); border-bottom: 1px solid var(--steel-soft); transition: border-color 0.2s; }
.craft__copy a:hover { border-color: var(--steel); }
.craft__stat {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 30px);
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line);
}
.craft__stat-num {
  font-family: var(--font-display); font-size: clamp(56px, 9vw, 96px); line-height: 0.9;
  display: inline-flex; align-items: flex-start; letter-spacing: -0.01em;
}
.craft__stat-num em { font-style: normal; color: var(--red); font-size: 0.42em; margin-top: 0.14em; margin-left: 2px; }
.craft__stat-label {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-body); line-height: 1.5;
}
.craft__points { list-style: none; margin-top: 34px; display: grid; gap: 0; }
.craft__points li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 15px 2px; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--ink);
}
.craft__points li:last-child { border-bottom: 1px solid var(--line); }
.craft__points .mono { color: var(--red); flex: none; }

.craft__banner { margin-top: clamp(56px, 8vw, 110px); }
.craft__wide {
  position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 21 / 9; background: var(--bg-0);
}
.craft__wide img { width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.craft__wide figcaption {
  position: absolute; left: 18px; bottom: 16px; font-size: 9.5px;
  color: var(--steel); background: rgba(7,12,21,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line);
}

/* ============================================================
   FAMILY / LOCATIONS
   ============================================================ */
.family { background: var(--bg-0); border-top: 1px solid var(--line); }
.family__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.loc {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(160deg, rgba(143,180,217,0.05), rgba(143,180,217,0.008) 55%);
  padding: clamp(28px, 4vw, 44px);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
@media (hover: hover) { .loc:hover { border-color: var(--line-strong); transform: translateY(-4px); } }
.loc--here { border-color: var(--steel-soft); position: relative; }
.loc--here::after {
  content: ""; position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  box-shadow: 0 24px 70px -30px rgba(143,180,217,0.28);
}
.loc__tag { color: var(--red); margin-bottom: 20px; font-size: 10px; }
.loc--here .loc__tag { color: var(--steel); }
.loc__name {
  font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 400; letter-spacing: 0.03em; color: var(--ink); margin-bottom: 8px;
}
.loc__area { margin-bottom: 22px; }
.loc address { font-style: normal; font-weight: 300; color: var(--ink-body); margin-bottom: 28px; }
.loc__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.loc__link { font-family: var(--font-mono); font-size: 13px; color: var(--steel); padding: 8px 0; }

/* ============================================================
   ESTIMATE
   ============================================================ */
.estimate { background: var(--bg-1); border-top: 1px solid var(--line); }
.estimate__layout {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.estimate__title {
  font-family: var(--font-display); font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.1; letter-spacing: 0.02em; color: var(--ink);
  margin: 16px 0 24px;
}
.estimate__copy { max-width: 460px; font-weight: 300; margin-bottom: 40px; }
.estimate__meta { display: grid; gap: 22px; }
.estimate__meta > div { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: baseline; border-top: 1px solid var(--line); padding-top: 18px; }
.estimate__meta dt { color: var(--red); font-size: 10px; }
.estimate__meta dd { font-size: 15px; color: var(--ink); font-weight: 300; }
.estimate__meta dd a { transition: color 0.2s; }
.estimate__meta dd a:hover { color: var(--steel); }

.form {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(160deg, rgba(143,180,217,0.06), rgba(143,180,217,0.01) 60%);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: clamp(24px, 3.6vw, 44px);
  position: relative; overflow: hidden;
}
.form__row { display: grid; gap: 20px; margin-bottom: 20px; }
.form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 8px; }
.field label { font-size: 12.5px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-dim); }
.field label em { color: var(--red); font-style: normal; margin-left: 3px; }
.field input, .field textarea {
  width: 100%; min-height: 50px; padding: 13px 16px;
  background: rgba(7, 12, 21, 0.55);
  border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--ink); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(126, 143, 163, 0.55); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(143, 180, 217, 0.15);
}
.field__err { display: none; font-size: 12.5px; color: var(--red); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--red); }
.field.is-invalid .field__err { display: block; }
.field__hint { font-size: 12.5px; color: var(--ink-dim); font-weight: 300; }
.form__submit { width: 100%; margin-top: 6px; }
.form__submit:disabled { opacity: 0.55; cursor: default; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__fail { margin-top: 14px; font-size: 13.5px; color: var(--red); text-align: center; }
.form__fail a { color: var(--steel); text-decoration: underline; }

.form__done {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(9, 15, 26, 0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px; gap: 6px;
}
.form__done[hidden] { display: none; }
.form__done svg {
  width: 52px; height: 52px; color: var(--steel);
  border: 1px solid var(--steel-soft); border-radius: 50%; padding: 13px;
  margin-bottom: 14px;
}
.form__done h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.05em; color: var(--ink); font-size: 20px; }
.form__done p { font-weight: 300; color: var(--ink-body); }
.form__done a { color: var(--steel); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-0); border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 96px) 0 30px; overflow: hidden; }
.footer__word { margin-bottom: clamp(40px, 6vw, 72px); }
.footer__word img {
  width: min(660px, 78vw); height: auto;
  margin-inline: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 46px rgba(143, 180, 217, 0.1));
}
.footer__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.footer__col { display: grid; gap: 10px; align-content: start; justify-items: start; }
.footer__label { color: var(--red); margin-bottom: 6px; font-size: 10px; }
.footer__col a, .footer__col address, .footer__col p { font-size: 14px; font-weight: 300; font-style: normal; color: var(--ink-body); }
.footer__col a { padding: 3px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--steel); }
.footer__dir { color: var(--steel) !important; }
.footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 26px; font-size: 12.5px; color: var(--ink-dim);
}
.footer__base .mono { font-size: 10px; }

/* ============================================================
   REVEAL DEFAULTS (JS toggles; no-JS stays visible)
   ============================================================ */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.js.no-anim [data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .services__layout { grid-template-columns: 1fr; }
  .services__figure { position: static; max-width: 480px; }
  .craft__layout { grid-template-columns: 1fr; }
  .craft__media { max-width: 480px; }
  .estimate__layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__inner { height: 74px; }
  .nav__logo-img { height: 52px; }
  .process__steps { grid-template-columns: 1fr; gap: 34px; }
  .process__line { top: 0; bottom: 0; left: 7px; right: auto; width: 1px; height: auto; }
  .process__line i { transform-origin: top; background: linear-gradient(180deg, var(--steel), rgba(143,180,217,0.25)); }
  .step { padding-top: 0; padding-left: 40px; }
  .step::before { left: 0; top: 2px; }
  .step::after { left: 4.5px; top: 6.5px; }
  .family__grid { grid-template-columns: 1fr; }
  .hero__foot-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__scroll { display: none; }
  .hero__trust { gap: 14px 22px; }
  .craft__wide { aspect-ratio: 16 / 10; }
}

@media (max-width: 560px) {
  .form__row--2 { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── studio credit ─────────────────────────────────────────────────────────
   Inherits the surrounding fine-print colour and dims a notch below it, so
   it stays the quietest thing in the footer on any palette. */
.studio-credit {
  color: inherit;
  opacity: .62;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: opacity .25s ease, border-color .25s ease;
}
.studio-credit:hover,
.studio-credit:focus-visible { opacity: 1; border-bottom-color: currentColor; }
