@import url("../fonts/fonts.css");

/* ============================================================
   SN TRANSPORTE — Sven Neumann Transporte + Umzüge
   Design: "Die Route" — Deutschland <-> Spanien Korridor
   Palette: Asphalt-Navy + Signal-Amber + Route-Rot (DE/ES)
   ============================================================ */

:root {
  --asphalt: #121a27;
  --asphalt-2: #1a2536;
  --asphalt-3: #24334a;
  --ink: #16202e;
  --paper: #f5f2ea;
  --paper-2: #ffffff;
  --paper-warm: #efe9dc;
  --amber: #e8a02c;
  --amber-deep: #c47f14;
  --amber-soft: #f6d79a;
  --route-red: #c0442e;
  --text: #202a38;
  --muted: #66707e;
  --muted-light: #9aa6b4;
  --line: rgba(18, 26, 39, 0.10);
  --line-strong: rgba(18, 26, 39, 0.18);
  --line-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 2px 8px rgba(18, 26, 39, 0.06);
  --shadow: 0 12px 36px rgba(18, 26, 39, 0.12);
  --shadow-lg: 0 30px 70px rgba(18, 26, 39, 0.22);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 0.98; letter-spacing: 0.005em; }
p { margin: 0 0 1em; }

::selection { background: var(--amber); color: var(--asphalt); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Signature: die Straßenlinie (road centerline) ---------- */
.roadline {
  height: 6px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg,
    var(--amber) 0 42px, transparent 42px 82px);
  opacity: 0.9;
}
.roadline--thin {
  height: 3px;
  background-image: repeating-linear-gradient(90deg,
    var(--amber) 0 22px, transparent 22px 44px);
}

/* eyebrow / km-marker label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.86rem;
  color: var(--amber-deep);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber-deep);
  display: inline-block;
}
.eyebrow--light { color: var(--amber); }
.eyebrow--light::before { background: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn--amber { background: var(--amber); color: var(--asphalt); box-shadow: 0 8px 22px rgba(232,160,44,0.35); }
.btn--amber:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn--ghost { border-color: currentColor; color: var(--paper); }
.btn--ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn--dark { background: var(--asphalt); color: #fff; }
.btn--dark:hover { background: var(--asphalt-2); transform: translateY(-2px); }
.btn--outline-dark { border-color: var(--line-strong); color: var(--ink); }
.btn--outline-dark:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--wa { background: #25d366; color: #073b23; }
.btn--wa:hover { background: #1eb857; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18, 26, 39, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 76px; }

.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand__mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 2px solid var(--amber);
  border-radius: 6px;
  color: var(--amber);
  background: rgba(232,160,44,0.08);
}
.brand__mark svg { width: 28px; height: 28px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.brand__name b { color: var(--amber); font-weight: 700; }
.brand__sub {
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted-light); margin-top: 4px; font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #d7dde5; font-weight: 500; font-size: 0.95rem;
  padding: 9px 13px; border-radius: 4px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav a.is-active { color: var(--amber); }

/* dropdown for Leistungen */
.nav__item { position: relative; }
.nav__toggle { display: flex; align-items: center; gap: 6px; background: none; border: 0; color: #d7dde5; font-weight: 500; font-size: 0.95rem; padding: 9px 13px; border-radius: 4px; }
.nav__toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.nav__item:hover .nav__toggle, .nav__item:focus-within .nav__toggle { color: #fff; background: rgba(255,255,255,0.07); }
.nav__item:hover .nav__toggle svg, .nav__item:focus-within .nav__toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 300px;
  background: #fff; border-radius: 8px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  border-top: 3px solid var(--amber);
}
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; flex-direction: column; color: var(--ink);
  padding: 10px 14px; border-radius: 6px; font-size: 0.95rem;
}
.dropdown a:hover { background: var(--paper); color: var(--ink); }
.dropdown a span { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing:.01em; }
.dropdown a small { color: var(--muted); font-size: 0.8rem; font-weight: 400; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 600;
}
.header-phone svg { width: 20px; height: 20px; color: var(--amber); }
.header-phone small { display: block; font-size: 0.62rem; color: var(--muted-light); letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.header-phone span { font-family: var(--font-display); font-size: 1.24rem; letter-spacing: .02em; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; width: 44px; height: 44px; }
.nav-toggle svg { width: 30px; height: 30px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--asphalt); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(18,26,39,0.94) 0%, rgba(18,26,39,0.78) 42%, rgba(18,26,39,0.30) 100%),
    linear-gradient(0deg, rgba(18,26,39,0.65) 0%, transparent 45%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(64px, 12vh, 130px) 0 clamp(56px, 9vh, 96px); }
