/* =========================================================
   TRANSPORTWEB — Art direction v2
   Editorial industrial · Swiss service CRO
   ========================================================= */

:root {
  --near-black: #101010;
  --charcoal: #1b1b1a;
  --ink: #0a0a0a;
  --yellow: #f5bc00;
  --yellow-hover: #e0ab00;
  --warm-white: #f7f5ef;
  --pure: #ffffff;
  --soft-gray: #e9e7e1;
  --muted: #6b6a64;
  --line: rgba(16, 16, 16, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --font: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 3px;
  --header-h: 68px;
  --sticky-h: 64px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--near-black);
  background: var(--pure);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
}

/* ---------- Bars ---------- */
.utility-bar {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--line-light);
}

.utility-bar a {
  color: var(--yellow);
}

.utility-bar a:hover {
  text-decoration: underline;
}

.proposal-bar {
  background: #2a2a28;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.35rem 1rem;
}

.proposal-bar strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.55);
}

h1,
.h1 {
  font-size: clamp(2.65rem, 6.2vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
}

h2,
.h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
}

h3,
.h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.75rem;
  max-width: 44rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.15s var(--ease);
  text-align: center;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--yellow-hover);
}

.btn--secondary {
  background: var(--near-black);
  color: var(--pure);
}

.btn--secondary:hover {
  background: #000;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--pure);
}

.btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

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

.btn--outline:hover {
  background: var(--near-black);
  color: var(--pure);
}

.btn--text {
  background: transparent;
  border: 0;
  color: var(--pure);
  min-height: auto;
  padding: 0.35rem 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  letter-spacing: 0.04em;
}

.btn--text:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.btn .arrow {
  transition: transform 0.2s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 0.15rem;
}

.link-arrow:hover {
  color: #000;
}

/* Mobile: all content CTAs full-width */
@media (max-width: 719px) {
  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.75rem;
  }

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

  .hero .btn-row .hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .selector-foot {
    display: block;
  }

  .selector-go,
  .svc-feature__body .btn,
  .svc-tile .btn,
  .inspect-panel .btn,
  .ducato-copy .btn,
  .quote-success .btn,
  .contact-card .btn {
    width: 100%;
  }

  .inspect-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.75rem;
  }

  .inspect-actions .btn,
  .inspect-actions .inspect-phone {
    width: 100%;
  }

  .inspect-actions .inspect-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    font-size: 1.15rem;
  }

  .quote-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .quote-nav .btn {
    width: 100%;
  }

  .quote-nav > span:empty {
    display: none;
  }

  .upload-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .upload-actions .btn {
    width: 100%;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 16, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  height: var(--header-h);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--pure);
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: -0.04em;
  border-radius: 2px;
  flex-shrink: 0;
}

.logo-text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
  min-width: 0;
}

.logo-text strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-text span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  justify-content: center;
  gap: 0.1rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.header-phone {
  display: none;
  color: var(--pure);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.header-phone:hover {
  color: var(--yellow);
}

.header-cta {
  display: none;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  font-size: 0.74rem;
}

.header-call-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--pure);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.mobile-nav {
  display: none;
  background: var(--near-black);
  border-bottom: 1px solid var(--line-light);
  padding: 0.35rem 0 1.1rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-light);
  font-weight: 600;
}

.mobile-nav__cta {
  margin-top: 0.85rem;
  border-bottom: 0 !important;
}

.mobile-nav__cta .btn {
  width: 100%;
}

@media (max-width: 420px) {
  .logo-text span {
    display: none;
  }
}

@media (min-width: 980px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
  }

  .nav {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .header-call-icon,
  .nav-toggle {
    display: none;
  }

  .header-actions {
    gap: 0.75rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--near-black);
  color: var(--pure);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 0 2.25rem;
}

.hero-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  z-index: 2;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.hero h1 {
  max-width: 11.5ch;
}

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

.hero .lede {
  color: rgba(255, 255, 255, 0.68);
  max-width: 32rem;
}

.hero-phone {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 0.15rem;
}

.hero-phone:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  padding-top: 0.15rem;
  border-top: 1px solid var(--line-light);
  margin-top: 0.35rem;
  padding-top: 1rem;
}

.hero-meta span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  margin-right: 0.5rem;
  vertical-align: 1px;
}

.hero-media {
  position: relative;
  min-height: 240px;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.hero-media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 899px) {
  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero .lede {
    max-width: none;
  }

  .hero-meta {
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 0.48fr 0.52fr;
    gap: 2.75rem;
    align-items: center;
    padding: 3.25rem 0 3.75rem;
    min-height: calc(100svh - var(--header-h) - 70px);
    max-height: 820px;
  }

  .hero-media,
  .hero-media img {
    min-height: 560px;
    height: 100%;
  }
}

