/* =========================================================
   PREMIERE MOBILE CAR DETAILING — DESIGN SYSTEM
   Signature concept: pricing/service info styled like an
   automotive "window sticker" (Monroney label) — dotted
   leader rules, mono spec figures, coded line items.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* --- color --- */
  --black:        #0a0a0b;
  --charcoal:      #17171a;
  --charcoal-2:    #202024;
  --charcoal-3:    #2a2a2e;
  --graphite-line: #333338;

  --orange:        #ff5a1f;
  --orange-light:  #ff8a4c;
  --orange-dim:    #7a2f13;

  --cream:         #f6f2ea;
  --cream-2:       #efe9dd;
  --paper:         #ffffff;
  --line-light:    #ddd6c7;

  --ink:           #edebe6;
  --ink-dim:       #a8a6a0;
  --ink-faint:     #706e69;
  --text-dark:     #17171a;
  --text-dark-dim: #55534d;

  /* --- type --- */
  --f-display: 'Fraunces', ui-serif, Georgia, serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  /* --- layout --- */
  --maxw: 1200px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --header-h: 76px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
p{ margin:0 0 1em; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section{ padding: 96px 0; }
.section--tight{ padding: 64px 0; }
.section--light{ background: var(--cream); color: var(--text-dark); }
.section--light h1, .section--light h2, .section--light h3{ color: var(--text-dark); }
.section--charcoal{ background: var(--charcoal); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 18px; height: 1px;
  background: var(--orange);
  display:inline-block;
}

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); }
.section-head p{ color: var(--ink-dim); font-size: 17px; }
.section--light .section-head p{ color: var(--text-dark-dim); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn-primary{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(255,90,31,.65);
}
.btn-primary:hover{ background: var(--orange-light); box-shadow: 0 10px 28px -6px rgba(255,90,31,.8); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover{ background: rgba(255,255,255,.08); }
.section--light .btn-outline{ color: var(--text-dark); }
.section--light .btn-outline:hover{ background: rgba(0,0,0,.06); }
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn-block{ width:100%; }

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  height: var(--header-h);
  display:flex;
  align-items:center;
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--graphite-line);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.brand .mark{
  width: 34px; height:34px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--orange), var(--orange-dim));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family: var(--f-mono); font-weight:600; font-size:14px;
  flex: none;
}
.brand span.sub{ color: var(--ink-dim); font-family: var(--f-body); font-weight:500; font-size:13px; display:block; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
}
.nav-links a{
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  transition: color .15s ease;
  position:relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color: var(--ink); }
.nav-links a[aria-current="page"]::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-20px;
  height:2px; background: var(--orange);
}
.header-actions{ display:flex; align-items:center; gap:14px; }
.call-link{
  display:flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color: var(--ink-dim);
}
.call-link:hover{ color: var(--ink); }
.call-link svg{ flex:none; }

.nav-toggle{
  display:none;
  background:none; border:none;
  width: 40px; height:40px;
  align-items:center; justify-content:center;
  color: var(--ink);
}

.mobile-panel{
  display:none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--black);
  z-index: 99;
  padding: 28px 24px;
  overflow-y: auto;
}
.mobile-panel.is-open{ display:block; }
.mobile-panel a{
  display:block;
  padding: 16px 4px;
  font-size: 20px;
  font-family: var(--f-display);
  font-weight:600;
  border-bottom: 1px solid var(--graphite-line);
}
.mobile-panel .call-link{ margin-top:24px; font-size:16px; }

@media (max-width: 880px){
  .nav-links{ display:none; }
  .header-actions .call-link{ display:none; }
  .nav-toggle{ display:flex; }
}