.hero--home .hero__inner { min-height: min(84vh, 760px); display: flex; flex-direction: column; justify-content: center; }

.hero__route {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.92rem; color: var(--amber);
  border: 1px solid rgba(232,160,44,0.4); border-radius: 40px;
  padding: 8px 18px; margin-bottom: 26px;
}
.hero__route .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(232,160,44,0.2); }
.hero__route .arrow { color: var(--route-red); font-size: 1.1em; }

.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  text-transform: uppercase; color: #fff; max-width: 15ch;
  letter-spacing: 0.008em;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero__lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: #d7dde5; max-width: 52ch; margin-top: 24px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__slogan {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line-dark);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 2rem); color: #fff; letter-spacing: .02em;
}
.hero__slogan b { color: var(--amber); }

/* Subpage hero (compact) */
.hero--page .hero__inner { padding: clamp(56px,9vh,96px) 0 clamp(48px,7vh,74px); }
.hero--page h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); max-width: 20ch; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 0.86rem; color: var(--muted-light); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--amber); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--asphalt-2); color: #fff;
  border-bottom: 1px solid var(--line-dark);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  display: flex; gap: 15px; align-items: center;
  padding: 26px var(--gutter); position: relative;
}
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line-dark);
}
.trust__icon { color: var(--amber); flex: none; }
.trust__icon svg { width: 34px; height: 34px; }
.trust__item b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; display: block; line-height: 1; }
.trust__item small { color: var(--muted-light); font-size: 0.84rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: clamp(64px, 10vh, 120px) 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--paper-2); }
.section--dark { background: var(--asphalt); color: #fff; }
.section--warm { background: var(--paper-warm); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem); text-transform: uppercase;
  color: var(--ink); letter-spacing: .01em;
}
.section--dark .section-head h2 { color: #fff; }
.section-head p { margin-top: 16px; font-size: 1.12rem; color: var(--muted); }
.section--dark .section-head p { color: #c2cbd6; }

/* ============================================================
   SERVICES GRID (road-sign cards)
   ============================================================ */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--asphalt-2); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  letter-spacing: .1em; color: var(--asphalt);
  background: var(--amber); padding: 5px 11px; border-radius: 3px;
}
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 1.7rem; text-transform: uppercase; color: var(--ink); }
.svc-card__body p { margin-top: 10px; color: var(--muted); font-size: 0.98rem; flex: 1; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.svc-card__tags span {
  font-size: 0.78rem; color: var(--muted); background: var(--paper);
  border: 1px solid var(--line); padding: 4px 10px; border-radius: 30px;
}
.svc-card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--amber-deep); font-size: 1.02rem;
}
.svc-card__link svg { width: 18px; height: 18px; transition: transform .2s; }
.svc-card:hover .svc-card__link svg { transform: translateX(5px); }

/* ============================================================
   SPLIT (image + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.split__media video { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 16/10; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -22px; right: 22px;
  background: var(--amber); color: var(--asphalt); padding: 16px 22px;
  border-radius: 8px; box-shadow: var(--shadow); max-width: 240px;
}
.split--flip .split__badge { right: auto; left: 22px; }
.split__badge b { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; display: block; line-height: 0.9; }
.split__badge small { font-size: 0.82rem; font-weight: 600; }
.split__body h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; color: var(--ink); }
.section--dark .split__body h2 { color: #fff; }
.split__body p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }
.section--dark .split__body p { color: #c2cbd6; }

/* ============================================================
   FEATURE LIST (checkmarks)
   ============================================================ */
.feats { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.feats li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; }
.feats li svg { width: 24px; height: 24px; flex: none; color: var(--amber-deep); margin-top: 1px; }
.section--dark .feats li svg { color: var(--amber); }

/* ============================================================
   PROCESS (the journey — route line)
   ============================================================ */
