/* ================================================================
   SANDIA SUDS AUTO DETAILING — Albuquerque, NM
   Apple-inspired: clean, calm, product-forward. Inter · flat surfaces.
   ================================================================ */

@font-face {
  font-family: "Inter";
  font-style: normal; font-display: swap; font-weight: 100 900;
  src: url(assets/fonts/inter.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-display: swap; font-weight: 100 900;
  src: url(assets/fonts/inter-ext.woff2) format("woff2-variations");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Kaushan Script";
  font-style: normal; font-display: swap; font-weight: 400;
  src: url(assets/fonts/kaushan.woff2) format("woff2");
}

:root {
  /* LIGHT is the core theme. Dark bands opt in via .invert (see below). */
  --bg:        #FFFFFF;   /* white ground */
  --bg-2:      #F5F7FA;   /* faint alternate */
  --card:      #FFFFFF;   /* surfaces */
  --card-2:    #F5F7FA;

  --blue:      #0A84FF;   /* brand azure, for fills / icons / large type */
  --blue-soft: #3D9BFF;
  --blue-deep: #0062CC;
  --blue-ink:  #0062CC;   /* accessible blue for SMALL text on light */

  --ink:       #0A0E14;
  --body:      #45505F;
  --muted:     #5C6675;
  --faint:     #66707E;

  --line:      rgba(10,14,20,0.13);
  --line-2:    rgba(10,14,20,0.08);
  --grid-line: rgba(120,170,230,0.045);
  --geo-line:  rgba(10,14,20,0.055);   /* About section square grid */

  --btn-fill:   #0D1520;               /* Caruso dark button on light */
  --btn-fill-h: #17222F;
  --btn-border: #0A0E14;
  --ghost-border: rgba(10,14,20,0.30);
  --ghost-border-h: rgba(10,14,20,0.55);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wrap: 84rem;          /* matches Show Car's 1344px content width */
  --r: 7px;               /* minimal corner radius, applied everywhere */
  --r-lg: 9px;            /* cards / large surfaces */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- dark bands: hero, the Sandia Standard table, contact, footer ---------- */
.invert {
  --bg:        #06080D;
  --bg-2:      #090C12;
  --card:      #0F131B;
  --card-2:    #141924;

  --blue-ink:  var(--blue);

  --ink:       #F4F7FB;
  --body:      #C3CBD6;
  --muted:     #939DAC;
  --faint:     #8A93A3;

  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.06);
  --geo-line:  rgba(120,170,230,0.08);

  --btn-fill:   #101A28;
  --btn-fill-h: #17222F;
  --btn-border: rgba(255,255,255,0.85);
  --ghost-border: rgba(255,255,255,0.28);
  --ghost-border-h: rgba(255,255,255,0.5);

  background: var(--bg);
  color: var(--body);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--blue); color: #04101f; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

.container { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.center { text-align: center; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip {
  position: absolute; left: 1rem; top: 0.7rem; z-index: 200; transform: translateY(-200%);
  background: var(--blue); color: #04101f; font-weight: 600; font-size: 0.85rem;
  padding: 0.7rem 1.1rem; border-radius: 6px; transition: transform 0.2s var(--ease);
}
.skip:focus { transform: none; }

/* ---------- type ---------- */
h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); }
.display {
  font-size: clamp(2.9rem, 8.2vw, 6rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.02; color: var(--ink);
  overflow-wrap: break-word;
}
.h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink);
}
.h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.lede { color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.35rem); font-weight: 400; letter-spacing: -0.014em; line-height: 1.5; }
.accent { color: var(--blue); }
.script { font-family: "Kaushan Script", cursive; font-weight: 400; font-style: normal; letter-spacing: 0; }
.hero h1 .script { font-size: 1.02em; line-height: 0.9; padding-inline: 0.04em; }
strong { color: var(--ink); font-weight: 600; }

.section { padding-block: clamp(3.4rem, 7.5vw, 6.4rem); position: relative; }
.section-head { max-width: 44rem; margin: 0 auto clamp(2.8rem, 5vw, 4.5rem); text-align: center; }
.section-head .lede { margin-top: 1.1rem; }