/* ---------- Selector ---------- */
.selector {
  background: var(--pure);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.selector-inner {
  display: grid;
  gap: 0;
  padding: 1.35rem 0 1.5rem;
}

.selector-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.selector-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.selector-option {
  appearance: none;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  min-height: 88px;
  padding: 1rem 0.85rem;
  cursor: pointer;
  text-align: left;
  display: grid;
  gap: 0.25rem;
  align-content: center;
  position: relative;
  transition: background 0.2s;
}

.selector-option:last-child {
  border-right: 0;
}

.selector-option::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}

.selector-option:hover {
  background: var(--warm-white);
}

.selector-option.is-active {
  background: var(--warm-white);
}

.selector-option.is-active::after {
  background: var(--yellow);
}

.selector-option .n {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.selector-option .name {
  font-size: clamp(0.82rem, 2.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.selector-option .detail {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.selector-option .go {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--near-black);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}

.selector-option.is-active .go,
.selector-option:hover .go {
  opacity: 1;
  transform: none;
}

.selector-foot {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

.selector-go:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .selector-option {
    min-width: 38vw;
    min-height: 96px;
  }

  .selector-option .detail {
    display: none;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 4.75rem 0;
}

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

.section--black {
  background: var(--near-black);
  color: var(--pure);
}

.section--soft {
  background: var(--soft-gray);
}

.section--tight {
  padding: 3.5rem 0;
}

/* ---------- Asymmetric services ---------- */
.svc-feature {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.svc-feature__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--charcoal);
}

.svc-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.svc-feature__body {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0.25rem 0 0.5rem;
}

.svc-list {
  display: grid;
  gap: 0.4rem;
  margin: 0.25rem 0 0.5rem;
  columns: 1;
}

.svc-list li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.svc-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.svc-pair {
  display: grid;
  gap: 1.25rem;
}

.svc-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--pure);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.svc-tile__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.svc-tile .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.svc-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  max-width: 32ch;
}

.svc-tile .btn {
  justify-self: start;
  margin-top: 0.35rem;
  min-height: 44px;
  font-size: 0.74rem;
}

@media (min-width: 900px) {
  .svc-feature {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
    align-items: stretch;
    margin-bottom: 1.75rem;
  }

  .svc-feature__media,
  .svc-feature__media img {
    min-height: 560px;
  }

  .svc-feature__body {
    padding: 1.75rem 0;
  }

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

  .svc-pair {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .svc-tile {
    min-height: 420px;
  }
}

/* ---------- Before / After ---------- */
.ba-section .section-head {
  max-width: 36rem;
}

.ba-case {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ba-case:last-of-type {
  margin-bottom: 0;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.ba-frame {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4 / 3;
}

.ba-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
}

.ba-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.ba-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .ba-pair {
    gap: 0.75rem;
  }

  .ba-frame {
    aspect-ratio: 16 / 11;
    min-height: 380px;
  }
}

/* ---------- Full bleed ---------- */
.bleed {
  position: relative;
  min-height: 68vw;
  max-height: 720px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--pure);
  display: flex;
  align-items: flex-end;
}

.bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.bleed__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0;
  display: grid;
  gap: 1rem;
}

.bleed__content h2 {
  max-width: 10ch;
}

.bleed__content .sub {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (min-width: 900px) {
  .bleed {
    min-height: 560px;
  }
}

/* ---------- Process timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1.35rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  margin-left: 0.35rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(var(--yellow), transparent);
  transform-origin: top;
  animation: lineGrow 1.2s var(--ease) both;
}

@keyframes lineGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.timeline-item {
  position: relative;
  padding: 0 0 1.75rem 0.85rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 1px;
}

.timeline-item .n {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}

.timeline-item h3 {
  margin-bottom: 0.35rem;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 28rem;
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding-left: 0;
    border-left: 0;
    margin-left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.75rem;
  }

  .timeline::before {
    left: 0;
    top: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), rgba(245, 188, 0, 0.15));
    animation: lineGrowX 1.2s var(--ease) both;
  }

  @keyframes lineGrowX {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }

  .timeline-item {
    padding: 0 1.15rem 0 0;
  }

  .timeline-item::before {
    left: 0;
    top: -2.15rem;
  }
}

/* ---------- Inspection commercial ---------- */
.inspect {
  display: grid;
  gap: 2.5rem;
}

.inspect-copy {
  display: grid;
  gap: 1.15rem;
}

.inspect-kicker {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

.inspect-copy h2 {
  max-width: 16ch;
}

.inspect-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.inspect-phone {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.inspect-phone a:hover {
  color: var(--yellow);
}

.inspect-panel {
  border: 1px solid var(--line);
  background: var(--warm-white);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.inspect-panel h3 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

@media (min-width: 900px) {
  .inspect {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 3.5rem;
  }
}

/* ---------- Ducato feature ---------- */
.ducato {
  display: grid;
  gap: 1.75rem;
}

.ducato-media {
  overflow: hidden;
  background: #0a0a0a;
  min-height: 280px;
}

.ducato-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.ducato-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.ducato-copy .lede {
  color: rgba(255, 255, 255, 0.65);
}

.ducato-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.25rem 0 0.5rem;
}

.ducato-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 900px) {
  .ducato {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }

  .ducato-media,
  .ducato-media img {
    min-height: 480px;
  }
}

/* ---------- Trust ---------- */
.trust-statement {
  max-width: 14ch;
  margin-bottom: 2.75rem;
}

.trust-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: grid;
  gap: 0.55rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-item .n {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--near-black);
  line-height: 1;
}

.trust-item h3 {
  letter-spacing: -0.02em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  max-width: 26rem;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    border-top: 0;
  }

  .trust-item {
    padding: 0 1.5rem 0 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

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

/* ---------- Area ---------- */
.area-box {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 48rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  background: var(--pure);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.area-lines {
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.area-lines strong {
  display: inline-block;
  min-width: 7.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--pure);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.82));
}

.project-card__body {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  display: grid;
  gap: 0.35rem;
}

.project-card .n {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--yellow);
}

