/* ==========================================================================
   SPARK AUTOMOTIVE LTD. - Shared stylesheet
   --------------------------------------------------------------------------
   QUICK-EDIT GUIDE (most common changes live right here):
   - Brand colours .......... see :root --spark, --ink, --navy below
   - Body font size ......... see html { font-size }
   - Button colour .......... see .btn--primary
   All three pages (index / services / contact) use THIS one file.
   ========================================================================== */

/* ---- 1. Design tokens (edit these to re-skin the whole site) ------------- */
:root {
  /* Colours */
  --ink:        #0A1A30;  /* deepest navy - hero / footer / banners       */
  --navy:       #163457;  /* secondary navy (gradients)                   */
  --navy-soft:  #2A5485;  /* navy hover / hero glow                        */
  --spark:      #FFC21A;  /* THE yellow accent (CTAs, highlights, spark)  */
  --spark-deep: #E0A200;  /* darker yellow for hover / borders            */
  --text:       #DEE6F2;  /* body text (light, on dark)                   */
  --muted:      #A4B2CC;  /* secondary grey text                          */
  --line:       rgba(255,255,255,.12); /* hairline borders (on dark)      */
  --surface:    #234A75;  /* LIGHTER section blue (more noticeable)       */
  --surface-2:  #0C1F39;  /* deeper navy (form inputs)                    */
  --white:      #FFFFFF;  /* pure white (text on dark)                    */
  --card:       #1A3A5E;  /* elevated card / panel surface                */
  --bg:         #0F2138;  /* DARKER section blue / page base              */

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 40px -24px rgba(12, 26, 48, .45);
  --shadow-sm: 0 6px 18px -12px rgba(12, 26, 48, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- 2. Reset / base ---------------------------------------------------- */
* { box-sizing: border-box; }
html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.01em;
}
p { margin: 0 0 1rem; }
:focus-visible {
  outline: 3px solid var(--spark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--spark); color: var(--ink);
  padding: 10px 16px; border-radius: 8px; font-weight: 700;
  z-index: 1000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- 3. Layout helpers -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--surface { background: var(--surface); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--spark-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--spark);
  display: inline-block;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }

/* The spark glyph (signature mark) - reused across the site */
.spark-mark { color: var(--spark); display: inline-block; }

/* ---- 4. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 14px 24px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--spark); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--spark-deep); }
.btn--dark { background: var(--card); color: var(--white); border-color: rgba(255,255,255,.16); }
.btn--dark:hover { background: var(--navy-soft); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--spark); color: var(--spark); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.28); }
.btn--outline:hover { border-color: var(--spark); color: var(--spark); }
.btn svg { width: 18px; height: 18px; }

/* ---- 5. Header / nav ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,20,36,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 108px; gap: 28px; position: relative;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand__logo { height: 42px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 600; font-size: .96rem; color: var(--text);
  padding: 9px 14px; border-radius: 8px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__links a:hover { background: rgba(255,255,255,.07); color: var(--white); }
.nav__links a.is-active { color: var(--white); }
.nav__links a.is-active::after {
  content: ""; display: block; height: 2px; background: var(--spark);
  margin-top: 4px; border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone {
  font-family: var(--font-mono); font-weight: 600; font-size: .95rem;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.nav__phone svg { width: 17px; height: 17px; color: var(--spark-deep); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 9px; border-radius: 8px;
}
.nav__toggle:hover { background: var(--surface); }
.nav__toggle span {
  display: block; height: 2.5px; background: var(--white); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- 6. Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 85% -10%, var(--navy-soft) 0%, var(--ink) 55%);
  color: var(--white);
  overflow: hidden;
}
.hero::after { /* diagonal spark streak */
  content: ""; position: absolute; right: -8%; top: 0; bottom: 0; width: 46%;
  background: linear-gradient(200deg, rgba(255,194,26,.16), rgba(255,194,26,0) 60%);
  transform: skewX(-12deg); pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .85fr; gap: 56px; align-items: start;
  padding: 92px 0 96px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--spark); }
.hero__sub { font-size: 1.18rem; color: #C7D2E4; max-width: 46ch; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .03em;
  color: #AEBBD2;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--spark); }

/* Hero side card: hours + quick facts */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  backdrop-filter: blur(4px);
}
.hero-card h3 {
  color: var(--white); font-size: 1.02rem; text-transform: uppercase;
  letter-spacing: .04em; display: flex; align-items: center; gap: 9px; margin-bottom: 16px;
}
.hero-card h3 svg { width: 18px; height: 18px; color: var(--spark); }
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--font-mono); font-size: .86rem;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  color: #D4DCEA;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row.is-closed { color: #8294B0; }
.hours-row.is-today { color: var(--spark); }
.hours-row .day { letter-spacing: .02em; }

