:root {
  color-scheme: light;
  --ink: #12332d;
  --ink-soft: #547069;
  --forest: #113d35;
  --forest-light: #247364;
  --mint: #bcebdc;
  --mint-light: #eaf9f4;
  --orange: #ff7750;
  --cream: #fffaf0;
  --paper: #ffffff;
  --line: #d9e7e2;
  --card-shadow: 0 28px 80px rgba(17, 61, 53, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(188, 235, 220, 0.44), transparent 25rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

button,
input { font: inherit; }

a { color: inherit; }

.site-header {
  width: min(1120px, calc(100% - 2rem));
  min-height: 100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--forest);
  font-size: clamp(1.45rem, 5.5vw, 4.375rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 62px;
  height: 70px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.booking-layout {
  width: min(1120px, calc(100% - 2rem));
  min-height: calc(100vh - 116px);
  margin: 0 auto;
  padding: 0.75rem 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 7rem);
}

.left-column {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(184px, 1fr);
  gap: 1.25rem;
}

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

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

h1,
h2 {
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.15rem, 4.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-slogan { color: var(--forest-light); }

.headline-line {
  display: block;
  white-space: nowrap;
}

.headline-accent { color: var(--orange); }

h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 900;
}

.booking-intro {
  max-width: 42ch;
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.faq-card {
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--paper) 58%, transparent);
}

.faq-card h2 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  padding: 0.65rem 1.6rem 0.65rem 0;
  position: relative;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.15rem;
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: -0.1rem 0 0.75rem;
  padding-right: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.mini-car {
  width: 100%;
  height: 100%;
  min-height: clamp(184px, 20vw, 220px);
  position: relative;
  display: grid;
  place-items: end center;
  border-radius: 28px 72px 28px 28px;
  background: var(--mint);
  overflow: hidden;
}

.mini-car::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: rgba(255, 255, 255, 0.28);
}

