:root {
  --ink: #101418;
  --muted: #5f6973;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: rgba(16, 20, 24, 0.12);
  --dark: #091014;
  --teal: #17b8a6;
  --amber: #f2a93b;
  --steel: #d8e1e6;
  --shadow: 0 22px 70px rgba(9, 16, 20, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 245, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(9, 16, 20, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 900;
}

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

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

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

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.is-scrolled .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.header-cta {
  padding: 0 16px;
  background: var(--teal);
  color: #031514;
}

.btn {
  padding: 0 18px;
}

.btn svg,
.header-cta svg,
.nav-toggle svg,
.intro-grid svg,
.proof svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.primary {
  background: var(--teal);
  color: #031514;
  box-shadow: 0 18px 40px rgba(23, 184, 166, 0.22);
}

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

.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.94), rgba(3, 6, 8, 0.58) 42%, rgba(3, 6, 8, 0.1)),
    linear-gradient(0deg, rgba(3, 6, 8, 0.82), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 90px) clamp(18px, 6vw, 82px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats span {
  min-width: 142px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--white);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.section-note {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.intro-grid,
.package-grid,
.coating-note,
.promo-banner,
.level-up-grid,
.charges-panel,
.addon-grid,
.result-layout,
.proof,
.booking-form,
.estimate {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.intro-grid article,
.package,
.timeline article,
.review {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid article {
  padding: 26px;
}

.intro-grid svg {
  margin-bottom: 18px;
  color: var(--teal);
}

.intro-grid p,
.package p,
.timeline p,
.estimate-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 24px;
}

.pricing-card {
  min-height: 0;
}

.package.featured {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.package.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.package-summary {
  min-height: 82px;
}

.pricing-card .package-summary {
  min-height: 94px;
}

.package-tag {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 184, 166, 0.14);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.featured .service-option {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-option h4 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.service-option p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-price {
  align-self: start;
  font-size: 1.45rem;
}

.combo-option {
  position: relative;
  margin-top: auto;
  padding: 18px 14px;
  border: 1px solid rgba(23, 184, 166, 0.34);
  border-radius: 8px;
  background: rgba(23, 184, 166, 0.08);
}

.featured .combo-option {
  border-color: rgba(23, 184, 166, 0.46);
  background: rgba(23, 184, 166, 0.12);
}

.package a {
  margin-top: 20px;
  color: var(--teal);
  font-weight: 900;
}

.package-saving {
  grid-column: 1 / -1;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
}

.promo-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 169, 59, 0.42);
  border-radius: 8px;
  background: #fff8ea;
}

.promo-banner svg {
  width: 24px;
  height: 24px;
  color: var(--amber);
}

.promo-banner strong {
  display: block;
  font-size: 1.03rem;
}

.promo-banner p,
.price-footnote,
.level-up-grid p,
.charges-panel li,
.estimate-note {
  color: var(--muted);
  line-height: 1.55;
}

.promo-banner p,
.price-footnote,
.level-up-grid p {
  margin: 6px 0 0;
}

.price-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.featured .price-row {
  border-color: rgba(255, 255, 255, 0.16);
}

.price-row span {
  color: var(--muted);
  font-weight: 850;
}

.featured .price-row span {
  color: rgba(255, 255, 255, 0.76);
}

.price-row strong {
  font-size: 1.45rem;
  line-height: 1;
}

.price-footnote {
  min-height: 48px;
  font-size: 0.88rem;
}

.best-value {
  transform: translateY(-6px);
}

.best-value .package-tag {
  background: rgba(242, 169, 59, 0.18);
  color: var(--amber);
}

.level-up-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.level-up-grid article,
.charges-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.level-up-grid article {
  padding: 20px;
}

.level-up-grid .package-tag {
  margin-bottom: 10px;
}

.charges-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  margin-top: 24px;
  padding: 24px;
}

.charges-panel h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.charges-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.coating-note {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.coating-note .package-tag {
  margin-bottom: 10px;
}

.coating-note h3,
.coating-note p {
  margin-bottom: 0;
}

.coating-note p {
  margin-top: 6px;
  color: var(--muted);
}

.coating-note > strong {
  font-size: 1.45rem;
  white-space: nowrap;
}

.coating-note > a {
  color: var(--teal);
  font-weight: 900;
}

.addon-heading {
  width: min(1180px, 100%);
  margin: 52px auto 22px;
}

.addon-heading h3 {
  max-width: 720px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

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

.addon-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.addon-grid svg {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.addon-grid h4,
.addon-grid p {
  margin: 0;
}

.addon-grid p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.addon-grid strong {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--ink);
  font-size: 1.15rem;
}

.booking-addons {
  background: #fbfcfa;
}

.specialty {
  border-top: 1px solid var(--line);
}

.specialty-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.specialty-grid article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.specialty-grid svg {
  width: 25px;
  height: 25px;
  margin-bottom: 34px;
  color: var(--teal);
}

.specialty-grid h3 {
  font-size: 1.05rem;
}

.specialty-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.specialty-grid .specialty-more {
  background: var(--dark);
  color: var(--white);
}

.specialty-grid .specialty-more p {
  color: rgba(255, 255, 255, 0.72);
}

.specialty-cta {
  margin: 24px max(0px, calc((100% - 1180px) / 2)) 0;
}

.inner-page {
  padding-top: 78px;
}

.inner-page .site-header {
  color: var(--ink);
}

.gallery-hero {
  min-height: 510px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.94), rgba(3, 6, 8, 0.5)),
    url("assets/hero-detailing.jpg") center 58% / cover;
  color: var(--white);
}

.gallery-hero > div {
  width: min(760px, 100%);
}

.gallery-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.gallery-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.65;
}

.gallery-notice,
.gallery-grid {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.gallery-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid rgba(242, 169, 59, 0.45);
  border-radius: 8px;
  background: rgba(242, 169, 59, 0.1);
}

.gallery-notice svg {
  flex: 0 0 auto;
  color: #a76400;
}

.gallery-notice p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.gallery-item:nth-child(2) img {
  object-position: 68% center;
}

.gallery-item:nth-child(3) img {
  object-position: 34% center;
}

.gallery-item div {
  padding: 22px;
}

.gallery-item span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-item h2 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.gallery-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.estimate {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}

.estimator,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.estimator {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label,
legend {
  color: #273039;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  padding: 13px;
  resize: vertical;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
}

.promo-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(242, 169, 59, 0.38);
  border-radius: 8px;
  background: #fff8ea;
}

.promo-check input {
  flex: 0 0 auto;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

.quote-output {
  display: block;
  padding: 18px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

.estimate-note {
  margin: -8px 0 0;
  font-size: 0.9rem;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
  align-items: stretch;
}

.visual-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

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

.shine-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, 0.55) 48%, transparent 56%);
  mix-blend-mode: screen;
  animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
  0%,
  30% {
    transform: translateX(-70%);
  }
  75%,
  100% {
    transform: translateX(70%);
  }
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
}