.process { position: relative; }
.process__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process__track::before {
  content: ""; position: absolute; top: 33px; left: 8%; right: 8%; height: 3px;
  background-image: repeating-linear-gradient(90deg, var(--amber) 0 16px, transparent 16px 30px);
  opacity: .5; z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 66px; height: 66px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--asphalt); color: var(--amber);
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem;
  border: 3px solid var(--amber);
}
.section--paper .step__num, .section--white .step__num { box-shadow: 0 0 0 8px var(--paper); }
.section--warm .step__num { box-shadow: 0 0 0 8px var(--paper-warm); }
.step h3 { font-size: 1.5rem; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   ROUTE MAP (DE <-> ES)
   ============================================================ */
.routemap {
  background: var(--asphalt); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px); overflow: hidden; position: relative;
}
.routemap__grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(20px,4vw,50px); }
.routepoint { text-align: center; }
.routepoint__flag { font-size: 2.4rem; line-height: 1; }
.routepoint h3 { font-size: 2rem; text-transform: uppercase; color: #fff; margin: 12px 0 4px; }
.routepoint p { color: var(--muted-light); font-size: 0.94rem; margin: 0; }
.routepath { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 120px; }
.routepath svg { width: 100%; height: 40px; color: var(--amber); }
.routepath small { font-family: var(--font-display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); font-size: .82rem; }

/* ============================================================
   STATS band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem,5vw,3.8rem); color: var(--amber); display: block; line-height: 1; }
.stat small { display: block; margin-top: 8px; color: #c2cbd6; font-size: 0.96rem; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-display); font-weight: 500; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--amber); color: var(--asphalt); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: clamp(40px, 6vh, 64px); flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; max-width: 20ch; }
.cta-band p { margin: 8px 0 0; font-size: 1.1rem; font-weight: 500; max-width: 46ch; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote__stars { color: var(--amber); display: flex; gap: 3px; margin-bottom: 14px; }
.quote__stars svg { width: 20px; height: 20px; display: inline-block; flex: none; }
.quote p { font-size: 1.04rem; color: var(--text); flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--asphalt); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; flex:none; }
.quote__who b { font-size: 0.98rem; }
.quote__who small { display: block; color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); }
.contact-info h2 { font-size: clamp(2rem,4vw,3rem); text-transform: uppercase; color: var(--ink); }
.contact-cards { display: grid; gap: 16px; margin-top: 28px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.contact-card__icon { width: 46px; height: 46px; border-radius: 8px; background: var(--asphalt); color: var(--amber); display: grid; place-items: center; flex: none; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card small { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.contact-card b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; display: block; color: var(--ink); letter-spacing: .01em; }
.contact-card a:hover { color: var(--amber-deep); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--route-red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius); background: var(--paper);
  color: var(--text); transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form__consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.86rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.form__consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--amber-deep); }
.form__consent span { flex: 1; min-width: 0; }
.form__consent a { color: var(--amber-deep); text-decoration: underline; }
.form .btn { width: 100%; }
.form__note { text-align: center; margin: 14px 0 0; font-size: 0.84rem; color: var(--muted); }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.9rem; text-transform: uppercase; color: var(--ink); margin: 40px 0 14px; }
.prose h3 { font-size: 1.3rem; color: var(--ink); margin: 28px 0 10px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.prose p, .prose li { color: var(--text); font-size: 1.02rem; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--amber-deep); text-decoration: underline; }
.prose strong { color: var(--ink); }
.prose .lead { font-size: 1.15rem; color: var(--muted); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }

/* content wrapper for service pages */
.rich { max-width: 760px; }
.rich > p { font-size: 1.1rem; color: var(--text); }
.rich h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); text-transform: uppercase; color: var(--ink); margin: 40px 0 16px; }
.rich h3 { font-size: 1.4rem; color: var(--ink); margin: 26px 0 10px; }