/* floating mobile book bar */
.mobile-book-bar{
  display:none;
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--graphite-line);
  gap: 10px;
}
@media (max-width: 880px){
  .mobile-book-bar{ display:flex; }
  body{ padding-bottom: 78px; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(255,90,31,.20), transparent 55%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d0f 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items:center;
}
.hero h1{
  font-size: clamp(38px, 5.4vw, 68px);
  color: var(--ink);
}
.hero h1 em{ font-style:normal; color: var(--orange); }
.hero .lede{
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 36px;}
.hero-trust{
  display:flex; gap: 22px; flex-wrap:wrap;
  font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-dim);
  letter-spacing: .02em;
}
.hero-trust li{ display:flex; align-items:center; gap:7px; }
.hero-trust svg{ color: var(--orange); flex:none; }

.hero-art{
  position:relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 40%),
    linear-gradient(155deg, #26262b, #101012 70%);
  border: 1px solid var(--graphite-line);
  overflow:hidden;
}
.hero-art img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-art::before{
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 46px);
}
.hero-art .droplet{
  position:absolute;
  border-radius:50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.9), rgba(255,255,255,.05) 60%);
  filter: blur(.2px);
  opacity:.85;
}
.hero-badge{
  position:absolute; left:20px; bottom:20px;
  background: rgba(10,10,11,.72);
  border: 1px solid var(--graphite-line);
  backdrop-filter: blur(6px);
  padding: 14px 16px;
  border-radius: var(--radius-m);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-dim);
}
.hero-badge b{ display:block; color:var(--ink); font-size:22px; font-family: var(--f-display); font-weight:700; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ aspect-ratio: 16/10; }
}

/* trust bar */
.trust-bar{
  border-top: 1px solid var(--graphite-line);
  border-bottom: 1px solid var(--graphite-line);
  background: var(--charcoal);
}
.trust-bar .container{
  display:flex; flex-wrap:wrap; gap: 20px 40px;
  padding: 22px 24px;
  justify-content: space-between;
}
.trust-item{
  display:flex; align-items:center; gap:10px;
  font-size: 13.5px; font-weight:600; color: var(--ink-dim);
}
.trust-item svg{ color: var(--orange); flex:none; }
.trust-item strong{ color: var(--ink); font-weight:700; }

/* ---------- service cards ---------- */
.grid{ display:grid; gap: 24px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px){ .grid-3{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--charcoal);
  border: 1px solid var(--graphite-line);
  border-radius: var(--radius-l);
  padding: 30px 26px 26px;
  display:flex; flex-direction:column;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover{ transform: translateY(-4px); border-color: var(--orange-dim); }
.service-card .icon{
  width:46px; height:46px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--orange), var(--orange-dim));
  display:flex; align-items:center; justify-content:center;
  color:#fff; margin-bottom: 18px; flex:none;
}
.service-card h3{ font-size: 20px; margin-bottom: 6px; }
.service-card .price{
  font-family: var(--f-mono);
  color: var(--orange-light);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing:.02em;
}
.service-card p.desc{ color: var(--ink-dim); font-size: 14.5px; margin-bottom: 18px; }
.service-card .card-ctas{ margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- window-sticker (signature) ---------- */
.sticker{
  background: var(--paper);
  color: var(--text-dark);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-m);
  position:relative;
  font-family: var(--f-mono);
}
.sticker::before{
  content:"";
  position:absolute; top:0; bottom:0; left:0;
  width: 10px;
  background-image: radial-gradient(circle, var(--cream) 2.5px, transparent 2.6px);
  background-size: 10px 14px;
  background-position: 0 4px;
}
.sticker-head{
  padding: 18px 20px 14px 30px;
  border-bottom: 1px dashed var(--line-light);
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
}
.sticker-head .code{ font-size:11px; color: var(--text-dark-dim); letter-spacing:.08em; }
.sticker-head h3{ font-family: var(--f-display); font-size: 22px; margin:2px 0 0; }
.sticker-price{ text-align:right; }
.sticker-price .amt{ font-size: 26px; font-weight:600; }
.sticker-price .unit{ font-size:11px; color: var(--text-dark-dim); display:block; }
.sticker-body{ padding: 16px 20px 6px 30px; }
.sticker-line{
  display:flex; align-items:baseline; gap:8px;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px dotted var(--line-light);
}
.sticker-line:last-child{ border-bottom:none; }
.sticker-line .fill{ flex:1; border-bottom: 1px dotted var(--line-light); transform: translateY(-4px); }
.sticker-line .val{ font-weight:600; color: var(--orange-dim); }
.sticker-line.dash .val{ color: var(--ink-faint); }
.sticker-foot{
  padding: 14px 20px 18px 30px;
  display:flex; gap:10px; flex-wrap:wrap;
}