.timeline span {
  color: var(--amber);
  font-weight: 950;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.review {
  padding: 30px;
}

.review svg {
  color: var(--amber);
}

.review p {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.proof-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  font-weight: 900;
}

.proof-list svg {
  color: var(--teal);
  flex: 0 0 auto;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: var(--dark);
  color: var(--white);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  font-weight: 850;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

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

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

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

  .site-nav.is-open {
    position: absolute;
    top: 76px;
    right: 18px;
    display: grid;
    width: min(280px, calc(100vw - 36px));
    border-radius: 8px;
    background: rgba(247, 248, 245, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .intro-grid,
  .package-grid,
  .level-up-grid,
  .charges-panel,
  .estimate,
  .result-layout,
  .proof,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

  .package {
    min-height: auto;
  }

  .package-summary {
    min-height: auto;
  }

  .pricing-card .package-summary,
  .price-footnote {
    min-height: auto;
  }

  .best-value {
    transform: none;
  }

  .coating-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .visual-panel {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 860px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 6, 8, 0.92), rgba(3, 6, 8, 0.42)),
      linear-gradient(90deg, rgba(3, 6, 8, 0.82), rgba(3, 6, 8, 0.2));
  }

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

  .hero-stats span {
    width: 100%;
  }

  .package-grid,
  .addon-grid,
  .specialty-grid,
  .proof-list,
  .booking-form,
  .promo-banner,
  .charges-panel,
  fieldset {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