/* ---------- buttons (flat, Apple pill) ---------- */
/* Caruso-style: hard offset blue "floating stroke" behind the button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  padding: 0.85rem 1.7rem; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  box-shadow: var(--blue) -3px 3px 0 0;
  transition: box-shadow .2s var(--ease), background-color .25s var(--ease), color .2s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translate(1px, -1px); box-shadow: var(--blue) -4px 4px 0 0; }
.btn:active { transform: translate(-1.5px, 1.5px); box-shadow: var(--blue) -1px 1px 0 0; }
.btn-blue { background: var(--btn-fill); color: #fff; border-color: var(--btn-border); }
.btn-blue:hover { background: var(--btn-fill-h); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ghost-border); }
.btn-ghost:hover { border-color: var(--ghost-border-h); }
.btn svg { width: 16px; height: 16px; }
.textlink { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--blue-ink); font-weight: 600; font-size: 1rem; transition: gap .2s var(--ease); }
.textlink:hover { gap: 0.55rem; }
.textlink svg { width: 15px; height: 15px; }

/* ---------- reveal (gated behind .js) ---------- */
.js [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--i,0) * 80ms);
}
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg img { animation: none !important; }
}

/* ================= HEADER ================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  transition: background-color .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
  /* unscrolled the header floats over the DARK hero, so it stays light-on-dark */
  --hdr-ink: #F4F7FB;
  --hdr-body: rgba(255,255,255,0.92);
  --hdr-fill: #101A28;
  --hdr-border: rgba(255,255,255,0.85);
}
/* once scrolled onto the white page it flips to dark-on-light */
.site-header.scrolled {
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(1.4) blur(18px); -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom-color: var(--line-2);
  --hdr-ink: #0A0E14;
  --hdr-body: #3C4654;
  --hdr-fill: var(--btn-fill);
  --hdr-border: var(--btn-border);
}
/* the full-screen mobile menu is white, so the burger must go dark while it's open */
body.menu-open .site-header { --hdr-ink: #0A0E14; }
.nav-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 5.3rem; position: relative;
}
.nav-left { justify-self: start; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 1.5rem; }
.nav-left, .nav-right nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-left a, .nav-right nav a {
  font-size: 1.12rem; font-weight: 450; letter-spacing: -0.01em; color: var(--hdr-body);
  transition: color .2s var(--ease);
}
.nav-left a:hover, .nav-right nav a:hover { color: var(--hdr-ink); }
.brand { justify-self: center; display: inline-flex; align-items: center; gap: 0.7rem; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.nav-pill {
  font-size: 0.95rem; font-weight: 600; color: #fff; background: var(--hdr-fill);
  border: 1px solid var(--hdr-border);
  padding: 0.5rem 1.05rem; border-radius: 10px;
  box-shadow: var(--blue) -2.5px 2.5px 0 0;
  transition: box-shadow .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease), border-color .35s var(--ease);
}
.nav-pill:hover { background: var(--btn-fill-h); transform: translate(1px,-1px); box-shadow: var(--blue) -3.5px 3.5px 0 0; }

.burger { display: none; position: absolute; left: 0; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--hdr-ink); border-radius: 2px; transition: transform .28s var(--ease), opacity .2s var(--ease), background-color .35s var(--ease); }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-left, .nav-right { display: none; }
  .burger { display: flex; left: auto; right: 0; }         /* nav in the right corner */
  .nav-wrap { grid-template-columns: 1fr auto 1fr; height: 4.7rem; }
  .brand { grid-column: 1; justify-self: start; }          /* logo in the left corner */
  .brand img { width: 60px; height: 60px; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(5.5rem, 14vh, 8rem) clamp(1.5rem, 8vw, 4rem) clamp(1.5rem, 8vw, 4rem);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.mm {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.25rem; font-weight: 450; letter-spacing: -0.01em;
  color: var(--ink); padding-block: 0.95rem; border-bottom: 1px solid var(--line-2);
}
.mobile-menu a.mm::before { content: "◆"; color: var(--blue-ink); font-size: 0.7rem; }
.mobile-menu a.mm:hover { color: var(--blue-ink); }
.mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; }
.mobile-menu .mm-cta .btn { width: 100%; }
body.menu-open { overflow: hidden; }

/* ================= HERO ================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden; text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; background: #04060a; }
.hero-bg img, .hero-bg video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
/* high-quality still stays put as a stable (fast, font-independent) LCP image;
   the video sits on top and fades IN over it once it's actually playing */