.badge-popular{
  position:absolute; top:-13px; right:22px;
  background: var(--orange); color:#fff;
  font-family: var(--f-mono); font-size: 11px; font-weight:700;
  letter-spacing:.06em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(255,90,31,.7);
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items:start;
}
.pricing-grid .sticker.is-featured{
  border: 2px solid var(--orange);
  transform: scale(1.04);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.35);
}
@media (max-width: 940px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-grid .sticker.is-featured{ transform:none; order:-1; }
}

/* comparison table */
.compare-table-wrap{ overflow-x:auto; border-radius: var(--radius-m); border:1px solid var(--line-light); background:var(--paper); }
table.compare{
  width:100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px;
}
table.compare th, table.compare td{
  padding: 14px 18px; text-align:left; border-bottom: 1px solid var(--cream-2);
}
table.compare thead th{
  font-family: var(--f-mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
  color: var(--text-dark-dim); background: var(--cream);
}
table.compare td:not(:first-child), table.compare th:not(:first-child){ text-align:center; }
table.compare tbody tr:last-child td{ border-bottom:none; }
.yes{ color: #1a7a3d; font-weight:700; }
.dash{ color: var(--ink-faint); }
.addon{ font-family: var(--f-mono); font-size:11px; background: var(--cream); color: var(--text-dark-dim); padding:3px 8px; border-radius:999px; }

/* ---------- steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:28px; }
@media (max-width:800px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-left: 0; }
.step .num{
  font-family: var(--f-display); font-size: 46px; color: var(--orange); font-weight:700;
  line-height:1; margin-bottom:14px; display:block;
}
.step h3{ font-size:19px; margin-bottom:8px; }
.step p{ color: var(--ink-dim); font-size:14.5px; }

/* ---------- testimonials ---------- */
.testi-track{ display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:6px; }
.testi-card{
  scroll-snap-align:start;
  flex: 0 0 min(360px, 88vw);
  background: var(--charcoal); border:1px solid var(--graphite-line); border-radius: var(--radius-l);
  padding: 24px;
}
.testi-stars{ color: var(--orange); font-size:14px; margin-bottom:12px; letter-spacing:2px; }
.testi-card p{ font-size:14.5px; color: var(--ink); }
.testi-name{ font-family: var(--f-mono); font-size:12px; color: var(--ink-dim); margin-top:14px; }

/* ---------- gallery / before-after ---------- */
.ba-slider{
  position: relative; border-radius: var(--radius-l); overflow:hidden;
  aspect-ratio: 16/9; border: 1px solid var(--graphite-line);
  background: linear-gradient(155deg, #26262b, #101012 70%);
}
.ba-slider .half{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:var(--f-mono); font-size:12px; color:var(--ink-dim); letter-spacing:.1em; }
.ba-slider .after{ clip-path: inset(0 0 0 50%); background: linear-gradient(155deg,#33261c,#100b08 70%); }
.ba-slider .handle{
  position:absolute; top:0; bottom:0; left:50%;
  width:3px; background: var(--orange); transform: translateX(-50%);
}
.ba-slider .handle::after{
  content:"⟷"; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:38px; height:38px; border-radius:50%; background:var(--orange); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:16px;
}
.ba-label{ position:absolute; top:14px; font-family:var(--f-mono); font-size:11px; letter-spacing:.1em; background:rgba(10,10,11,.6); padding:5px 10px; border-radius:999px; color:var(--ink); }
.ba-label.left{ left:14px; } .ba-label.right{ right:14px; }

.gallery-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
.gallery-item{
  aspect-ratio:1; border-radius: var(--radius-m); overflow:hidden;
  background: linear-gradient(155deg, #26262b, #101012 70%);
  border:1px solid var(--graphite-line);
  position:relative; display:flex; align-items:center; justify-content:center;
  font-family: var(--f-mono); font-size:11px; color:var(--ink-dim);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 28px; }
.chip{
  font-family: var(--f-mono); font-size:12.5px; padding:8px 16px; border-radius:999px;
  border:1px solid var(--graphite-line); color:var(--ink-dim); background:transparent;
}
.chip.is-active{ background:var(--orange); border-color:var(--orange); color:#fff; }

/* ---------- FAQ accordion ---------- */
.faq{ border-top: 1px solid var(--line-light); }
.section:not(.section--light) .faq{ border-top-color: var(--graphite-line); }
.faq-item{ border-bottom: 1px solid var(--line-light); }
.section:not(.section--light) .faq-item{ border-bottom-color: var(--graphite-line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  padding: 20px 4px; display:flex; justify-content:space-between; align-items:center; gap: 16px;
  font-family: var(--f-body); font-weight:700; font-size:15.5px; color:inherit;
}
.faq-q .plus{ flex:none; transition: transform .25s ease; color: var(--orange); }
.faq-item.is-open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height .28s ease;
  font-size:14.5px; color: var(--ink-dim);
}
.section--light .faq-a{ color: var(--text-dark-dim); }
.faq-a-inner{ padding: 0 4px 20px; }

/* ---------- forms ---------- */
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:7px; color: var(--ink-dim); }
.section--light .field label{ color: var(--text-dark-dim); }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 14px; border-radius: var(--radius-s);
  border:1px solid var(--graphite-line); background: var(--charcoal-2); color: var(--ink);
  font-family: var(--f-body); font-size:14.5px;
}
.section--light .field input, .section--light .field select, .section--light .field textarea{
  background: var(--paper); border-color: var(--line-light); color: var(--text-dark);
}
.field textarea{ resize: vertical; min-height:100px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px){ .field-row{ grid-template-columns:1fr; } }

/* ---------- footer ---------- */
.site-footer{ background: var(--charcoal); border-top:1px solid var(--graphite-line); padding: 56px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-grid h4{ font-family: var(--f-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-dim); margin-bottom:16px; font-weight:600;}
.footer-grid ul li{ margin-bottom:10px; font-size:14px; }
.footer-grid ul a:hover{ color: var(--orange-light); }
.footer-bottom{
  border-top:1px solid var(--graphite-line); padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color: var(--ink-faint);
}

/* ---------- booking embed ---------- */
.booking-wrap{
  background: var(--charcoal); border:1px solid var(--graphite-line);
  border-radius: var(--radius-l); overflow:hidden;
}
.cal-embed{ width:100%; min-height: 720px; }
.booking-note{
  display:flex; gap:10px; align-items:flex-start;
  font-size:13px; color: var(--ink-faint); margin-top:14px;
}
.booking-note svg{ flex:none; margin-top:2px; color:var(--orange); }

.confirm-panel{
  text-align:center; padding: 60px 24px;
  background: var(--charcoal); border:1px solid var(--graphite-line); border-radius: var(--radius-l);
}
.confirm-panel .check{
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px;
  background: linear-gradient(155deg, var(--orange), var(--orange-dim));
  display:flex; align-items:center; justify-content:center; color:#fff;
}

/* fade-in on scroll */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* misc */
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-40{ margin-top:40px; }
.divider{ height:1px; background:var(--graphite-line); border:none; margin: 0; }
.map-list{ display:flex; flex-wrap:wrap; gap:10px; }
.map-list .chip{ pointer-events:none; }
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
