/* ============ LAKE AUTO DETAILING — bold & sporty ============ */
:root {
  --red: #e10600;
  --red-dark: #b00500;
  --yellow: #ffc400;
  --ink: #0d0d0f;
  --ink-2: #16161a;
  --ink-3: #1f1f26;
  --paper: #f5f5f4;
  --text: #23232a;
  --text-dim: #8b8b96;
  --radius: 10px;
  --shadow: 0 12px 32px rgba(0, 0, 0, .25);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-dark { background: var(--ink); color: #eaeaee; }
.accent { color: var(--red); }
.section-dark .accent { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-dim); max-width: 560px; margin-bottom: 36px; }
.section-dark .section-sub { color: #a5a5b1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 6, 0, .35);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(225, 6, 0, .45); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline { background: transparent; color: #eaeaee; border: 2px solid #3a3a44; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-sm { padding: 9px 18px; font-size: 1rem; }
.btn-lg { padding: 15px 34px; font-size: 1.25rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 13, 15, .92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.logo {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 1.45rem; letter-spacing: 1px;
  color: #fff; text-decoration: none; white-space: nowrap;
}
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: #cfcfd6; text-decoration: none; font-weight: 600; font-size: .92rem;
  transition: color .15s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  color: var(--yellow); text-decoration: none;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .5px;
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 75% 10%, rgba(225, 6, 0, .28), transparent 60%),
    linear-gradient(160deg, #101014 0%, #0d0d0f 55%, #17171d 100%);
  color: #fff;
  padding: 170px 0 110px;
  overflow: hidden;
}
.hero-stripes {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 62%, rgba(225,6,0,.85) 62%, rgba(225,6,0,.85) 65%, transparent 65%),
    linear-gradient(115deg, transparent 68%, rgba(255,196,0,.9) 68%, rgba(255,196,0,.9) 69.5%, transparent 69.5%);
  opacity: .55;
}
.hero-inner { position: relative; max-width: 760px; }
.hero-kicker {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 3px; color: var(--yellow);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.02; text-transform: uppercase; letter-spacing: .5px;
}
.hero-sub { margin: 22px 0 30px; font-size: 1.1rem; color: #c9c9d2; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; margin-top: 38px; }
.hero-trust li {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: .95rem; color: #b9b9c4;
}

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 34px; }
.step {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border-top: 4px solid var(--red); box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.step-num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 2.4rem; color: var(--red); line-height: 1;
}
.step h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin: 10px 0 8px; }
.step p { color: #5b5b66; font-size: .97rem; }

/* ---------- Pricing ---------- */
.vehicle-toggle {
  display: inline-flex; background: var(--ink-3); border-radius: 999px;
  padding: 5px; margin-bottom: 40px; gap: 4px; flex-wrap: wrap;
}
.vt-btn {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: 1px; font-size: 1rem;
  background: transparent; color: #a5a5b1; border: 0; cursor: pointer;
  padding: 10px 22px; border-radius: 999px; transition: all .15s;
}
.vt-btn.active { background: var(--red); color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  background: var(--ink-2); border: 1px solid #2a2a33;
  border-radius: var(--radius); padding: 30px 24px;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); border-color: #3f3f4c; }
.price-card.featured { border: 2px solid var(--red); background: linear-gradient(180deg, #201014, var(--ink-2)); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: #111;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: 1px; font-size: .85rem;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: 1.45rem; letter-spacing: .5px;
}
.price-tag {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.8rem; color: var(--yellow); line-height: 1.1; margin-top: 6px;
}
.price-time { color: var(--text-dim); font-size: .88rem; margin-bottom: 16px; }
.price-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.price-card li {
  padding: 7px 0 7px 26px; font-size: .93rem; color: #c9c9d2;
  border-bottom: 1px solid #26262e; position: relative;
}
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.pricing-note { margin-top: 30px; color: var(--text-dim); font-size: .88rem; max-width: 640px; }

/* ---------- Before / After ---------- */
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); user-select: none; touch-action: none;
  aspect-ratio: 16 / 8; max-width: 900px; margin: 0 auto 56px;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; top: 16px;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  letter-spacing: 2px; font-size: 1rem; padding: 5px 14px; border-radius: 6px;
}
.ba-label-before { left: 16px; background: rgba(0,0,0,.65); color: #fff; }
.ba-label-after { right: 16px; background: var(--red); color: #fff; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
  background: #fff; cursor: ew-resize; transform: translateX(-50%);
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.g-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .3s; }
.g-item:hover img { transform: scale(1.04); }
.g-item figcaption { padding: 10px 14px; font-size: .85rem; font-weight: 600; color: #5b5b66; }
.gallery-cta { margin-top: 26px; text-align: center; color: var(--text-dim); }
.gallery-cta a { color: var(--red); font-weight: 700; }

/* ---------- Reviews ---------- */
.reviews { text-align: center; }
.reviews .section-title { margin-bottom: 40px; }
.reviews-track { position: relative; max-width: 720px; margin: 0 auto; min-height: 210px; }
.review {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  pointer-events: none;
}
.review.active { opacity: 1; pointer-events: auto; }
.stars { color: var(--yellow); font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 14px; }
.review p { font-size: 1.15rem; color: #e2e2e8; font-style: italic; }
.review footer {
  margin-top: 16px; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--yellow);
}
.review-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.review-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer;
  background: #3a3a44; transition: background .2s;
}
.review-dots button.active { background: var(--red); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
.why-item { border-left: 4px solid var(--red); padding-left: 18px; }
.why-item h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; margin-bottom: 6px; }
.why-item p { color: #5b5b66; font-size: .94rem; }

/* ---------- Area ---------- */
.area-list {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px 20px; max-width: 760px; margin-bottom: 24px;
}
.area-list li {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: 1.05rem; color: #d6d6de;
  padding-left: 18px; position: relative;
}
.area-list li::before { content: "▸"; position: absolute; left: 0; color: var(--red); }
.area-note { color: #a5a5b1; }
.area-note a { color: var(--yellow); }

/* ---------- Booking ---------- */
.book-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.book-copy p { color: #5b5b66; margin-bottom: 18px; }
.book-phone, .book-text {
  display: block; text-decoration: none; margin-bottom: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  color: var(--red);
}
.book-text { font-size: 1.1rem; color: var(--text); }
.book-hours { font-size: .92rem; }
.book-form {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); border-top: 5px solid var(--red);
}
.book-form label {
  display: block; font-weight: 600; font-size: .85rem; margin-bottom: 14px;
  color: #3c3c46;
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%; margin-top: 5px; padding: 11px 12px;
  border: 1.5px solid #d9d9de; border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; background: #fafafa;
  transition: border-color .15s;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { margin-top: 12px; font-weight: 600; text-align: center; }
.form-status.ok { color: #1d8a3c; }
.form-status.err { color: var(--red); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-list details {
  background: var(--ink-2); border: 1px solid #2a2a33; border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 18px 22px; list-style: none;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: .5px; font-size: 1.1rem;
  position: relative; padding-right: 46px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--yellow); font-size: 1.5rem; font-style: normal;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 22px 18px; color: #b9b9c4; font-size: .95rem; }

/* ---------- Footer ---------- */
.footer { background: #08080a; color: #b9b9c4; padding: 56px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer .logo { font-size: 1.3rem; }
.footer-tag { margin-top: 8px; font-size: .9rem; color: #77777f; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: #fff; margin-bottom: 12px;
}
.footer-col a { display: block; color: #b9b9c4; text-decoration: none; margin-bottom: 8px; font-size: .92rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { font-size: .92rem; }
.footer-legal { text-align: center; font-size: .8rem; color: #55555e; border-top: 1px solid #1c1c22; padding-top: 22px; }

/* ---------- Floating call button ---------- */
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 1.4rem;
  display: none; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 20px rgba(225,6,0,.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .area-list { grid-template-columns: repeat(3, 1fr); }
  .book-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--ink); flex-direction: column; gap: 0;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 22px; border-top: 1px solid #1f1f26; }
  .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 130px 0 80px; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .gallery { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .floating-call { display: flex; }
  .ba-slider { aspect-ratio: 4 / 3; }
}