/* ---- 7. Cards / grids --------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,255,255,.20); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ink); color: var(--spark);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* Featured card (ADAS) */
.card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--ink) 100%);
  border-color: transparent; color: var(--white);
  position: relative; overflow: hidden;
}
.card--featured h3 { color: var(--white); }
.card--featured p { color: #C2CDDF; }
.card--featured .card__icon { background: var(--spark); color: var(--ink); }
.card--featured .tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); background: var(--spark);
  padding: 4px 9px; border-radius: 20px; font-weight: 600;
}

/* ---- 8. Service list (services page) ------------------------------------ */
.svc-group { margin-bottom: 40px; }
.svc-group__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.svc-group__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: var(--spark); display: grid; place-items: center; flex: none; border: 1px solid var(--line); }
.svc-group__icon svg { width: 24px; height: 24px; }
.svc-group__head .htext { flex: none; }
.svc-group__head h3 { font-size: 1.85rem; margin: -3px 0 0; line-height: 1.15; }
.svc-group__desc { margin: 3px 0 0; color: var(--muted); font-size: .9rem; max-width: 52ch; }
.svc-group__head .rule { flex: 1; height: 1px; background: var(--line); align-self: center; }
.svc-items {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px;
}
.svc-items li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.svc-items li svg { width: 18px; height: 18px; color: var(--spark-deep); flex: none; margin-top: 3px; }
.svc-items li span { color: var(--muted); font-weight: 400; font-size: .9rem; display: block; }

