@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/roboto-condensed-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/roboto-condensed-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --page: #0b0b0a;
  --page-soft: #12110f;
  --surface: #181613;
  --surface-raised: #201c18;
  --line: rgb(255 244 232 / 14%);
  --line-strong: rgb(228 123 50 / 58%);
  --text: #f7f2ec;
  --soft: #ddd4ca;
  --muted: #b9b0a7;
  --accent: #e47b32;
  --accent-hover: #f18d46;
  --accent-text: #160b05;
  --danger: #ffb4a6;
  --radius-card: 14px;
  --radius-control: 10px;
  --shadow: 0 22px 64px rgb(0 0 0 / 34%);
  --font-main: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: "Roboto Condensed", "Arial Narrow", "Manrope", Arial, sans-serif;
  --content: 1120px;
  --gutter: clamp(16px, 2.35vw, 32px);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
summary,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffb16d;
  outline-offset: 3px;
}

.page-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content max-content;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  min-height: var(--header-height);
  padding: 8px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgb(11 11 10 / 90%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  width: 58px;
  height: 44px;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 1px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: stretch;
  justify-content: center;
  gap: clamp(4px, 0.65vw, 12px);
}

.desktop-nav a {
  --nav-link-inline-padding: clamp(3px, 0.35vw, 7px);
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: var(--nav-link-inline-padding);
  color: var(--muted);
  font-size: clamp(0.76rem, 0.76vw, 0.9rem);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  top: calc(50% + 0.55em + 4px);
  right: var(--nav-link-inline-padding);
  left: var(--nav-link-inline-padding);
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease-out;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav__label--compact {
  display: none;
}

.header-actions {
  display: contents;
}

.header-phones {
  display: grid;
  gap: 2px;
}

.header-phone {
  position: relative;
  display: grid;
  grid-template-columns: 48px max-content;
  min-height: 28px;
  align-items: center;
  column-gap: 6px;
  padding-left: 12px;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  background: currentColor;
  content: "";
  opacity: 0.35;
  transform: translateY(-50%);
}

.header-phone__label {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.header-phone__number {
  font-weight: 750;
  line-height: 1.3;
  white-space: nowrap;
}

.header-cta,
.btn,
.form-submit {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-cta,
.btn--primary,
.form-submit {
  background: var(--accent);
  color: var(--accent-text);
}

.header-cta:hover,
.btn--primary:hover,
.form-submit:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  border-color: rgb(255 244 232 / 32%);
  background: rgb(15 14 12 / 62%);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  background: rgb(228 123 50 / 12%);
}

.header-cta:active,
.btn:active,
.form-submit:active {
  transform: translateY(1px);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 54px) 0 70px;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.hero::before {
  background: url("/assets/optimized/paint-car-brown-hero-1440.jpg") 58% center / cover no-repeat;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(8 8 7 / 95%) 0 36%, rgb(8 8 7 / 73%) 62%, rgb(8 8 7 / 84%) 100%),
    linear-gradient(0deg, rgb(11 11 10 / 88%) 0, transparent 45%);
}

.hero__ambient {
  display: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(39px, 3.45vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero__lead {
  max-width: 65ch;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.58;
}

.hero__actions,
.about-bottom__actions,
.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgb(255 244 232 / 18%);
  border-radius: var(--radius-card);
  background: rgb(20 18 15 / 85%);
  box-shadow: var(--shadow);
}

.hero-panel__top {
  padding: 20px 22px 17px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.hero-panel__top .eyebrow {
  margin-bottom: 6px;
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel h2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.3;
}

.hero-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr 36px;
  align-items: center;
  gap: 8px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.hero-service-card:last-child {
  border-bottom: 0;
}

.hero-service-card > span {
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
}

.hero-service-card h3 {
  margin: 0;
  font-size: 16px;
}

.hero-service-card--link {
  min-height: 64px;
  color: inherit;
  text-decoration: none;
}

.hero-service-card--link:hover,
.hero-service-card--link:focus-visible {
  background: var(--surface-strong);
}

.hero-service-card--link:focus-visible {
  z-index: 1;
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.hero-service-card--link .hero-service-card__toggle {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.hero-service-card__toggle {
  display: grid;
  width: 36px;
  min-height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: transparent;
  cursor: pointer;
}

.hero-service-card__toggle svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.hero-service-card__toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.hero-service-card__items {
  grid-column: 2 / -1;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.page-section {
  padding: clamp(66px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading,
.services-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading--split,
.services-heading {
  display: block;
}

.section-heading h2,
.services-heading h2,
.contact-copy h2,
.faq-layout__heading h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.section-heading p,
.services-heading p,
.contact-lead,
.about-heading > p {
  max-width: 70ch;
  margin-bottom: 10px;
  color: var(--muted);
}

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

.works-accordion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-case {
  min-width: 0;
}

.case-summary {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.case-summary:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.case-summary__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 180px;
  margin-bottom: 17px;
  overflow: hidden;
}

.case-summary__photos > span {
  min-width: 0;
  overflow: hidden;
}

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

.case-summary__meta,
.case-summary > strong,
.case-summary__excerpt,
.case-summary__action {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.case-summary__meta {
  margin-bottom: 7px;
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
}

.case-summary > strong {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.case-summary__excerpt {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.case-summary__action {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.works-note {
  max-width: 78ch;
  margin: 24px 0 0;
  color: var(--muted);
}

.services-surface {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
}

.service-navigator {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.service-direction {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.service-direction__head {
  padding: 23px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.service-direction__label,
.about-card__label,
.news-card__meta {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
}

.service-direction__head h2,
.service-direction__head h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.service-direction__head p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-direction--mechanic .service-list {
  grid-template-columns: 1fr;
}

.service-direction--srs {
  grid-column: 1 / -1;
}

.service-direction--srs .service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 0;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.service-row:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-direction--srs .service-row:nth-child(odd) {
  border-right: 0;
}

.service-direction--srs .service-row:not(:last-child) {
  border-right: 1px solid var(--line);
}

.service-row:hover,
.service-row:focus-visible {
  background: rgb(228 123 50 / 10%);
}

.service-row__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.service-row__copy strong {
  line-height: 1.35;
}

.service-row__copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-row__marker {
  align-self: start;
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 800;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: rgb(228 123 50 / 9%);
}

.services-cta h3 {
  margin-bottom: 4px;
}

.services-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-section {
  background: #0f0e0c;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-card {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

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

.trust-card > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cost-section .about-card,
.about-section .about-card {
  padding: 23px 24px;
  border-top: 1px solid var(--line-strong);
  background: var(--surface);
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.about-list {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--muted);
}

.about-section {
  background: var(--page);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stat {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-hover);
  font-family: var(--font-display);
  font-size: 25px;
}

.about-stat p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-raised);
}

.about-bottom__copy h3 {
  margin-bottom: 7px;
}

.about-bottom__copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-why-list {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 14px;
}

.about-why-list span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-why-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent-hover);
  stroke-width: 1.5;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 2fr);
  gap: 42px;
}

.faq-categories {
  display: grid;
  gap: 30px;
}

.faq-category__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.faq-category__head > span {
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
}

.faq-category__head h3 {
  margin: 0;
  font-size: 19px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 16px 44px 16px 0;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 15px;
  right: 5px;
  color: var(--accent-hover);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  max-width: 70ch;
  padding: 0 40px 16px 0;
  color: var(--muted);
}

.faq-item__answer p {
  margin-bottom: 0;
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  padding-top: clamp(66px, 7vw, 96px);
  padding-bottom: clamp(66px, 7vw, 96px);
}

.contact-stage > .contact-lead[data-local-facts] {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0 0 10px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: rgb(228 123 50 / 8%);
  color: var(--soft);
}

.contact-stage .contact-section,
.contact-stage .request-inline {
  min-width: 0;
  padding: 0;
  border-bottom: 0;
}

.contact-stage .contact-section .page-shell {
  width: auto;
  height: 100%;
  margin: 0;
}

.contact-grid,
.contact-copy {
  height: 100%;
}

.contact-copy,
.request-modal__shell {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.contact-copy h2 {
  font-size: clamp(28px, 2.65vw, 38px);
}

.contact-links {
  display: grid;
  margin-top: 24px;
}

.contact-link {
  display: grid;
  grid-template-columns: minmax(116px, 0.45fr) 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-link:last-child {
  border-bottom: 0;
}

.contact-link[href]:hover .contact-link__value {
  color: var(--accent-hover);
}

.contact-link__label {
  color: var(--muted);
  font-size: 13px;
}

.contact-link__note {
  display: block;
  font-size: 11px;
}

.contact-link__value {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 720;
}

.request-modal__close {
  display: none;
}

.request-form__head h3,
.request-thanks h3,
.call-modal h3,
.case-modal h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.request-form__head > p:last-child {
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 720;
}

.form-row > span {
  color: var(--muted);
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgb(255 244 232 / 26%);
  border-radius: var(--radius-control);
  background: #0e0d0b;
  color: var(--text);
}

.form-row textarea {
  min-height: 112px;
  resize: vertical;
}

.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgb(255 113 113 / 24%);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #a9a097;
}

.channel-choice,
.legal-consents {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.channel-choice legend,
.legal-consents__legend {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 720;
}

.channel-choice__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.channel-choice__options label {
  position: relative;
}

.channel-choice__options input {
  position: absolute;
  opacity: 0;
}

.channel-choice__options span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgb(255 244 232 / 24%);
  border-radius: var(--radius-control);
  cursor: pointer;
}

.channel-choice__options input:checked + span {
  border-color: var(--accent);
  background: rgb(228 123 50 / 13%);
  color: var(--text);
}

.channel-choice__options input:focus-visible + span {
  outline: 3px solid #ffb16d;
  outline-offset: 2px;
}

.legal-consents {
  display: grid;
  gap: 12px;
}

.legal-consent {
  display: grid;
  min-height: 44px;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.legal-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.legal-consent input[aria-invalid="true"] {
  outline: 3px solid var(--danger);
  outline-offset: 3px;
}

.legal-consent a {
  color: var(--soft);
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-note,
.request-thanks__note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-fallback {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  color: var(--text);
  font-weight: 800;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.form-fallback[hidden] {
  display: none;
}

.form-submit {
  width: 100%;
}

.request-thanks {
  min-height: 420px;
  align-content: center;
  text-align: center;
}

.request-thanks__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 900;
}

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

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.news-card {
  padding: 24px;
  border-top: 1px solid var(--line-strong);
  background: var(--surface);
}

.news-card h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.news-card p {
  color: var(--muted);
}

.news-card__actions,
.case-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news-card__actions-label,
.case-detail__actions-label {
  color: var(--muted);
  font-size: 12px;
}

.news-card__link,
.case-detail__link,
.work-card__cta {
  color: var(--text);
  font-weight: 800;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.case-detail__page-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-detail__page-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-footer {
  padding: 48px 0 100px;
  background: #080807;
}

.site-footer__grid {
  display: grid;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 25px;
}

.site-footer p {
  max-width: 72ch;
  margin-bottom: 8px;
  color: var(--muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 22px 0;
}

.site-footer__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--soft);
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.mobile-action-dock {
  display: none;
}

.case-modal,
.call-modal {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.call-modal {
  width: min(520px, calc(100% - 32px));
}

.case-modal::backdrop,
.call-modal::backdrop {
  background: rgb(0 0 0 / 76%);
  backdrop-filter: blur(5px);
}

.case-modal__shell,
.call-modal__shell {
  padding: clamp(20px, 3vw, 34px);
}

.case-modal__close,
.call-modal__close {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: transparent;
  cursor: pointer;
}

.case-detail {
  display: grid;
  gap: 24px;
}

.case-detail__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.case-photo {
  min-width: 0;
  margin: 0;
}

.case-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-control);
}

.case-photo figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.case-detail__report p {
  max-width: 75ch;
  color: var(--muted);
}

.call-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.call-option {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  text-decoration: none;
}

.call-option:hover {
  border-color: var(--accent);
}

.call-option span {
  color: var(--muted);
  font-size: 12px;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header {
    gap: 8px;
    padding-right: clamp(12px, 1.8vw, 20px);
    padding-left: clamp(12px, 1.8vw, 20px);
  }

  .brand {
    gap: 6px;
  }

  .brand__mark {
    width: 50px;
    height: 40px;
  }

  .brand__name {
    font-size: 14px;
  }

  .desktop-nav a {
    --nav-link-inline-padding: 2px;
    font-size: 0.72rem;
  }

  .desktop-nav__label--full {
    display: none;
  }

  .desktop-nav__label--compact {
    display: inline;
  }

  .header-phone {
    grid-template-columns: 42px max-content;
    column-gap: 4px;
    padding-left: 9px;
  }

  .header-phone__label {
    font-size: 10px;
  }

  .header-phone__number {
    font-size: 0.82rem;
  }

  .header-cta {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu__toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu__bars {
    display: grid;
    width: 18px;
    gap: 4px;
  }

  .mobile-menu__bars span {
    height: 1px;
    background: currentColor;
  }

  .mobile-menu__panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    padding: 10px var(--gutter) 18px;
    border-bottom: 1px solid var(--line);
    background: #11100e;
  }

  .mobile-menu__panel > a,
  .mobile-menu__social-toggle {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    padding: 9px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    text-decoration: none;
  }

  .mobile-menu__socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 10px;
  }

  .mobile-menu__socials a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    text-decoration: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero__grid,
  .service-navigator,
  .faq-layout,
  .contact-stage,
  .case-detail__visual {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .works-accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card:nth-child(2) {
    border-right: 0;
  }

  .trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat:nth-child(2) {
    border-right: 0;
  }

  .about-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-bottom {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 12px;
  }

  .contact-stage > .contact-lead[data-local-facts] {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: clamp(20px, 6.15vw, 24px);
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .site-header {
    padding-right: clamp(14px, 4.1vw, 18px);
    padding-left: clamp(14px, 4.1vw, 18px);
  }

  .brand {
    gap: 7px;
  }

  .brand__mark {
    width: 46px;
    height: 38px;
  }

  .brand__name {
    font-size: 13px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 46px;
  }

  .hero::before {
    background: #0b0b0a url("/assets/optimized/paint-car-brown-hero-960.jpg") 67% -150px / auto clamp(610px, 78svh, 680px) no-repeat;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgb(7 7 7 / 58%) 0 34%, rgb(7 7 7 / 44%) 66%, rgb(7 7 7 / 58%) 100%),
      linear-gradient(180deg, rgb(7 7 7 / 62%) 0, rgb(7 7 7 / 54%) 43%, rgb(7 7 7 / 88%) 100%);
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__title {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.1;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.52;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero-service-card__toggle {
    width: 44px;
    height: 44px;
  }

  .hero-panel__top,
  .hero-service-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading,
  .services-heading {
    margin-bottom: 25px;
  }

  .section-heading h2,
  .services-heading h2,
  .contact-copy h2,
  .faq-layout__heading h2 {
    font-size: 28px;
  }

  .works-accordion,
  .service-list,
  .trust-grid,
  .about-card-grid,
  .news-grid,
  .case-detail__visual {
    grid-template-columns: 1fr;
  }

  .service-direction--srs .service-list {
    grid-template-columns: 1fr;
  }

  .case-summary__photos {
    height: 166px;
  }

  .service-row:nth-child(odd) {
    border-right: 0;
  }

  .service-direction--srs .service-row:not(:last-child) {
    border-right: 0;
  }

  .services-cta {
    display: grid;
    padding: 19px;
  }

  .services-cta .btn {
    width: 100%;
  }

  .trust-grid {
    border-bottom: 0;
  }

  .trust-card,
  .trust-card:nth-child(2) {
    display: grid;
    grid-template-columns: 40px 1fr;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-card > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .trust-card h3,
  .trust-card p {
    grid-column: 2;
  }

  .about-stat {
    padding: 16px 12px;
  }

  .about-stat p {
    font-size: 12px;
  }

  .about-bottom,
  .contact-copy,
  .request-modal__shell,
  .news-card,
  .cost-section .about-card,
  .about-section .about-card {
    padding: 19px;
  }

  .about-bottom__actions,
  .about-bottom__actions .btn {
    width: 100%;
  }

  .contact-stage {
    gap: 14px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .channel-choice__options {
    grid-template-columns: 1fr;
  }

  .request-thanks {
    min-height: 360px;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .mobile-action-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px clamp(14px, 4.1vw, 18px) max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgb(11 11 10 / 95%);
    backdrop-filter: blur(18px);
  }

  .mobile-action-dock .btn {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
    white-space: normal;
  }

  .case-modal,
  .call-modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header,
  .mobile-action-dock {
    background: #0b0b0a;
  }
}
