:root {
  --ink: #171717;
  --muted: #666b73;
  --line: #e6e1d9;
  --paper: #f7f3ed;
  --white: #ffffff;
  --red: #c4262e;
  --red-dark: #8d141b;
  --yellow: #f06d22;
  --steel: #48515c;
  --green: #6f8b2f;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
  --content-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  caret-color: transparent;
}

input,
textarea,
select,
[contenteditable="true"],
[role="textbox"] {
  caret-color: var(--ink);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lucide {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.project-return-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(247, 243, 237, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
}

.project-return-banner a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.project-return-banner a:hover,
.project-return-banner a:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.project-return-banner p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 243, 237, 0.94);
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
}

.site-nav .lucide {
  width: 16px;
  height: 16px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(23, 23, 23, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 56px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08)),
    url("yoda-carrosserie-service-assets/img/472413550_1264095441293256_1157840132848253358_n.jpg") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.86) 0%, rgba(16, 16, 16, 0.58) 42%, rgba(16, 16, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 16, 16, 0.82), rgba(16, 16, 16, 0) 44%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
  justify-self: end;
  width: min(380px, 100%);
  margin-top: 48px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--yellow);
}

.panel-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--red);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

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

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 38px;
}

.section-heading,
.service-grid,
.timeline,
.review-carousel,
.visual-band {
  width: min(100%, var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 23, 23, 0.06);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 52px;
  color: var(--red);
  background: #fff4ed;
  border: 1px solid #f1d4c3;
  border-radius: 8px;
}

.service-icon .lucide {
  width: 28px;
  height: 28px;
}

.service-card p,
.catalogue-copy p,
.timeline p,
.contact-section p {
  color: var(--muted);
}

.visual-band {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(72px, 9vw, 118px);
  background: var(--paper);
}

.visual-band figure {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
}

.visual-band img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.visual-main {
  grid-row: span 2;
}

.visual-main img {
  min-height: 654px;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  width: min(100% - clamp(36px, 10vw, 144px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  background: #18191b;
  box-shadow: 0 0 0 100vmax #18191b;
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.brand-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.brand-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-tiles article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f1011;
}

.brand-tiles img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  opacity: 0.88;
}

.brand-tiles span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--red);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  width: min(100% - clamp(36px, 10vw, 144px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.catalogue-copy p {
  max-width: 640px;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 750;
}

.check-list .lucide {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.catalogue-demo {
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 33, 36, 0.96), rgba(32, 33, 36, 0.82)),
    url("yoda-carrosserie-service-assets/assets/hero-workshop.png") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.demo-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  font-weight: 900;
}

.demo-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 11px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
}

.product-row strong,
.product-row small {
  display: block;
}

.product-row small {
  color: rgba(255, 255, 255, 0.62);
}

.product-thumb {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.status {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
}

.request-summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 7px;
}

.request-summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.request-summary a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
  font-weight: 850;
}

.process {
  background: #efe8de;
}

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

.proof-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.review-carousel {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  align-content: space-between;
  flex: 0 0 min(390px, calc(100vw - 36px));
  min-height: 230px;
  padding: 22px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 23, 23, 0.05);
  scroll-snap-align: start;
}

.review-card p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 17px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.review-meta span {
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 5px;
  font-weight: 900;
}

.review-meta small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.review-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.review-controls button:hover {
  background: var(--red);
}

.review-controls [data-review-prev] svg {
  transform: rotate(180deg);
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
  width: min(100% - clamp(36px, 10vw, 144px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
  background: #efe8de;
  box-shadow: 0 0 0 100vmax #efe8de;
  clip-path: inset(0 -100vmax);
}

.business-card,
.business-note {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.business-card h2 {
  margin-bottom: 28px;
}

.business-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.business-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.business-list dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-list dd {
  margin: 0;
  color: var(--steel);
  font-weight: 700;
}

.business-list a {
  color: var(--red);
}

.business-note {
  display: grid;
  align-content: end;
  color: var(--white);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
}

.business-note span {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-note strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.business-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 240px;
  padding: 28px;
  background: var(--paper);
}

.timeline .step-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 52px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.timeline .step-icon .lucide {
  width: 22px;
  height: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 90px);
  width: min(100% - clamp(36px, 10vw, 144px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.contact-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.66);
  background: #111111;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a:hover {
    background: rgba(23, 23, 23, 0.07);
  }

  .service-grid,
  .split-section,
  .visual-band,
  .brand-section,
  .timeline,
  .business-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 860px;
  }

  .hero-panel {
    justify-self: start;
  }

  .visual-main {
    grid-row: auto;
  }

  .visual-main img {
    min-height: 360px;
  }

  .brand-tiles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    max-width: 150px;
  }

  .hero {
    min-height: 820px;
    padding: 110px 16px 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 64px 16px;
  }

  .service-card,
  .review-card,
  .timeline article {
    min-height: auto;
  }

  .business-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-icon,
  .timeline .step-icon {
    margin-bottom: 32px;
  }

  .product-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .product-thumb {
    width: 46px;
    height: 46px;
  }

  .status {
    grid-column: 2;
  }

  .request-summary {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
