:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --muted: #61616a;
  --paper: #f5f5f7;
  --white: #ffffff;
  --line: rgba(10, 10, 10, 0.1);
  --green: #23c483;
  --blue: #0071e3;
  --steel: #d7dde2;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

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

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

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

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  min-height: 58px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.66);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.brand img {
  width: 184px;
  filter: invert(1) hue-rotate(180deg) contrast(1.1);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav a:hover,
.header-cta:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.4)),
    url("assets/workshop-hero.jpg") center / cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 34%);
  mix-blend-mode: screen;
}

.hero-content {
  align-self: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.9rem, 10vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 113, 227, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section[id] {
  scroll-margin-top: 92px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.section-heading h2,
.feature-copy h2,
.process-copy h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.large-copy,
.feature-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.service-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #edf8f3;
  color: #087a4f;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 40px 0 10px;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.options {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.options .section-heading h2 {
  max-width: 980px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.option-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 18px;
  align-content: start;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.option-card-dark {
  background: linear-gradient(135deg, rgba(35, 196, 131, 0.22), transparent 48%), #111;
  color: var(--white);
}

.option-card span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(35, 196, 131, 0.46);
  border-radius: 8px;
  background: rgba(35, 196, 131, 0.12);
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.option-card h3 {
  max-width: 500px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.option-card p {
  grid-column: 2;
  max-width: 560px;
  margin: 0;
  color: inherit;
  line-height: 1.55;
  opacity: 0.72;
}

.option-card a {
  grid-column: 2;
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 900;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.feature-copy p {
  margin-top: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #25252b;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.insights {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: var(--white);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.insight-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 16px;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.insight-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(35, 196, 131, 0.34);
  border-radius: 8px;
  background: rgba(35, 196, 131, 0.12);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.insight-grid h3 {
  margin: 2px 0 12px;
  font-size: 1.35rem;
}

.insight-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.comparison-shell img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.after-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(215, 221, 226, 0.88)),
    repeating-linear-gradient(90deg, rgba(10, 10, 10, 0.05) 0 1px, transparent 1px 12px);
}

.after-panel span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.78);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.slider-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.slider-label input {
  width: 100%;
  accent-color: var(--green);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 58px;
  align-items: center;
}

.process-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.steps li::before {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  content: counter(step);
  counter-increment: step;
  font-weight: 900;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.coverage span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

.markets {
  padding-bottom: 28px;
}

.instagram {
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 76px;
  padding-right: max(20px, calc((100vw - 1280px) / 2));
  padding-left: max(20px, calc((100vw - 1280px) / 2));
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.ig-post {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ig-post img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-post:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.ig-post::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
}

.ig-post-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.ig-post-badge::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.ig-post-placeholder {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)) 0 0 / 220% 100%,
    linear-gradient(135deg, #f4f4f4, #e6e6e6);
  animation: instagram-shimmer 1.25s ease-in-out infinite;
}

.instagram-unavailable .ig-post-placeholder,
.ig-post-before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.12)),
    url("assets/dent-panel.svg") center / cover;
}

.ig-post-process {
  background: url("assets/glue-pulling.jpg") center / cover;
}

.ig-post-after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44)),
    url("assets/dent-panel.svg") center / cover;
}

.ig-post-lease {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("assets/workshop-hero.jpg") center / cover;
}

.ig-post-callout {
  background:
    linear-gradient(135deg, rgba(35, 196, 131, 0.18), rgba(0, 0, 0, 0.24)),
    url("assets/glue-pulling.jpg") center / cover;
}

.ig-post-base {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/workshop-hero.jpg") 64% center / cover;
}

@keyframes instagram-shimmer {
  0% {
    background-position: 120% 0, center;
  }

  100% {
    background-position: -120% 0, center;
  }
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 14px 15px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .button {
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.form-note code {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 24px;
  font-size: 1.08rem;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
  color: var(--muted);
}

.footer img {
  width: 164px;
}

.footer p {
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-weight: 850;
}

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

@media (max-width: 860px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 54px;
    padding: 7px 8px 7px 12px;
  }

  .brand img {
    width: 154px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 30px, 680px);
    padding: 104px 0 116px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .section,
  .intro,
  .options,
  .feature,
  .process,
  .instagram,
  .quote {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section,
  .options,
  .quote {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .instagram {
    padding-top: 0;
    padding-bottom: 64px;
  }

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

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

  .option-card {
    min-height: 220px;
  }

  .option-card h3 {
    margin-top: 0;
  }

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

  .quote-copy {
    position: static;
  }

  .process-media {
    order: 2;
  }

  .process-media img,
  .comparison-shell,
  .comparison-shell img {
    min-height: 420px;
    height: 420px;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.86);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 54px;
    place-items: center;
    gap: 4px;
    border-radius: 6px;
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 850;
  }

  .mobile-action-bar a:nth-child(2) {
    background: var(--blue);
  }

  .mobile-action-bar svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 580px) {
  .site-header {
    top: 8px;
    width: calc(100% - 18px);
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.65rem);
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

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

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    text-align: center;
  }

  .hero-strip span {
    padding: 14px 8px;
    font-size: 0.8rem;
  }

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

  .service-card {
    min-height: 220px;
  }

  .section-heading h2,
  .feature-copy h2,
  .process-copy h2,
  .quote-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
  }

  .quote-form {
    padding: 18px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
  }

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

  .footer {
    flex-direction: column;
  }

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

  .option-card {
    min-height: auto;
    padding: 22px;
  }

  .option-card h3 {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