/* info callout */
.callout {
  background: var(--asphalt); color: #fff; border-radius: var(--radius-lg);
  padding: 28px 30px; border-left: 5px solid var(--amber); margin: 8px 0;
}
.callout h3 { color: #fff; text-transform: uppercase; font-size: 1.5rem; margin-bottom: 8px; }
.callout p { color: #c2cbd6; margin: 0; }

/* two-col list */
.checklist { columns: 2; column-gap: 40px; list-style: none; padding: 0; margin: 20px 0 0; }
.checklist li { break-inside: avoid; display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: 1.01rem; }
.checklist li svg { width: 22px; height: 22px; color: var(--amber-deep); flex: none; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--asphalt); color: #c2cbd6; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand__name { font-size: 1.7rem; }
.footer-brand p { margin-top: 18px; font-size: 0.96rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: 1.15rem; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { font-size: 0.95rem; transition: color .15s; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; color: var(--muted-light); }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ACCESS GATE (password overlay)
   ============================================================ */
html:not(.unlocked) body { overflow: hidden; }
.gate {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; padding: 24px;
  transition: opacity .45s var(--ease);
}
html.unlocked .gate { display: none; }
.gate__backdrop {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(18,26,39,0.72), rgba(26,37,54,0.78));
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  backdrop-filter: blur(20px) saturate(1.1);
}
.gate__card {
  position: relative; z-index: 2;
  width: min(420px, 100%);
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  border-top: 5px solid var(--amber);
  text-align: center;
}
.gate__card .roadline { opacity: .9; }
.gate__body { padding: 38px 34px 34px; }
.gate__mark {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 12px;
  border: 2px solid var(--amber); color: var(--amber-deep);
  background: rgba(232,160,44,0.08);
}
.gate__mark svg { width: 38px; height: 38px; }
.gate__card h1 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.9rem; color: var(--ink); letter-spacing: .02em; }
.gate__card h1 b { color: var(--amber-deep); }
.gate__card p { color: var(--muted); font-size: 0.98rem; margin: 8px 0 24px; }
.gate__form { display: flex; flex-direction: column; gap: 12px; }
.gate__form input {
  width: 100%; padding: 15px 16px; font-family: inherit; font-size: 1.05rem;
  text-align: center; letter-spacing: .04em;
  border: 1.5px solid var(--line-strong); border-radius: 8px; background: var(--paper);
  color: var(--text);
}
.gate__form input:focus { outline: none; border-color: var(--amber); background: #fff; }
.gate__error { display: none; color: var(--route-red); font-size: 0.9rem; font-weight: 600; margin: 2px 0 0; }
.gate__foot { margin-top: 20px; font-size: 0.8rem; color: var(--muted-light); }
.gate__foot b { color: var(--muted); font-weight: 600; }
@keyframes shake { 10%,90%{transform:translateX(-2px)} 20%,80%{transform:translateX(4px)} 30%,50%,70%{transform:translateX(-8px)} 40%,60%{transform:translateX(8px)} }
.gate__card.shake { animation: shake .5s var(--ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3)::before, .trust__item:nth-child(2)::before { display: none; }
}
@media (max-width: 900px) {
  .services, .quotes { grid-template-columns: 1fr 1fr; }
  .process__track { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process__track::before { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__badge { position: static; display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; max-width: none; }
  .split--flip .split__badge { left: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
}
@media (max-width: 820px) {
  .nav, .header-phone small + span, .nav__item { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header .wrap { height: 66px; }
  /* mobile nav panel */
  .nav.is-open {
    display: flex; position: fixed; inset: 66px 0 0; background: var(--asphalt);
    flex-direction: column; align-items: stretch; gap: 0; padding: 18px var(--gutter);
    overflow-y: auto; z-index: 99;
  }
  .nav.is-open a, .nav.is-open .nav__toggle { font-size: 1.3rem; font-family: var(--font-display); text-transform: uppercase; padding: 15px 6px; border-bottom: 1px solid var(--line-dark); border-radius: 0; width: 100%; text-align: left; }
  .nav.is-open .nav__item { display: block; }
  .nav.is-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: 0; padding: 0 0 8px 16px; }
  .nav.is-open .dropdown a { color: #c2cbd6; border: 0; padding: 8px 6px; }
  .nav.is-open .dropdown a span { font-size: 1.05rem; }
  .nav.is-open .dropdown a small { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services, .quotes, .stats { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .checklist { columns: 1; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item::before { display: none !important; }
  .routemap__grid { grid-template-columns: 1fr; gap: 24px; }
  .routepath { flex-direction: row; min-width: 0; }
  .routepath svg { width: 60px; transform: rotate(90deg); }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1 1 100%; }
}
