:root {
  --red: #c81020;
  --ink: #000321;
  --ink-soft: #222639;
  --muted: #666;
  --line: #e8e8e8;
  --panel: #f6f6f6;
  --white: #fff;
  --dark-panel: #161616;
  --max: 1180px;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(0, 3, 33, 0.12);
}

* {
  box-sizing: border-box;
}

img,
iframe,
video,
embed,
object {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  width: 175px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.nav-dropdown-trigger:hover,
.site-footer a:hover {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--ink);
}

.nav-dropdown-arrow {
  font-size: 0.75em;
  transition: transform 0.2s;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
  font-weight: 600;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta,
.button {
  color: var(--white);
  background: var(--red);
}

.header-cta:hover,
.button:hover {
  background: #c81727;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 100%;
  min-height: 700px;
  margin: 0;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: Jost, sans-serif;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(48px, 7vw, 86px);
  color: var(--white);
}

.hero p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

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

.eyebrow::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 18px;
  background: var(--red);
}

.section-heading .eyebrow::after {
  margin-right: auto;
  margin-left: auto;
}

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

.section-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

.placeholder-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1300px;
  margin: -48px auto 0;
  padding: 0 24px 0;
  gap: 16px;
  position: relative;
  z-index: 5;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}

.feature-strip article,
.price-card,
.process-grid article,
blockquote,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-strip article {
  padding: 25px 23px;
  border-radius: 25px;
  box-shadow: 4px 6px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  overflow: hidden;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-strip h2,
.price-card h3,
.process-grid h3 {
  margin: 18px 0 10px;
  font-family: Jost, sans-serif;
  line-height: 1.3;
}

.feature-strip h2 {
  font-size: 20px;
  line-height: 26px;
}

.feature-strip p,
.section-copy p,
.process-grid p,
blockquote p,
.faq p {
  color: var(--muted);
}

.review-band {
  padding: 26px 24px;
  color: var(--white);
  background-image: url("assets/dark-car-interior.webp");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.review-band p {
  margin: 0;
  font-family: Jost, sans-serif;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 800;
}

.review-band span {
  color: #f8a507;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  min-height: 566px;
  padding: 20px max(24px, calc((100vw - var(--max)) / 2)) 75px;
  align-items: center;
  background-color: var(--white);
  background-size: 53%;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.split-section::before {
  content: none;
}

.split-section .section-copy {
  position: relative;
  z-index: 2;
  max-width: 565px;
  color: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  min-height: 1110px;
  padding: 75px max(24px, calc((100vw - var(--max)) / 2));
  align-items: start;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact::before {
  content: none;
}

.section-copy h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.section-copy p {
  font-size: 18px;
}

.section-copy .eyebrow {
  color: var(--red);
}

.pricing,
.faq {
  padding: 90px 24px;
}

.pricing {
  padding-top: 60px;
  padding-bottom: 40px;
}

.pricing,
.testimonials {
  background: var(--panel);
}

.process {
  padding-top: 58px;
  padding-bottom: 42px;
  background: var(--panel);
}

.testimonials {
  padding-top: 84px;
  padding-bottom: 84px;
  color: var(--white);
  background-image: url("assets/dark-car-interior.webp");
  background-position: center;
  background-size: cover;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 38px;
  text-align: center;
}

.pricing-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 22px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
}

.price-card ul,
.price-card .button {
  width: 100%;
  align-self: stretch;
}

.price-card.featured {
  color: var(--white);
  background-image: url("assets/dark-car-interior.webp");
  background-position: center;
  background-size: cover;
  border-color: var(--ink);
  transform: translateY(-12px);
}

.price-card.featured .time,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.price {
  margin: 6px 0;
  color: var(--red);
  font-family: "Bebas Neue", sans-serif;
  font-size: 68px;
  line-height: 1;
}

.time {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  flex: 1;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--muted);
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 0;
  font-weight: 800;
  text-align: center;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 48px;
}

.process-grid article {
  position: relative;
  overflow: visible;
  padding: 84px 30px 30px;
}

.process-grid article > :not(.process-image) {
  margin-right: 0;
  margin-left: 0;
}

.process-image {
  position: absolute;
  top: -60px;
  left: 28px;
  display: block;
  width: 120px;
  height: 120px;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-image span {
  display: none;
}

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

blockquote {
  margin: 0;
  padding: 32px;
}

blockquote p {
  color: var(--muted);
}

blockquote::before {
  color: var(--red);
  content: "★★★★★";
  font-size: 18px;
  letter-spacing: 0.08em;
}

cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  margin-bottom: 14px;
  padding: 20px 24px;
}

.faq summary {
  cursor: pointer;
  font-family: Jost, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.contact {
  align-items: start;
}

.contact-copy {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact > div {
  grid-column: 2;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-copy h2 {
  margin-bottom: 28px;
}

.contact-copy a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  font-size: 20px;
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-copy a svg {
  flex-shrink: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.required-star {
  color: var(--red);
  font-weight: 900;
  margin-right: 2px;
}

.contact-submit {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 18px;
  min-width: 0;
}


.contact-form label {
  font-weight: 900;
  color: var(--ink);
}

.contact-form input[type="text"],
.contact-form input[type="tel"] {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid #acacac;
  border-radius: var(--radius);
  font: inherit;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.checkbox-row input {
  margin-top: 4px;
}

.form-fineprint {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 1fr;
  gap: 30px;
  padding: 60px clamp(24px, 5vw, 70px) 28px;
  color: var(--white);
  background: var(--dark-panel);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #cbd5e0;
  font-family: Jost, sans-serif;
  font-size: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open .nav-dropdown {
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open .nav-dropdown-trigger {
    width: 100%;
    padding: 14px 0;
    justify-content: space-between;
  }

  .main-nav.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 4px 16px;
    min-width: 0;
    background: transparent;
  }

  .main-nav.is-open .nav-dropdown.is-open .nav-dropdown-menu li a {
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 0.9em;
    white-space: normal;
  }

  .hero,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact > div {
    grid-column: 1;
  }

  .hero {
    min-height: 0;
  }

  .section-media {
    min-height: 420px;
  }

  .hero-media {
    min-width: 0;
  }

  .feature-strip,
  .pricing-grid,
  .process-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .section-media {
    min-height: 320px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .feature-strip,
  .pricing-grid,
  .process-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pricing,
  .process,
  .testimonials,
  .faq,
  .split-section,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .split-section {
    background-image: none !important;
  }

  .contact-copy {
    padding: 30px;
  }

  .footer-bottom {
    display: block;
  }
}

/* Calendar */
.calendar {
  position: relative;
  overflow: hidden;
}

/* Service area sections */
.service-area-section {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-area-section--image-left,
.service-area-section--image-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-area-section--image-left img,
.service-area-section--image-right img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
}

.service-area-section--full {
  max-width: 800px;
}

.service-area-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .service-area-section--image-left,
  .service-area-section--image-right {
    grid-template-columns: 1fr;
  }

  .service-area-section--image-right img {
    order: -1;
  }
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 40px);
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 10px;
}

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--ink);
}
