/* Local Google Fonts: Barlow + IBM Plex Serif — latin a latin-ext sloučeny
   do jednoho woff2 na řez (česká stránka vždy potřebuje obě sady, takže
   unicode-range split jen zdvojnásoboval počet požadavků). */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/barlow-800.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Serif';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-serif-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Serif';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-serif-500.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Serif';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-serif-600.woff2') format('woff2');
}
/* ============================================================
   Cisteni tahacu Praha - V5 refined service design
   ============================================================ */

:root {
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-soft: #ebe6dc;
  --ink: #171717;
  --ink-soft: #3d4248;
  --muted: #737982;
  --line: rgba(23, 23, 23, .12);
  --line-strong: rgba(23, 23, 23, .22);
  --dark: #111418;
  --dark-soft: #1b2026;
  --on-dark: #f8f3ea;
  --on-dark-muted: rgba(248, 243, 234, .72);
  --red: #c8102e;
  --red-dark: #970c22;
  --blue: #245f8f;
  --gold: #c9953d;
  --green: #2f7d4e;
  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "IBM Plex Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

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

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--red);
  color: #fff;
  padding: .7rem 1rem;
  font-weight: 700;
}

.skip:focus { transform: none; }

.display {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
  line-height: .95;
  font-weight: 600;
  letter-spacing: 0;
}

.display span { display: block; }

.display em {
  color: var(--red);
  font-style: italic;
}

.display--md {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.03;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  color: var(--red);
  font-size: .72rem;
  letter-spacing: 0;
}

.eyebrow--light { color: var(--on-dark-muted); }

.lede {
  max-width: 42rem;
  color: rgba(248, 243, 234, .82);
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  line-height: 1.58;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

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

.btn--solid {
  background: var(--red);
  color: #fff;
}

.btn--solid:hover { background: var(--red-dark); }

.btn--ghost {
  border-color: rgba(248, 243, 234, .42);
  color: var(--on-dark);
}

.btn--ghost:hover { background: rgba(248, 243, 234, .12); }

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

.link {
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.muted { color: var(--muted); }

/* Top bar */
.topbar {
  background: var(--dark);
  color: var(--on-dark);
  font-size: .86rem;
}

.topbar__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: .5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--on-dark-muted);
  font-weight: 600;
}

.topbar__tag span {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.topbar__phones {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem;
  flex-wrap: wrap;
}

.topbar__phones a {
  font-weight: 800;
  transition: color .18s ease;
}

.topbar__phones a:hover { color: #fff; }

.topbar__phones a span {
  margin-right: .35rem;
  color: var(--on-dark-muted);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.topbar__sep { color: rgba(248, 243, 234, .32); }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 242, 236, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: .75rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}

.brand__mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.brand__text em {
  margin-top: .28rem;
  color: var(--muted);
  font-size: .7rem;
  font-style: normal;
  letter-spacing: .27em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 700;
}

.nav__menu a {
  display: block;
  padding: .55rem 0;
  transition: color .18s ease;
}

.nav__menu a:hover { color: var(--red); }

.nav__cta a {
  padding: .78rem 1rem;
  background: var(--ink);
  color: #fff;
}

.nav__cta a:hover {
  background: var(--red);
  color: #fff;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(calc(100svh - 118px), 820px);
  overflow: hidden;
  background: var(--dark);
  color: var(--on-dark);
  display: grid;
  grid-template-columns: minmax(var(--gutter), 1fr) minmax(0, var(--container)) minmax(var(--gutter), 1fr);
  grid-template-rows: 1fr auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,20,24,.92) 0%, rgba(17,20,24,.76) 42%, rgba(17,20,24,.2) 72%, rgba(17,20,24,.08) 100%),
    linear-gradient(0deg, rgba(17,20,24,.68) 0%, rgba(17,20,24,0) 45%);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
}

.hero__body {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: 760px;
  min-width: 0;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}