.mini-car svg {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.mini-bubble {
  position: absolute;
  z-index: 3;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.bubble-a { width: 25px; height: 25px; top: 25px; left: 32px; }
.bubble-b { width: 14px; height: 14px; top: 62px; left: 62px; }
.car-shadow { fill: none; stroke: rgba(17, 61, 53, 0.15); stroke-width: 14; stroke-linecap: round; }
.car-body { fill: var(--orange); stroke: var(--forest); stroke-width: 5; stroke-linejoin: round; }
.window { fill: #e8fbf7; stroke: var(--forest); stroke-width: 4; stroke-linejoin: round; }
.shine { fill: none; stroke: #ffb49d; stroke-width: 7; stroke-linecap: round; }
.wheel-outer { fill: var(--forest); stroke: var(--cream); stroke-width: 5; }
.wheel-inner { fill: var(--mint); stroke: var(--forest); stroke-width: 4; }
.washer-hose,
.bucket-handle,
.bucket-rim {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.washer-hose { stroke: var(--forest); stroke-width: 4; }
.washer-wand { fill: var(--forest); }
.washer-grip { fill: var(--orange); }
.water-jet { fill: rgba(232, 251, 247, 0.18); }
.bucket { fill: #fffaf0; stroke: #113d35; stroke-width: 3; }
.bucket-two { fill: #bcebdc; }
.bucket-handle,
.bucket-rim { stroke: #113d35; stroke-width: 3; }
.bucket-foam circle { fill: #fff; stroke: #113d35; stroke-width: 2; }

.booking-card {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(12px);
}

.card-heading { margin-bottom: 1.5rem; }

.service-options {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  border: 0;
}

.service-option {
  min-height: 74px;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

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

.service-option:has(input:checked) {
  border-color: var(--forest-light);
  background: var(--mint-light);
  box-shadow: inset 0 0 0 1px var(--forest-light);
}

.service-option input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.service-option:has(input:focus-visible) {
  outline: 3px solid #1976d2;
  outline-offset: 3px;
}

.radio-dot {
  width: 22px;
  height: 22px;
  position: relative;
  border: 2px solid #8eaaa2;
  border-radius: 50%;
}

input:checked + .radio-dot {
  border-color: var(--forest-light);
}

input:checked + .radio-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--forest-light);
}

.service-copy {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.service-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.service-copy small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.service-price {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.price-stack {
  display: grid;
  justify-items: end;
  line-height: 1.05;
}

.price-stack del {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.field-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  font-weight: 850;
}

.human-check { margin: 1rem 0 0.4rem; }

.turnstile-placeholder {
  min-height: 66px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  border: 1px dashed #adc2bc;
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--mint-light);
  font-size: 0.84rem;
}

.turnstile-placeholder.is-ready {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-status {
  min-height: 1.25rem;
  margin: 0.4rem 0;
  color: #a52714;
  font-size: 0.82rem;
  font-weight: 750;
}

.button-whatsapp {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #116b4f;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease;
}

.button-whatsapp:hover:not(:disabled) { transform: translateY(-1px); }
.button-whatsapp:disabled { cursor: not-allowed; opacity: 0.45; }
.button-whatsapp:focus-visible { outline: 3px solid #1976d2; outline-offset: 3px; }
.button-whatsapp img { width: 22px; height: 22px; }

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.not-found-page {
  display: grid;
  grid-template-rows: auto 1fr;
}

.not-found {
  width: min(42rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 7rem) 0 4rem;
}

.not-found-code {
  margin-bottom: 0.4rem;
  color: var(--orange);
  font-weight: 900;
}

.not-found h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
}

.not-found p:not(.not-found-code) {
  max-width: 34rem;
  color: var(--ink-soft);
}

.not-found-link {
  min-height: 48px;
  margin-top: 0.5rem;
  padding: 0.7rem 1.15rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--forest-light);
  font-weight: 850;
  text-decoration: none;
}

.not-found-link:focus-visible {
  outline: 3px solid #1976d2;
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #e9f6f2;
    --ink-soft: #a9c2ba;
    --cream: #071c18;
    --paper: #0c2b25;
    --line: #2b5048;
    --mint-light: #103a31;
    --card-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  }

  body {
    background:
      radial-gradient(circle at 8% 12%, rgba(31, 94, 80, 0.35), transparent 25rem),
      var(--cream);
  }

  .brand { color: var(--ink); }
  .hero-slogan { color: #93cbbc; }
  .headline-accent { color: #ff9d7e; }
  .mini-car { background: #205b50; }
  .mini-car::after { background: rgba(5, 28, 23, 0.24); }
  .service-option:has(input:checked) { background: #123d34; }
  .contact-status { color: #ff9b82; }
}

@media (max-width: 860px) {
  .booking-layout {
    gap: clamp(0.8rem, 3vw, 2rem);
    padding-top: 0.75rem;
  }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 1rem); min-height: 84px; }
  .brand { font-size: clamp(2.5rem, 11.25vw, 2.75rem); }
  .brand-mark { width: 50px; height: 58px; }
  .booking-layout {
    width: calc(100% - 1rem);
    padding: 0.5rem 0 3rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
  }
  .left-column { display: contents; }
  .hero-copy { min-width: 0; width: 100%; order: 1; }
  .booking-card { min-width: 0; width: 100%; order: 2; padding: 1.15rem; border-radius: 23px; }
  .faq-card { min-width: 0; width: 100%; order: 3; padding: 1rem; border-radius: 16px; }
  .mini-car {
    min-height: 0;
    height: clamp(160px, 45vw, 190px);
    display: grid;
    order: 4;
  }
  h1 { margin-bottom: 0; font-size: clamp(2rem, 9vw, 2.2rem); }
  h2 { font-size: 1.65rem; }
  .booking-intro { margin-bottom: 0.45rem; font-size: 0.9rem; line-height: 1.4; }
  .card-heading { margin-bottom: 1.15rem; }
  .faq-card h2 { margin-bottom: 0.65rem; font-size: 1rem; }
  .faq-list summary { padding: 0.65rem 1.6rem 0.65rem 0; font-size: 0.86rem; }
  .faq-list details p { padding-right: 1.2rem; font-size: 0.78rem; line-height: 1.5; }
  .service-option { min-height: 70px; padding: 0.75rem; gap: 0.7rem; }
  .radio-dot { width: 22px; height: 22px; }
  input:checked + .radio-dot::after { inset: 4px; }
  .service-price { font-size: 1.35rem; }
  .service-copy strong { font-size: 1rem; }
  .service-copy small { display: block; font-size: 0.72rem; }
  .field-label { font-size: 0.86rem; }
  .human-check,
  .turnstile-placeholder { min-width: 0; max-width: 100%; }
  .turnstile-placeholder iframe { max-width: 100%; }
  .button-whatsapp { padding-inline: 1rem; font-size: 1rem; }
}

@media (max-width: 430px) {
  .brand { gap: 0.55rem; }
  .human-check { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .service-option,
  .button-whatsapp { transition: none; }
}