.project-card h3 {
  font-size: 1.2rem;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

@media (min-width: 800px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-card {
    min-height: 380px;
  }
}

/* ---------- Quote ---------- */
.quote {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.quote-shell {
  display: grid;
  gap: 2rem;
}

.quote-card {
  background: var(--pure);
  border: 1px solid var(--line);
  overflow: hidden;
}

.quote-progress {
  display: flex;
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-progress span {
  flex: 1;
  text-align: center;
  padding: 0.9rem 0.25rem;
  border-right: 1px solid var(--line-light);
  position: relative;
}

.quote-progress span:last-child {
  border-right: 0;
}

.quote-progress span.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.quote-progress span.is-done {
  color: var(--yellow);
}

.quote-body {
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.quote-step {
  display: none;
  gap: 1.15rem;
}

.quote-step.is-active {
  display: grid;
}

.quote-step h3 {
  margin: 0;
}

.field-grid {
  display: grid;
  gap: 0.85rem;
}

.field-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .field-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--near-black);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--near-black);
  background: var(--pure);
}

.choice-grid {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  transition: 0.2s var(--ease);
}

.choice input:checked + span,
.choice span:hover {
  border-color: var(--near-black);
}

.choice input:checked + span {
  background: var(--near-black);
  color: var(--pure);
  box-shadow: inset 4px 0 0 var(--yellow);
}

.upload-zone {
  border: 1.5px dashed rgba(16, 16, 16, 0.28);
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone.is-drag {
  border-color: var(--near-black);
  background: var(--soft-gray);
}

.upload-zone strong {
  display: block;
  margin-bottom: 0.35rem;
}

.upload-zone p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.85rem;
}

.upload-actions .btn {
  min-height: 42px;
  font-size: 0.72rem;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
  justify-content: center;
}

.upload-thumb {
  position: relative;
  width: 72px;
  height: 72px;
}

.upload-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.upload-thumb button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--pure);
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
}

.quote-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: space-between;
  padding-top: 0.35rem;
}

.quote-success {
  display: none;
  padding: 2rem 1.5rem;
  text-align: center;
  gap: 0.85rem;
}

.quote-success.is-visible {
  display: grid;
}

.quote-aside {
  display: grid;
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  padding: 1.35rem;
  display: grid;
  gap: 0.75rem;
  background: var(--warm-white);
}

.contact-card h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.phone-lg {
  font-size: 1.45rem;
  font-weight: 800;
}

.phone-lg a:hover {
  color: var(--yellow);
}

@media (min-width: 960px) {
  .quote-shell {
    grid-template-columns: 1.45fr 0.7fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .quote-card {
    border-left: 0;
    border-right: 0;
    margin-inline: -1rem;
    width: calc(100% + 2rem);
  }

  .quote-body {
    padding: 1.25rem 1rem 1.5rem;
  }
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 4.5rem 0 5rem;
}

.final-cta .container {
  display: grid;
  gap: 1.5rem;
}

.final-cta .section-head {
  max-width: none;
  width: 100%;
  margin-bottom: 0;
  gap: 1.1rem;
}

.final-cta .lede {
  color: rgba(255, 255, 255, 0.65);
  max-width: none;
  width: 100%;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  max-width: none;
  width: 100%;
}

.final-cta .btn-row {
  width: 100%;
}

@media (min-width: 720px) {
  .final-cta .btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 42rem;
    gap: 0.75rem;
  }

  .final-cta .btn-row .btn {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .final-cta {
    padding: 5.5rem 0 6rem;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.62);
  padding: 3rem 0 1.75rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  margin: 0;
  max-width: 26rem;
  line-height: 1.55;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  color: var(--pure);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* ---------- Sticky ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(16, 16, 16, 0.97);
  border-top: 1px solid var(--line-light);
  backdrop-filter: blur(8px);
}

.sticky-cta.is-visible {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sticky-cta .btn {
  min-height: 48px;
  font-size: 0.76rem;
}

body.has-sticky {
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }

  body.has-sticky {
    padding-bottom: 0;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.mt-1 {
  margin-top: 1rem;
}