.hero-bg > .hero-video, .hero-bg > .hero-still { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-still { z-index: 0; }
.hero-video { z-index: 1; opacity: 0; transition: opacity .7s var(--ease); }
.hero-video.is-live { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(to bottom,
    rgba(11,44,96,0.6) 0%,
    rgba(11,34,74,0.26) 38%,
    rgba(6,8,13,0.5) 70%,
    rgba(6,8,13,0.9) 93%,
    var(--bg) 100%);
}
/* mobile-only 25% black tint so the hero copy reads clearly over the video */
.hero-tint { position: absolute; inset: 0; z-index: -2; background: rgba(0,0,0,0.25); display: none; }
.hero-grid { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(90% 70% at 50% 45%, #000 25%, transparent 80%);
          mask-image: radial-gradient(90% 70% at 50% 45%, #000 25%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 56rem; margin-inline: auto; padding-bottom: clamp(4rem, 11vh, 7.5rem); }
.hero h1 { margin-bottom: 1.3rem; }
.hero .lede { max-width: 40rem; margin-inline: auto; color: var(--body); }

/* ================= ABOUT (Show Car style, dark, square grid) ================= */
.about { position: relative; overflow: hidden; min-height: 64vh; display: flex; flex-direction: column; justify-content: center; padding-block: clamp(2rem, 4vw, 3.5rem); }
.about-geo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--geo-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--geo-line) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.about-cols {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.8fr 2.15fr 0.8fr;
  gap: clamp(1.6rem, 3.2vw, 3rem); align-items: center; width: 100%;
}
.about-img { position: relative; }
.about-img img { display: block; position: relative; z-index: 1; width: 100%; height: auto; border-radius: var(--r); aspect-ratio: 9 / 16; object-fit: cover; box-shadow: 0 24px 50px -30px rgba(10,14,20,0.35); }
.about-img::before { content: ""; position: absolute; z-index: 0; border: 1.5px solid rgba(10,132,255,0.5); border-radius: var(--r); pointer-events: none; }
.about-img.left::before  { inset: 1.6rem -1.6rem -1.6rem 1.6rem; }   /* peeks out bottom-right */
.about-img.right::before { inset: -1.6rem 1.6rem 1.6rem -1.6rem; }   /* peeks out top-left */
.about-mid { text-align: center; }
.about-mid .h2 { font-size: clamp(2.35rem, 5vw, 3.75rem); margin-bottom: 1.4rem; }
.about-mid p { color: var(--muted); font-size: clamp(1.05rem, 1.25vw, 1.2rem); line-height: 1.5; }
.about-mid p + p { margin-top: 1.1rem; }
.about-cta { display: flex; justify-content: center; gap: 0.7rem; margin-top: 1.9rem; flex-wrap: wrap; }
.about-rating { margin-top: 1.4rem; color: var(--muted); font-size: 0.92rem; }
.about-rating .star { color: var(--blue-ink); letter-spacing: 0.1em; margin-right: 0.45rem; }
@media (max-width: 900px) {
  .about-cols { grid-template-columns: 1fr 1fr; }
  .about-mid { grid-column: 1 / -1; order: -1; margin-bottom: 1.6rem; }
  .about-img.left, .about-img.right { margin: 0; }
  .about-img::before { display: none; }
}
@media (max-width: 540px) {
  .about-cols { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; }
  .about-img.right { display: none; }
}

/* ================= SERVICES ================= */
/* Caruso-style: thin box, bg-colored text on top, photo on the bottom half, Learn-more button below */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.4rem); align-items: stretch; }
.svc { display: flex; flex-direction: column; gap: 0.9rem; }
.svc-card {
  flex: 1; display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
/* card animates only when the CARD is hovered (not when the button is) */
.svc-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.svc-top { padding: 1.4rem 1.4rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.svc-top h3 { font-size: 1.22rem; color: var(--ink); }
.svc-top p { margin-top: 0.55rem; font-size: 0.94rem; color: var(--muted); line-height: 1.5; flex: 1; }
.svc-price { margin-top: 1.1rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.svc-price span { color: var(--muted); font-weight: 400; font-size: 0.86rem; }
.svc-media { aspect-ratio: 4/3; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
/* button animates only via its own .btn:hover (floating stroke), independent of the card */
.svc-learn { width: 100%; }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; } }

/* ================= WHY (feature rows) ================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 3vw, 2.8rem); }
.why-item { text-align: center; }
.why-ic { width: 48px; height: 48px; margin: 0 auto 1.1rem; color: var(--blue); }
.why-ic svg { width: 100%; height: 100%; stroke-width: 1.5; }
.why-item h3 { font-size: 1.14rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.94rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.6rem; } }
@media (max-width: 460px) { .why-grid { grid-template-columns: 1fr; } }


/* ================= GALLERY ================= */
.gal { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 13rem; gap: clamp(0.5rem, 1vw, 0.85rem); }
.gal figure { position: relative; overflow: hidden; border-radius: var(--r); margin: 0; }
.gal figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gal figure:hover img { transform: scale(1.05); }
.gal .tall { grid-row: span 2; }
.gal .wide { grid-column: span 2; }
@media (max-width: 900px) { .gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 10rem; } }
@media (max-width: 520px) { .gal { grid-auto-rows: 8.5rem; } }
.gal-more { text-align: center; margin-top: 2.4rem; }

/* ================= WE COME TO YOU (split) ================= */
.wecome-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.wecome-img img { width: 100%; height: clamp(22rem, 40vw, 31rem); object-fit: cover; border-radius: var(--r-lg); }
.wecome-txt .h2 { margin-bottom: 1.1rem; }
.wecome-txt .lede { margin-bottom: 1.6rem; }
.wecome-steps { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.9rem; }
.wecome-steps li { display: flex; align-items: center; gap: 0.7rem; color: var(--body); font-size: 1.02rem; }
.wecome-steps svg { width: 18px; height: 18px; color: var(--blue-ink); flex: none; }
@media (max-width: 820px) { .wecome-split { grid-template-columns: 1fr; } .wecome-img { order: 2; } }

/* ================= COMPARE (Show Car style table, scroll on mobile) ================= */
.cmp2-scroll { max-width: 66rem; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.cmp2 {
  min-width: 46rem;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--card);
}
.cmp2-row { display: grid; grid-template-columns: 1.12fr 1.12fr 1.24fr; }
.cmp2-row > div { padding: 1.05rem 1.4rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.97rem; min-width: 0; }
.cmp2-row + .cmp2-row { border-top: 1px solid var(--line-2); }
.cmp2-row:nth-child(even) { background: rgba(255,255,255,0.022); }
.cmp2-head { border-top: 0; }
.cmp2-head > div { font-weight: 700; font-size: 1.02rem; padding-block: 1.2rem; letter-spacing: -0.01em; }
.cmp2-head .brandcell { color: var(--ink); gap: 0.55rem; }
.cmp2-head .brandcell img { width: 26px; height: 26px; object-fit: contain; flex: none; }
/* extra .cmp2 needed: the generic .cmp2 .trad / .cmp2 .sandia rules below have equal
   specificity and would otherwise override these header cells (kills the navy header) */
.cmp2 .cmp2-head .trad { background: #333844; color: #fff; }
.cmp2 .cmp2-head .sandia { background: #0C2A49; color: #fff; box-shadow: inset 0 2px 0 var(--blue); }
.cmp2 .crit { color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.cmp2 .crit svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.cmp2 .trad { color: var(--muted); }
.cmp2 .sandia { color: var(--ink); font-weight: 500; background: rgba(10,132,255,0.05); }
.cmp2-row:nth-child(even) .sandia { background: rgba(10,132,255,0.075); }
.cmp2 .sandia .ck { color: var(--blue); flex: none; display: inline-flex; }
.cmp2 .sandia .ck svg { width: 17px; height: 17px; display: block; }
@media (max-width: 760px) { .cmp2-row > div { padding: 0.9rem 1.1rem; font-size: 0.92rem; } }

/* ================= REVIEWS ================= */
.rev-head { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; margin-bottom: clamp(2.6rem,5vw,4rem); text-align: center; }
.rev-badge { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--muted); font-size: 0.95rem; }
.rev-badge svg.g { width: 22px; height: 22px; }
.rev-badge b { color: var(--ink); font-weight: 600; }
.rev-badge .star { color: var(--blue-ink); letter-spacing: 0.1em; }
.rev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.4vw, 1.2rem); }
.rev { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rev .star { color: var(--blue-ink); font-size: 0.85rem; letter-spacing: 0.08em; }
.rev blockquote { font-size: 0.98rem; line-height: 1.55; color: var(--body); flex: 1; letter-spacing: -0.011em; }
.rev cite { font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.rev cite span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--faint); margin-top: 0.15rem; }
@media (max-width: 1000px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rev-grid { grid-template-columns: 1fr; } }

/* ================= CONTACT ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-copy .display { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1.2rem; }
.contact-rows { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.2rem; }
.c-row { display: flex; align-items: center; gap: 0.9rem; padding-block: 0.9rem; border-top: 1px solid var(--line-2); }
.c-row:last-child { border-bottom: 1px solid var(--line-2); }
.c-row .c-ic { color: var(--blue-ink); flex: none; }
.c-row .c-ic svg { width: 20px; height: 20px; }
.c-row .c-l { font-size: 0.78rem; color: var(--faint); }
.c-row .c-v { font-weight: 500; font-size: 1rem; color: var(--ink); }
.c-row a.c-v { overflow-wrap: anywhere; }
.c-row a.c-v:hover { color: var(--blue-ink); }
.socials { display: flex; gap: 0.55rem; margin-top: 1.8rem; }
.socials a { width: 42px; height: 42px; border-radius: var(--r); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: color .2s var(--ease), border-color .2s var(--ease); }
.socials a:hover { color: var(--blue-ink); border-color: var(--blue-ink); }
.socials a svg { width: 18px; height: 18px; }

.quote-card {
  background:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'><path fill='%23ffffff' fill-opacity='0.05' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/></svg>") repeat,
    var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
}
.quote-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.quote-card .qsub { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; color: var(--faint); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); color: var(--ink);
  padding: 0.8rem 0.95rem; font-family: var(--font); font-size: 0.98rem; letter-spacing: -0.01em;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 5rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10,132,255,0.16); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23939DAC' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.95rem center; padding-right: 2.4rem; }
.quote-card .btn { width: 100%; margin-top: 1.2rem; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 0.9rem; margin-top: 1.2rem; }
.form-actions .btn { flex: 1; width: auto; margin-top: 0; }
.form-actions .or { flex: none; color: var(--faint); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
@media (max-width: 440px) {
  .form-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .form-actions .btn { flex: none; }
  .form-actions .or { text-align: center; }
}
.form-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--faint); text-align: center; }
.form-note a { color: var(--blue-ink); }
.form-ok { display: none; text-align: center; padding: 2rem 0.5rem; }
.form-ok.show { display: block; }
.form-ok .ok-ic { width: 52px; height: 52px; border-radius: var(--r); background: rgba(10,132,255,0.14); color: var(--blue); display: grid; place-items: center; margin: 0 auto 1rem; }
.form-ok .ok-ic svg { width: 26px; height: 26px; }
.form-ok h4 { font-size: 1.2rem; color: var(--ink); }
.form-ok p { margin-top: 0.5rem; color: var(--muted); font-size: 0.94rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .form-grid { grid-template-columns: 1fr; } }

/* ================= FOOTER ================= */
.footer { border-top: 1px solid var(--line-2); padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.f-brand { display: flex; align-items: center; gap: 0.65rem; }
.f-brand img { width: 46px; height: 46px; object-fit: contain; }
.f-brand b { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.footer .f-tag { margin-top: 1.2rem; color: var(--muted); font-size: 0.92rem; max-width: 22rem; }
.f-col h4 { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.f-col li { margin-bottom: 0.6rem; }
.f-col a { font-size: 0.92rem; color: var(--muted); transition: color .2s var(--ease); }
.f-col a:hover { color: var(--blue-ink); }
.f-socials { display: flex; gap: 0.5rem; margin-top: 0.3rem; flex-wrap: wrap; }
.f-socials a { width: 36px; height: 36px; border-radius: var(--r); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: color .2s var(--ease), border-color .2s var(--ease); }
.f-socials a:hover { color: var(--blue-ink); border-color: var(--blue-ink); }
.f-socials a svg { width: 16px; height: 16px; }
.footer-bottom { margin-top: clamp(2.4rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid var(--line-2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 2rem; font-size: 0.85rem; color: var(--faint); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .f-brandcol { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ================= sticky mobile CTA ================= */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 0.5rem; padding: 0.55rem; background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .35s var(--ease); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; }
@media (max-width: 900px) { .sticky-cta { display: flex; } body { padding-bottom: 4.4rem; } }

/* mobile hero: center the car */
@media (max-width: 760px) {
  .hero-bg img, .hero-bg video { object-position: 50% 50%; }
  .hero-content { padding-top: 3rem; }
  .hero-tint { display: block; }
}