.hero .eyebrow { margin-bottom: 1.35rem; }
.hero .display em { color: #ff4963; }
.hero .lede { margin-top: 1.45rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.9rem;
}

.hero__facts {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 2;
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--container) - var(--gutter) * 2);
  min-width: 0;
  margin: 0 var(--gutter) clamp(1.4rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(17, 20, 24, .78);
  border: 1px solid rgba(248, 243, 234, .2);
  backdrop-filter: blur(10px);
}

.hero__facts div {
  padding: 1.15rem clamp(1rem, 2.3vw, 1.7rem);
  border-right: 1px solid rgba(248, 243, 234, .16);
}

.hero__facts div:last-child { border-right: 0; }

.hero__facts dt {
  color: var(--on-dark-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin-top: .24rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

/* Shared sections */
.about,
.services,
.clients,
.contact {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.about {
  background:
    linear-gradient(90deg, rgba(23,23,23,.04) 1px, transparent 1px),
    linear-gradient(rgba(23,23,23,.035) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
}

.about__grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-kicker,
.section-head {
  position: sticky;
  top: 116px;
}

.about__content {
  max-width: 850px;
  min-width: 0;
}

.about__content p {
  margin-top: 1.35rem;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  overflow-wrap: break-word;
}

.vehicle-strip {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: clamp(2.6rem, 5vw, 4.3rem) auto 0;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.vehicle-strip article {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px -34px rgba(17, 20, 24, .45);
}

.vehicle-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vehicle-strip div {
  padding: 1.2rem;
}

.vehicle-strip h3,
.svc__title,
.form__title {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
}

.vehicle-strip h3 { font-size: 1.55rem; }

.vehicle-strip p {
  margin-top: .65rem;
  color: var(--ink-soft);
  font-size: .96rem;
}

/* Services */
.services {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.section-head .display { margin-top: 1.25rem; }

.section-head__note {
  margin-top: 1.1rem;
  color: var(--ink-soft);
}

.price-board {
  display: grid;
  gap: 1.1rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px -36px rgba(17, 20, 24, .35);
}

.service-row--main {
  background: var(--dark-soft);
  color: var(--on-dark);
  border-color: rgba(248, 243, 234, .12);
}

.service-row__copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  min-width: 0;
}

.svc__kicker {
  color: var(--red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.service-row--main .svc__kicker { color: #ff6a7e; }

.svc__title {
  margin-top: .85rem;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.svc__title em { color: var(--red); }
.service-row--main .svc__title em { color: #ff6a7e; }

.svc__lead {
  margin-top: .95rem;
  max-width: 58ch;
  color: var(--ink-soft);
}

.service-row--main .svc__lead { color: var(--on-dark-muted); }

.svc__features {
  margin-top: 1.2rem;
  display: grid;
  gap: .42rem;
}

.svc__features li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.service-row--main .svc__features li { color: rgba(248, 243, 234, .84); }

.svc__features li::before {
  content: "";
  position: absolute;
  top: .74em;
  left: 0;
  width: .52rem;
  height: 2px;
  background: var(--gold);
}

.svc__note {
  margin-top: 1.25rem;
  color: var(--on-dark-muted);
}

.price-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid var(--line);
}

.service-row--main .price-stack { border-color: rgba(248, 243, 234, .16); }

.price-stack div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 23, 23, .02);
}

.price-stack div:last-child { border-bottom: 0; }

.service-row--main .price-stack div {
  border-color: rgba(248, 243, 234, .14);
  background: rgba(255, 255, 255, .03);
}

.svc__plan {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.svc__plan span {
  display: block;
  margin-top: .22rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.service-row--main .svc__plan,
.service-row--main .svc__plan span { color: var(--on-dark-muted); }

.svc__price {
  display: flex;
  align-items: baseline;
  gap: .32rem;
  margin-top: .65rem;
}

.svc__price strong {
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.6vw, 3.2rem);
  font-weight: 600;
  line-height: .92;
}

.svc__price span {
  color: var(--muted);
  font-weight: 800;
}

.service-row--main .svc__price span { color: var(--on-dark-muted); }

.service-addon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: stretch;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-addon__copy {
  padding: clamp(1.3rem, 2.8vw, 1.9rem);
  min-width: 0;
}

.service-addon__title {
  margin-top: .75rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
}

.service-addon__title em {
  font-style: italic;
  color: var(--red);
}

.service-addon__lead {
  margin-top: .85rem;
  max-width: 64ch;
  color: var(--ink-soft);
}

.service-addon__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  border-left: 1px solid var(--line);
  background: rgba(23, 23, 23, .02);
}

.service-addon__price .svc__price { margin-top: .55rem; }

/* Before / after */
.ba {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--dark);
  color: var(--on-dark);
}

.section-head--light {
  position: static;
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-head--light .display,
.section-head--light .section-head__note { color: var(--on-dark); }

.section-head--light .display em { color: #ff6a7e; }
.section-head__note--light { color: var(--on-dark-muted) !important; }

.ba__viewer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.4rem;
  align-items: start;
}

.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ba__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #06080a;
  border: 1px solid rgba(248, 243, 234, .14);
  border-radius: 8px;
}

.ba__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}

.ba__photo.is-swapping img { opacity: 0; }

.ba__chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .44rem .7rem;
  background: rgba(17, 20, 24, .88);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ba__chip--after { background: var(--red); }

.ba__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.ba__arrow[data-ba-prev] {
  grid-column: 1;
  grid-row: 2;
}

.ba__arrow[data-ba-next] {
  grid-column: 2;
  grid-row: 2;
}

.ba__arrow {
  display: grid;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(248, 243, 234, .22);
  border-radius: 4px;
}

.ba__arrow:hover { background: rgba(248, 243, 234, .08); }

.ba__thumbs {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .55rem;
}

.ba__thumbs button {
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 4px;
  opacity: .52;
  transition: opacity .18s ease, border-color .18s ease;
}

.ba__thumbs button:hover { opacity: .85; }

.ba__thumbs button[aria-selected="true"] {
  opacity: 1;
  border-color: var(--red);
}

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

.ba__counter {
  grid-column: 2;
  margin-top: .7rem;
  color: var(--on-dark-muted);
  text-align: center;
  font-weight: 800;
}

/* Clients */
.clients {
  background: var(--bg);
}

.clients__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.clients .display {
  max-width: 780px;
  margin-top: 1.2rem;
}

.clients__note {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.clients__list {
  display: grid;
  gap: .75rem;
}

.clients__list li {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.clients__list span {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 600;
}

/* Contact */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact .display { margin-top: 1.2rem; }

.contact__intro {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.contact__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 2rem;
}

.contact__list li {
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact__label,
.field__label {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact__value {
  margin-top: .38rem;
  color: var(--ink);
  font-weight: 600;
}

.contact__value a:hover { color: var(--red); }

.form {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--dark);
  color: var(--on-dark);
  border-radius: 8px;
}

.form__title { font-size: 2rem; }

.form__sub {
  margin-top: .42rem;
  color: var(--on-dark-muted);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 1.3rem;
}

.field {
  display: grid;
  gap: .4rem;
  margin-bottom: .9rem;
}

.field__label { color: var(--on-dark-muted); }
.req { color: #ff6a7e; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(248, 243, 234, .24);
  border-radius: 4px;
  background: rgba(248, 243, 234, .08);
  color: var(--on-dark);
  padding: .86rem .9rem;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #ff6a7e;
  outline-offset: 0;
}

.field select option { color: var(--ink); }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: var(--on-dark-muted);
  font-size: .92rem;
}

.field--check input {
  width: 18px;
  height: 18px;
  margin-top: .25rem;
}

.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  min-height: 1.3em;
  margin-top: .85rem;
  color: var(--on-dark-muted);
}

.form__status.is-ok { color: #8ce0a7; }
.form__status.is-err { color: #ff9aaa; }

/* Footer */
.footer {
  background: #080a0d;
  color: var(--on-dark);
}

.footer__inner {
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .8fr;
  gap: 2rem;
}

.footer .brand__mark { display: none; }
.brand--light .brand__text strong { color: var(--on-dark); }
.brand--light .brand__text em { color: var(--on-dark-muted); }

.footer__brand p,
.footer__col p,
.footer__links a {
  color: var(--on-dark-muted);
}

.footer__brand p {
  max-width: 36ch;
  margin-top: 1rem;
}

.footer__head {
  margin-bottom: .75rem;
  color: #ff6a7e;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer__col p { margin-bottom: .8rem; }
.footer__links { display: grid; gap: .45rem; }
.footer a:hover { color: #fff; }

.footer__bottom {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem var(--gutter);
  border-top: 1px solid rgba(248, 243, 234, .12);
  color: var(--on-dark-muted);
  font-size: .88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: .75rem var(--gutter) 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(17,20,24,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child { border-bottom: 0; }
  .nav__menu a { padding: .85rem 0; }
  .nav__cta a { display: inline-flex; padding: .8rem 1rem; margin-top: .75rem; }

  .hero {
    min-height: auto;
    grid-template-columns: var(--gutter) minmax(0, 1fr) var(--gutter);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(17,20,24,.92) 0%, rgba(17,20,24,.42) 58%, rgba(17,20,24,.68) 100%),
      linear-gradient(90deg, rgba(17,20,24,.76), rgba(17,20,24,.22));
  }

  .hero__image img { object-position: 58% 50%; }

  .hero__body {
    grid-column: 2;
    padding: 4.8rem 0 2rem;
  }

  .hero__facts {
    grid-column: 2;
    width: 100%;
    margin-inline: 0;
    margin-bottom: 1.6rem;
  }

  .about__grid,
  .services__grid,
  .clients__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section-kicker,
  .section-head {
    position: static;
  }

  .vehicle-strip { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-addon { grid-template-columns: 1fr; }
  .service-addon__price {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .price-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .price-stack div {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .price-stack div:last-child { border-right: 0; }

  .service-row--main .price-stack div { border-color: rgba(248, 243, 234, .14); }

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

  .ba__thumbs {
    grid-template-columns: repeat(8, minmax(38px, 1fr));
  }

  .ba__counter { grid-column: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .display { font-size: clamp(2.25rem, 10vw, 3rem); }
  .display--md {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .topbar__tag { display: none; }

  .topbar__phones {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }

  .topbar__phones a {
    display: flex;
    align-items: baseline;
    gap: .32rem;
    min-width: 0;
    font-size: .82rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .topbar__phones a span {
    margin-right: 0;
    font-size: .62rem;
    white-space: nowrap;
  }

  .topbar__sep { display: none; }

  .container,
  .vehicle-strip {
    padding-inline: 1rem;
  }

  .about__content,
  .section-head,
  .vehicle-strip article,
  .service-row,
  .service-addon,
  .clients__grid > *,
  .contact__info,
  .form {
    max-width: 100%;
    min-width: 0;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong { font-size: 1rem; }

  .hero__body {
    padding-top: 4.2rem;
  }

  .hero .lede {
    max-width: 32ch;
  }

  .about__content p,
  .section-head__note,
  .svc__lead,
  .vehicle-strip p {
    overflow-wrap: anywhere;
  }

  .about__content .display,
  .about__content p,
  .vehicle-strip div,
  .section-head .display,
  .section-head__note {
    max-width: 20rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

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

  .hero__facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 243, 234, .16);
  }

  .hero__facts div:last-child { border-bottom: 0; }

  .price-stack { grid-template-columns: 1fr; }

  .price-stack div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-stack div:last-child { border-bottom: 0; }

  .ba__pair,
  .contact__list,
  .form__row,
  .footer__inner {
    grid-template-columns: 1fr;
  }

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

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