/* ---- 9. Bands / callouts ------------------------------------------------ */
.band {
  background: var(--ink); color: var(--white);
  border-radius: var(--radius); padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.band h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.band p { color: #C2CDDF; margin: 0; max-width: 50ch; }
.band--spark { background: var(--spark); color: var(--ink); }
.band--spark h2, .band--spark p { color: var(--ink); }
.band--spark p { color: #5a4a12; }
.band__content { position: relative; z-index: 1; }
.band__actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

.finance-figures { display: flex; gap: 36px; margin-top: 10px; flex-wrap: wrap; }
.finance-figures .fig { font-family: var(--font-mono); }
.finance-figures .fig b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--spark); line-height: 1; }
.band--spark .finance-figures .fig b { color: var(--ink); }
.finance-figures .fig span { font-size: .78rem; letter-spacing: .04em; color: #9fb0cc; }

/* ---- 10. Steps (how it works) ------------------------------------------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { position: relative; padding-top: 14px; }
.step__num {
  font-family: var(--font-mono); font-weight: 600; font-size: .8rem;
  color: var(--spark-deep); letter-spacing: .12em;
}
.step h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 3px;
  background: var(--spark); border-radius: 2px;
}

/* ---- 11. Contact page --------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }

.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: .76rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 7px;
}
.field label .req { color: var(--spark-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--surface-2); transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .75; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--spark); box-shadow: 0 0 0 3px rgba(255,194,26,.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field select { appearance: none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2397A6C2' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; } /* honeypot */

.form-note { font-size: .85rem; color: var(--muted); margin: 4px 0 18px; }
.form-status { font-weight: 600; padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; display: none; font-size: .95rem; }
.form-status.is-ok  { display: block; background: #E8F7EE; color: #1B7A43; border: 1px solid #BCE7CC; }
.form-status.is-err { display: block; background: #FDECEC; color: #B23636; border: 1px solid #F4C4C4; }

/* Contact info panel */
.info-card {
  background: var(--ink); color: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; margin-bottom: 22px;
}
.info-card h3 { color: var(--white); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.info-item:last-child { border-bottom: 0; }
.info-item svg { width: 20px; height: 20px; color: var(--spark); flex: none; margin-top: 2px; }
.info-item .label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #8FA0BC; }
.info-item a, .info-item p { color: var(--white); margin: 2px 0 0; font-weight: 500; }
.info-item a:hover { color: var(--spark); }

.hours-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; }
.hours-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 14px; }
.hours-card .hours-row { color: var(--text); border-color: var(--line); }
.hours-card .hours-row.is-closed { color: var(--muted); }
.hours-card .hours-row.is-today { color: var(--spark-deep); font-weight: 700; }

.map-frame { border: 0; width: 100%; height: 280px; border-radius: var(--radius); margin-top: 22px; filter: grayscale(.2); }

/* ---- 12. Footer --------------------------------------------------------- */
.site-footer { background: var(--ink); color: #B7C3D8; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-mono); font-weight: 600; margin-bottom: 16px; }
.site-footer a { color: #B7C3D8; }
.site-footer a:hover { color: var(--spark); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; font-size: .95rem; }
.footer-brand p { color: #8EA0BC; font-size: .92rem; max-width: 34ch; }
.footer-brand .brand__logo { height: 40px; margin-bottom: 16px; }
.footer-contact { font-style: normal; font-size: .95rem; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem; color: #7E8FAC;
}

/* ---- 13. Page banner (services / contact tops) -------------------------- */
.page-banner { background: var(--ink); color: var(--white); padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-banner::after { content: ""; position: absolute; right: -6%; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(200deg, rgba(255,194,26,.14), transparent 60%); transform: skewX(-12deg); }
.page-banner h1 { color: var(--white); font-size: clamp(2.1rem, 5vw, 3.4rem); text-transform: uppercase; position: relative; z-index: 1; }
.page-banner p { color: #C2CDDF; max-width: 54ch; position: relative; z-index: 1; margin: 0; }
.crumbs { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; color: #8FA0BC; margin-bottom: 14px; position: relative; z-index: 1; }
.crumbs a:hover { color: var(--spark); }

/* ---- 14. Responsive ----------------------------------------------------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid--3, .steps { grid-template-columns: repeat(2, 1fr); }
  .band { flex-direction: column; align-items: flex-start; padding: 36px; }
}
@media (max-width: 720px) {
  html { font-size: 16px; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; gap: 2px; box-shadow: var(--shadow); z-index: 50;
  }
  .nav.is-open .nav__links a { padding: 13px 12px; }
  .nav.is-open .nav__phone { display: inline-flex; padding-top: 10px; }
  .section { padding: 60px 0; }
  .grid--3, .grid--2, .steps, .svc-items, .field-row, .field-row--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .band__actions .btn, .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ---- 15. Motion preference ---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

/* ==========================================================================
   ADDITIONS - top bar, real logo, photos, reviews, appointment, credentials
   ========================================================================== */

/* ---- Top utility bar (service area / address / phone) ------------------- */
.topbar { background: var(--ink); color: #C7D2E4; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 50px; padding: 9px 0; font-family: var(--font-mono); font-size: .9rem; letter-spacing: .01em;
}
.topbar__left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 17px; height: 17px; color: var(--spark); flex: none; }
.topbar a { color: #C7D2E4; }
.topbar a:hover { color: var(--spark); }
.topbar__phone { color: #fff; font-weight: 600; }
.topbar__phone svg { color: var(--spark); }

/* Real logo sizing (overrides placeholder) */
.brand__logo { height: 90px; max-width: none; }
.footer-brand .brand__logo { height: 84px; filter: brightness(0) invert(1); opacity: .96; }

/* ---- Photo media blocks (swap these for real shop photos) --------------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--navy) 0%, var(--ink) 100%);
  aspect-ratio: 16 / 11;
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 9; }
.media__tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(12,26,48,.72); color: var(--spark); padding: 5px 10px; border-radius: 20px;
  backdrop-filter: blur(3px);
}

/* About / inside-the-shop band */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--reverse .split__media { order: 2; }
.feature-list { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.feature-list li svg { width: 20px; height: 20px; color: var(--spark-deep); flex: none; margin-top: 3px; }

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

/* ---- Google Reviews ----------------------------------------------------- */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.greview-badge { display: inline-flex; align-items: center; gap: 12px; }
.gword { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; }
.gword .b{color:#4285F4}.gword .r{color:#EA4335}.gword .y{color:#FBBC05}.gword .g{color:#34A853}
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 19px; height: 19px; color: var(--spark); }
.gscore { font-family: var(--font-mono); font-weight: 600; color: var(--muted); font-size: .9rem; }

.review-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p { color: var(--text); margin: 12px 0 18px; font-size: .98rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--spark);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.reviewer .who b { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--white); }
.reviewer .who span { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }

/* ---- Credentials / partner logos strip ---------------------------------- */
.credentials { background: #FFFFFF; border-top: 1px solid rgba(255,255,255,.08); color: #243349; }
.cred-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.cred-amvic { display: flex; gap: 22px; align-items: center; }
.cred-amvic img { height: 78px; width: auto; flex: none; }
.cred-amvic .txt p { margin: 0 0 6px; font-size: .96rem; color: #243349; }
.cred-amvic .licence { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em; color: var(--ink); font-weight: 600; }
.cred-amvic .licence b { color: var(--spark-deep); }
.cred-partners { text-align: left; }
.cred-partners .label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #6C7A93; margin-bottom: 16px; }
.partner-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.partner-logos img { height: 66px; width: auto; }
.partner-logos .napa { height: 52px; }
.partner-logos .lordco { height: 60px; }
.partner-logos .partsource { height: 76px; }
.partner-logos .wsi { height: 76px; }

/* ---- Contact form: request type + appointment date/time ----------------- */
.field-appt { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin-bottom: 18px; }
.field-appt .field:last-child, .field-appt .field-row { margin-bottom: 0; }
.field-appt .appt-hint { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }

/* ==========================================================================
   RESPONSIVE for additions
   ========================================================================== */
@media (max-width: 940px) {
  .split, .cred-grid { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split__media { order: 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: 4px; padding: 8px 0; font-size: .74rem; }
  .topbar__left { gap: 6px 18px; }
  .gallery { grid-template-columns: 1fr; }
  .cred-amvic { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cred-amvic img { height: 66px; }
  .partner-logos { gap: 22px 26px; justify-content: flex-start; }
  .reviews-head { gap: 14px; }
}
@media (max-width: 420px) {
  .topbar__item { font-size: .72rem; }      /* keep service area + address + phone visible, just smaller */
}


/* ---- Linked credential / partner logos --------------------------------- */
.partner-logos a, .cred-amvic a { display: inline-flex; flex: none; transition: opacity .15s var(--ease); }
.partner-logos a:hover, .cred-amvic a:hover { opacity: .72; }

/* ---- Expandable service items (services page) -------------------------- */
.svc-accordion { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; align-items: start; }
.svc-item { border-bottom: 1px solid var(--line); }
.svc-item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 0; font-weight: 500; color: var(--text); transition: color .15s var(--ease);
}
.svc-item > summary::-webkit-details-marker { display: none; }
.svc-item > summary::marker { content: ""; }
.svc-item__name { display: inline-flex; align-items: flex-start; gap: 11px; }
.svc-item__name .svc-check { width: 18px; height: 18px; color: var(--spark-deep); flex: none; margin-top: 2px; }
.svc-item__chev { width: 18px; height: 18px; color: var(--muted); flex: none; transition: transform .2s var(--ease); }
.svc-item[open] > summary .svc-item__chev { transform: rotate(180deg); }
.svc-item > summary:hover, .svc-item[open] > summary { color: var(--white); }
.svc-item > summary:focus-visible { outline: 3px solid var(--spark); outline-offset: 3px; border-radius: 6px; }
.svc-item__body { padding: 0 4px 16px 29px; }
.svc-item__body p { margin: 0; color: var(--muted); font-size: .92rem; max-width: 50ch; }

@media (max-width: 720px) { .svc-accordion { grid-template-columns: 1fr; } }

/* Header CTA: visible on desktop; on mobile it moves into the menu so the (now larger) logo has room */
.nav__menu-cta { display: none; }
@media (max-width: 720px) {
  .nav__cta { display: none; }
  .nav.is-open .nav__menu-cta { display: flex; justify-content: center; margin-top: 10px; }
}

/* ---- Legal / privacy page ---------------------------------------------- */
.legal { max-width: 760px; }
.legal__updated { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; margin-bottom: 30px; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.legal h3 { font-size: 1.04rem; margin: 20px 0 6px; color: #C7D2E4; }
.legal p { color: var(--text); margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; color: var(--text); }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--spark); }
.legal a:hover { text-decoration: underline; }
.legal address { font-style: normal; line-height: 1.95; color: var(--text); }

/* Big Spark logo in the hero */
.hero__logo { height: clamp(64px, 12vw, 104px); width: auto; max-width: 100%; display: block; margin-bottom: 22px; }

/* Anchor offset so linked sections clear the sticky header */
.svc-group, #financing-info { scroll-margin-top: 195px; }
/* Linked service cards get a clear pointer + a little extra lift cue */
a.card { text-decoration: none; color: inherit; }

/* Bigger header nav links */
.nav__links a { font-size: 1.06rem; }

/* Hero: single bold "Financing available" badge */
.hero__finance {
  display: inline-flex; align-items: center; gap: 10px; margin: 4px 0 26px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--white);
  text-decoration: none; transition: color .15s var(--ease);
}
.hero__finance:hover { color: var(--spark); }
.hero__finance svg { width: 22px; height: 22px; color: var(--spark); flex: none; }

/* Affirm logo chip (on the yellow financing band + contact financing block) */
.affirm-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 20px; text-decoration: none; }
.affirm-link__label { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.affirm-chip { background: #fff; border-radius: 9px; padding: 8px 14px; display: inline-flex; box-shadow: 0 3px 10px rgba(0,0,0,.14); }
.affirm-chip img { height: 26px; width: auto; display: block; }
.affirm-link:hover .affirm-chip { opacity: .9; }
.affirm-chip--lg { padding: 22px 30px; border-radius: 14px; }
.affirm-chip--lg img { height: 50px; }

/* Contact: financing-interest checkbox */
.field--check { margin: -2px 0 18px; }
.check { display: flex; align-items: center; gap: 12px; cursor: pointer; font-weight: 500; color: var(--text); }
.check input[type="checkbox"] { width: 21px; height: 21px; accent-color: var(--spark); flex: none; cursor: pointer; }
.finance-note { color: #7FB3E8; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; padding: 0 2px; }
.finance-note:hover { color: #A9CDF2; }

/* Contact: financing info block */
.finance-info { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
.finance-info__brand { display: flex; justify-content: center; }
@media (max-width: 820px) { .finance-info { grid-template-columns: 1fr; gap: 26px; } .finance-info__brand { justify-content: flex-start; } }

/* Trusted Trades membership (home credentials strip) */
.cred-member { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; margin: 40px auto 6px; padding: 32px 44px; max-width: 800px; background: #F1F5FA; border: 1px solid #D7E0EC; border-radius: 18px; box-shadow: 0 4px 16px rgba(10,26,48,.06); }
.cred-member__logo { display: inline-flex; flex: none; transition: opacity .15s var(--ease); }
.cred-member__logo:hover { opacity: .8; }
.cred-member__logo img { height: 116px; width: auto; display: block; }
.cred-member__text { flex: 1; min-width: 260px; }
.cred-member__text .label { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: #6C7A93; font-weight: 700; margin: 0 0 7px; }
.cred-member__text p:not(.label) { color: #44506A; font-size: .98rem; line-height: 1.62; margin: 0 0 12px; }
.cred-member__link { display: inline-flex; align-items: center; gap: 6px; color: #1F4E86; font-weight: 700; font-size: .92rem; text-decoration: none; }
.cred-member__link:hover { text-decoration: underline; }
@media (max-width: 640px) { .cred-member { gap: 22px; padding: 26px 24px; } .cred-member__logo img { height: 94px; } }

/* ============================ MOBILE FIXES ============================== */
/* Native date/time inputs must respect their container on iOS */
input[type="date"], input[type="time"] { -webkit-appearance: none; appearance: none; width: 100%; min-width: 0; }

@media (max-width: 720px) {
  /* Services: keep category headings/descriptions within the screen (no sideways scroll) */
  .svc-group__head { flex-wrap: wrap; }
  .svc-group__head .htext { flex: 1; min-width: 0; }
  .svc-group__desc { max-width: 100%; }
  .svc-group__head .rule { display: none; }

  /* Hamburger menu: light panel with black link text */
  .nav.is-open .nav__links { background: #FFFFFF; border-bottom-color: rgba(10,26,48,.12); }
  .nav.is-open .nav__links a { color: var(--ink); }
  .nav.is-open .nav__links a:hover { background: rgba(10,26,48,.05); color: var(--ink); }
  .nav.is-open .nav__links a.is-active { color: var(--ink); }
  .nav.is-open .nav__phone { color: var(--ink); }

  /* More breathing room on the credentials (AMVIC + partners) logos */
  .credentials .wrap { padding-left: 34px; padding-right: 34px; }
}

/* Section-level "Financing available" line (What We Do) */
.sec-finance {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--white);
  margin: 4px auto 0;
}
.sec-finance svg { width: 21px; height: 21px; color: var(--spark); flex: none; }

/* Financing links (all "Financing available" mentions point to the Affirm box) */
a.sec-finance { text-decoration: none; transition: color .15s var(--ease); }
a.sec-finance:hover { color: var(--spark); }
.feature-link { color: inherit; text-decoration: none; transition: color .15s var(--ease); }
.feature-link:hover { color: var(--spark); text-decoration: underline; }
.finance-inline { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color .15s var(--ease); }
.finance-inline:hover { color: var(--spark); }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--spark); }
/* Financing band clears the sticky header when linked to */
#financing { scroll-margin-top: 195px; }

/* "Built by Kalyna Social Co." footer credit */
.built-by { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; opacity: .85; transition: opacity .15s var(--ease); }
.built-by:hover { opacity: 1; }
.built-by__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.built-by__name { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--text); }
.built-by:hover .built-by__name { color: var(--spark); }
.built-by__logo { height: 30px; width: auto; display: block; }
@media (max-width: 720px) { .built-by { margin-top: 4px; } }
