/* ============================================================
   Quick Service Auto Repairing — design system
   Technical · confident · premium workshop · high contrast
   Verified palette from research/brand-system.md
   ============================================================ */

:root{
  /* base palette */
  --bg:        #F5F6F8;
  --surface:   #FFFFFF;
  --ink:       #111318;   /* primary text */
  --ink-2:     #2A2E37;
  --muted:     #6B7280;
  --border:    #D9DEE5;
  --hair:      #E7EBF0;

  --carbon:    #15171C;   /* deep panels / footer */
  --carbon-2:  #1E2128;
  --carbon-3:  #2A2E37;

  --primary:   #D62828;   /* QS red */
  --primary-d: #B11E1E;
  --accent:    #F5A300;   /* amber — speed lines */
  --accent-d:  #D98C00;

  --focus:     #2563EB;

  /* tweakable hooks (overridden by JS) */
  --brand:     var(--primary);
  --spark:     var(--accent);

  --maxw: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --ff-display: 'Space Grotesk', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --shadow-sm: 0 1px 2px rgba(17,19,24,.06), 0 1px 1px rgba(17,19,24,.04);
  --shadow-md: 0 10px 30px -12px rgba(17,19,24,.22);
  --shadow-lg: 0 30px 70px -28px rgba(17,19,24,.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

::selection{ background:var(--brand); color:#fff; }

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

/* ---------- layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:20px; }
.section{ padding-block:72px; }
@media (min-width:880px){ .section{ padding-block:108px; } }

.eyebrow{
  font-family:var(--ff-mono);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--brand);
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  font-weight:500;
}
.eyebrow::before{
  content:"";
  width:26px;height:2px;background:var(--brand);display:inline-block;
}
.eyebrow.on-dark{ color:var(--spark); }
.eyebrow.on-dark::before{ background:var(--spark); }

h1,h2,h3{ font-family:var(--ff-display); font-weight:700; letter-spacing:-.02em; line-height:1.02; margin:0; }
.h-xl{ font-size:clamp(38px, 8.5vw, 86px); }
.h-lg{ font-size:clamp(30px, 5.2vw, 54px); }
.h-md{ font-size:clamp(23px, 3.2vw, 32px); letter-spacing:-.015em; }
.lead{ font-size:clamp(16px,1.4vw,19px); line-height:1.6; color:var(--muted); max-width:60ch; }

.mono{ font-family:var(--ff-mono); }

/* ---------- buttons ---------- */
.btn{
  --bh:54px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:var(--bh); padding:0 26px;
  font-family:var(--ff-display); font-weight:700; font-size:16px; letter-spacing:-.01em;
  border:2px solid transparent; border-radius:var(--radius);
  transition:transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn svg{ width:19px;height:19px; }
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--brand); color:#fff; }
.btn-primary:hover{ background:var(--primary-d); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:#000; }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--border); }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-ghost.on-dark{ color:#fff; border-color:rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover{ border-color:#fff; background:rgba(255,255,255,.06); }
.btn-spark{ background:var(--spark); color:#1a1407; }
.btn-spark:hover{ background:var(--accent-d); }
.btn-block{ width:100%; }

/* ---------- header ---------- */
.hdr{
  position:fixed; inset:0 0 auto 0; z-index:60;
  transition:background .25s ease, box-shadow .25s ease, height .25s ease;
  height:74px;
}
.hdr-inner{ height:100%; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.hdr.scrolled{ background:rgba(255,255,255,.92); backdrop-filter:blur(12px); box-shadow:0 1px 0 var(--hair); height:64px; }
.brand-lock{ display:flex; align-items:center; gap:12px; }
.brand-lock img{ height:42px; width:auto; transition:height .25s ease; }
.hdr.scrolled .brand-lock img{ height:36px; }
.brand-name{ display:none; line-height:1; }
@media (min-width:560px){
  .brand-name{ display:block; }
  .brand-name b{ font-family:var(--ff-display); font-weight:700; font-size:16px; letter-spacing:-.01em; color:var(--ink); display:block; }
  .brand-name span{ font-family:var(--ff-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
}
.hdr-light .brand-name b{ color:#fff; }
.hdr-light .brand-name span{ color:rgba(255,255,255,.7); }

.nav{ display:none; }
@media (min-width:980px){
  .nav{ display:flex; align-items:center; gap:6px; }
  .nav a{
    font-size:14.5px; font-weight:500; color:var(--ink-2);
    padding:9px 14px; border-radius:var(--radius); transition:color .15s, background .15s;
  }
  .hdr-light .nav a{ color:rgba(255,255,255,.82); }
  .nav a:hover{ color:var(--brand); background:rgba(214,40,40,.07); }
  .hdr-light .nav a:hover{ color:#fff; background:rgba(255,255,255,.1); }
}
.hdr-cta{ display:none; }
@media (min-width:980px){ .hdr-cta{ display:inline-flex; } }

.hdr-phone{
  display:none; align-items:center; gap:8px;
  font-family:var(--ff-mono); font-size:14px; font-weight:500; color:var(--ink);
}
.hdr-light .hdr-phone{ color:#fff; }
@media (min-width:760px){ .hdr-phone{ display:inline-flex; } }
.hdr-phone svg{ width:16px;height:16px;color:var(--brand); }
.hdr-light .hdr-phone svg{ color:var(--spark); }

/* hamburger */
.burger{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px;height:46px; background:transparent; border:1.5px solid var(--border); border-radius:var(--radius);
}
.hdr-light .burger{ border-color:rgba(255,255,255,.3); }
.burger svg{ width:22px;height:22px;color:var(--ink); }
.hdr-light .burger svg{ color:#fff; }
@media (min-width:980px){ .burger{ display:none; } }

/* mobile drawer */
.drawer{
  position:fixed; inset:0; z-index:80; display:flex; flex-direction:column;
  background:var(--carbon); color:#fff;
  transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.1,1);
  padding:22px;
}
.drawer.open{ transform:translateX(0); }
.drawer-top{ display:flex; align-items:center; justify-content:space-between; }
.drawer-top img{ height:40px; }
.drawer-close{ width:46px;height:46px;border:1.5px solid rgba(255,255,255,.25); background:transparent; border-radius:var(--radius); display:inline-flex;align-items:center;justify-content:center; }
.drawer-close svg{ width:22px;height:22px;color:#fff; }
.drawer nav{ display:flex; flex-direction:column; margin-top:34px; }
.drawer nav a{
  font-family:var(--ff-display); font-weight:700; font-size:30px; letter-spacing:-.02em;
  padding:15px 0; border-bottom:1px solid rgba(255,255,255,.08); color:#fff;
  display:flex; align-items:baseline; gap:14px;
}
.drawer nav a .ix{ font-family:var(--ff-mono); font-size:12px; font-weight:400; color:var(--spark); letter-spacing:.1em; }
.drawer-foot{ margin-top:auto; display:grid; gap:12px; }
.drawer-foot .row{ display:flex; gap:12px; }
.drawer-foot .row .btn{ flex:1; }

/* ---------- hero ---------- */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; color:#fff; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,11,14,.55) 0%, rgba(10,11,14,.15) 32%, rgba(10,11,14,.55) 62%, rgba(10,11,14,.94) 100%),
    linear-gradient(90deg, rgba(10,11,14,.7) 0%, rgba(10,11,14,0) 60%);
}
.hero-grain{ position:absolute; inset:0; z-index:1; opacity:.5;
  background-image:repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 3px); pointer-events:none; }
.hero-inner{ position:relative; z-index:2; width:100%; padding-bottom:118px; padding-top:120px; }
@media (min-width:880px){ .hero-inner{ padding-bottom:84px; } }

.hero-tag{
  display:inline-flex; align-items:center; gap:12px; margin-bottom:22px;
  font-family:var(--ff-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:#fff;
}
.hero-tag .dot{ width:8px;height:8px;border-radius:50%;background:var(--spark); box-shadow:0 0 0 0 rgba(245,163,0,.6); animation:pulse 2.4s infinite; }
@media (prefers-reduced-motion: reduce){ .hero-tag .dot{ animation:none; } }
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(245,163,0,.55);} 70%{box-shadow:0 0 0 12px rgba(245,163,0,0);} 100%{box-shadow:0 0 0 0 rgba(245,163,0,0);} }
.hero-tag .bar{ width:1px; height:14px; background:rgba(255,255,255,.3); }

.hero h1{ max-width:15ch; text-shadow:0 2px 30px rgba(0,0,0,.35); }
.hero h1 em{ font-style:normal; color:var(--spark); }
.hero .lead{ color:rgba(255,255,255,.84); margin-top:22px; max-width:50ch; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
@media (max-width:520px){ .hero-cta .btn{ flex:1 1 100%; } }

.hero-meta{
  display:flex; flex-wrap:wrap; gap:14px 30px; margin-top:40px;
  padding-top:26px; border-top:1px solid rgba(255,255,255,.15);
}
.hero-meta .item{ display:flex; flex-direction:column; gap:3px; }
.hero-meta .item .k{ font-family:var(--ff-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.55); }
.hero-meta .item .v{ font-family:var(--ff-display); font-weight:700; font-size:18px; display:flex; align-items:center; gap:7px; }
.stars{ color:var(--spark); letter-spacing:1px; font-size:15px; }

/* ---------- trust marquee ---------- */
.brandstrip{ background:var(--carbon); color:#fff; border-block:1px solid var(--carbon-3); overflow:hidden; }
.brandstrip-inner{ display:flex; align-items:center; gap:14px; padding-block:20px; }
.brandstrip .label{ flex:none; font-family:var(--ff-mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.5); padding-right:6px; }
.marquee{ flex:1; overflow:hidden; -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track{ display:flex; gap:42px; width:max-content; animation:scroll 38s linear infinite; }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes scroll{ to{ transform:translateX(-50%); } }
.marquee-track span{ font-family:var(--ff-display); font-weight:700; font-size:21px; letter-spacing:-.01em; color:rgba(255,255,255,.62); white-space:nowrap; }

/* ---------- services ---------- */
.svc-head{ display:grid; gap:22px; margin-bottom:46px; }
@media (min-width:880px){ .svc-head{ grid-template-columns:1.1fr .9fr; align-items:end; } }
.svc-grid{ display:grid; gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
@media (min-width:640px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .svc-grid{ grid-template-columns:repeat(3,1fr); } }
.svc{
  background:var(--surface); padding:30px 28px 32px; position:relative;
  transition:background .2s ease; min-height:230px; display:flex; flex-direction:column;
}
.svc:hover{ background:#fff; }
.svc::before{ content:""; position:absolute; left:0; top:0; width:0; height:3px; background:var(--brand); transition:width .3s ease; }
.svc:hover::before{ width:100%; }
.svc-ix{ font-family:var(--ff-mono); font-size:12px; color:var(--muted); letter-spacing:.08em; }
.svc-ico{ width:46px;height:46px;border-radius:var(--radius); background:rgba(214,40,40,.08); display:flex;align-items:center;justify-content:center; color:var(--brand); margin:14px 0 18px; }
.svc-ico svg{ width:25px;height:25px; }
.svc h3{ font-size:21px; margin-bottom:9px; }
.svc p{ margin:0; color:var(--muted); font-size:14.5px; line-height:1.55; }
.svc .tags{ margin-top:auto; padding-top:16px; display:flex; flex-wrap:wrap; gap:7px; }
.svc .tags span{ font-family:var(--ff-mono); font-size:10.5px; letter-spacing:.04em; color:var(--ink-2); background:var(--bg); border:1px solid var(--hair); border-radius:100px; padding:4px 9px; }

/* ---------- split / process ---------- */
.dark-sec{ background:var(--carbon); color:#fff; }
.dark-sec .lead{ color:rgba(255,255,255,.66); }
.steps{ display:grid; gap:16px; margin-top:46px; }
@media (min-width:760px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1040px){ .steps{ grid-template-columns:repeat(4,1fr); } }
.step{ border:1px solid var(--carbon-3); border-radius:var(--radius-lg); padding:26px 24px 28px; background:var(--carbon-2); position:relative; overflow:hidden; }
.step .n{ font-family:var(--ff-display); font-weight:700; font-size:46px; color:var(--carbon-3); line-height:1; transition:color .25s; }
.step:hover .n{ color:var(--spark); }
.step h3{ font-size:19px; margin:14px 0 8px; }
.step p{ margin:0; color:rgba(255,255,255,.6); font-size:14px; line-height:1.55; }
.step .edge{ position:absolute; right:-1px; top:-1px; width:42px;height:42px; background:linear-gradient(135deg, transparent 50%, rgba(245,163,0,.16) 50%); }

/* ---------- gallery ---------- */
.gal-head{ display:flex; flex-wrap:wrap; gap:16px; align-items:flex-end; justify-content:space-between; margin-bottom:34px; }
.gal{ display:grid; gap:12px; grid-template-columns:repeat(2,1fr); grid-auto-rows:160px; }
@media (min-width:760px){ .gal{ grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:14px; } }
.gal figure{ margin:0; position:relative; overflow:hidden; border-radius:var(--radius-lg); background:var(--carbon); cursor:pointer; }
.gal figure img{ width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.gal figure:hover img{ transform:scale(1.06); }
.gal figure figcaption{
  position:absolute; inset:auto 0 0 0; padding:30px 14px 12px;
  font-family:var(--ff-mono); font-size:11px; letter-spacing:.06em; color:#fff;
  background:linear-gradient(0deg, rgba(10,11,14,.8), transparent);
  opacity:0; transform:translateY(6px); transition:opacity .25s, transform .25s;
}
.gal figure:hover figcaption{ opacity:1; transform:translateY(0); }
.gal .span2{ grid-column:span 2; }
.gal .row2{ grid-row:span 2; }
.gal .plus{ position:absolute; top:10px; right:10px; width:30px;height:30px; border-radius:50%; background:rgba(0,0,0,.5); backdrop-filter:blur(4px); display:flex;align-items:center;justify-content:center; opacity:0; transition:opacity .25s; }
.gal figure:hover .plus{ opacity:1; }
.gal .plus svg{ width:16px;height:16px;color:#fff; }

/* lightbox */
.lb{ position:fixed; inset:0; z-index:90; background:rgba(8,9,12,.94); display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; pointer-events:none; transition:opacity .25s; }
.lb.open{ opacity:1; pointer-events:auto; }
.lb img{ max-width:min(1080px,94vw); max-height:82vh; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); }
.lb-cap{ position:absolute; left:0; right:0; bottom:26px; text-align:center; color:rgba(255,255,255,.8); font-family:var(--ff-mono); font-size:12px; letter-spacing:.06em; }
.lb-x{ position:absolute; top:18px; right:18px; width:50px;height:50px; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.05); border-radius:50%; color:#fff; display:flex;align-items:center;justify-content:center; }
.lb-x svg{ width:24px;height:24px; }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); width:52px;height:52px; border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.05); border-radius:50%; color:#fff; display:flex;align-items:center;justify-content:center; }
.lb-nav:hover{ background:rgba(255,255,255,.14); }
.lb-nav svg{ width:26px;height:26px; }
.lb-prev{ left:14px; } .lb-next{ right:14px; }
@media (min-width:760px){ .lb-prev{ left:30px; } .lb-next{ right:30px; } }

/* ---------- reviews ---------- */
.rev-wrap{ display:grid; gap:26px; }
@media (min-width:980px){ .rev-wrap{ grid-template-columns:.85fr 1.15fr; align-items:center; gap:54px; } }
.rev-score{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:38px 34px; box-shadow:var(--shadow-sm); }
.rev-score .big{ font-family:var(--ff-display); font-weight:700; font-size:76px; line-height:.9; letter-spacing:-.03em; }
.rev-score .big sup{ font-size:26px; color:var(--brand); top:-1.4em; }
.rev-score .stars{ font-size:22px; margin:10px 0 6px; }
.rev-score .src{ font-family:var(--ff-mono); font-size:12px; color:var(--muted); letter-spacing:.04em; }
.rev-score hr{ border:0; border-top:1px solid var(--hair); margin:24px 0; }
.rev-cards{ display:grid; gap:16px; }
@media (min-width:600px){ .rev-cards{ grid-template-columns:repeat(2,1fr); } }
.rev{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-sm); }
.rev .q{ font-size:15px; line-height:1.6; color:var(--ink-2); }
.rev .stars{ font-size:14px; margin-bottom:12px; }
.rev .by{ margin-top:16px; font-family:var(--ff-mono); font-size:11.5px; color:var(--muted); letter-spacing:.03em; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; gap:30px; }
@media (min-width:980px){ .contact-grid{ grid-template-columns:1fr 1fr; gap:48px; } }
.info-card{ display:flex; gap:16px; padding:22px 0; border-bottom:1px solid var(--hair); }
.info-card:first-of-type{ padding-top:0; }
.info-ico{ flex:none; width:46px;height:46px; border-radius:var(--radius); background:var(--carbon); color:var(--spark); display:flex;align-items:center;justify-content:center; }
.info-ico svg{ width:22px;height:22px; }
.info-card .k{ font-family:var(--ff-mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:5px; }
.info-card .v{ font-family:var(--ff-display); font-weight:700; font-size:19px; color:var(--ink); }
.info-card .v a:hover{ color:var(--brand); }
.info-card .sub{ font-size:13.5px; color:var(--muted); margin-top:3px; }

.map-ph{
  position:relative; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden;
  background:
    linear-gradient(0deg, rgba(21,23,28,.04) 1px, transparent 1px) 0 0/100% 34px,
    linear-gradient(90deg, rgba(21,23,28,.04) 1px, transparent 1px) 0 0/34px 100%,
    var(--bg);
  min-height:260px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:14px; text-align:center; padding:24px;
}
.map-ph .pin{ width:54px;height:54px; border-radius:50%; background:var(--brand); display:flex;align-items:center;justify-content:center; color:#fff; box-shadow:0 12px 30px -8px rgba(214,40,40,.6); }
.map-ph .pin svg{ width:26px;height:26px; }
.map-ph .lbl{ font-family:var(--ff-mono); font-size:12px; letter-spacing:.08em; color:var(--muted); text-transform:uppercase; }
.map-ph .addr{ font-family:var(--ff-display); font-weight:700; font-size:17px; color:var(--ink); }
.map-ph .tag{ position:absolute; top:12px; left:12px; font-family:var(--ff-mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); background:rgba(255,255,255,.8); border:1px solid var(--border); padding:4px 9px; border-radius:100px; }

/* form */
.form-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:30px 26px; box-shadow:var(--shadow-md); }
@media (min-width:560px){ .form-card{ padding:36px 34px; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-2); margin-bottom:8px; }
.field label .req{ color:var(--brand); }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--ff-body); font-size:15px; color:var(--ink);
  background:var(--bg); border:1.5px solid var(--border); border-radius:var(--radius);
  padding:13px 14px; transition:border-color .15s, background .15s;
}
.field textarea{ resize:vertical; min-height:104px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--brand); background:#fff; }
.field.err input, .field.err select, .field.err textarea{ border-color:var(--primary); background:rgba(214,40,40,.04); }
.field .msg{ font-family:var(--ff-mono); font-size:11px; color:var(--primary); margin-top:6px; display:none; }
.field.err .msg{ display:block; }
.field-row{ display:grid; gap:18px; }
@media (min-width:520px){ .field-row{ grid-template-columns:1fr 1fr; } }

.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  font-family:var(--ff-body); font-size:13.5px; font-weight:500; color:var(--ink-2);
  background:var(--bg); border:1.5px solid var(--border); border-radius:100px; padding:9px 15px;
  transition:all .15s ease;
}
.chip[aria-pressed="true"]{ background:var(--ink); color:#fff; border-color:var(--ink); }
.chip:hover{ border-color:var(--ink); }

.form-ok{ text-align:center; padding:30px 10px; }
.form-ok .check{ width:64px;height:64px;border-radius:50%;background:rgba(31,138,91,.12); color:#1F8A5B; display:flex;align-items:center;justify-content:center; margin:0 auto 18px; }
.form-ok .check svg{ width:32px;height:32px; }
.form-ok h3{ font-size:24px; margin-bottom:10px; }
.form-ok p{ color:var(--muted); margin:0 auto; max-width:38ch; }

/* ---------- footer ---------- */
.foot{ background:var(--carbon); color:#fff; padding-top:64px; }
.foot-grid{ display:grid; gap:34px; padding-bottom:48px; border-bottom:1px solid var(--carbon-3); }
@media (min-width:820px){ .foot-grid{ grid-template-columns:1.4fr 1fr 1fr; } }
.foot img.logo{ height:50px; margin-bottom:18px; }
.foot p.about{ color:rgba(255,255,255,.6); font-size:14.5px; line-height:1.6; max-width:38ch; }
.foot h4{ font-family:var(--ff-mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.5); margin:0 0 16px; font-weight:500; }
.foot ul{ list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.foot ul a, .foot ul li{ color:rgba(255,255,255,.78); font-size:14.5px; }
.foot ul a:hover{ color:var(--spark); }
.foot-bot{ display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center; padding-block:24px; }
.foot-bot small{ color:rgba(255,255,255,.45); font-family:var(--ff-mono); font-size:11.5px; letter-spacing:.03em; }
.foot-note{ background:#0E0F13; color:rgba(255,255,255,.32); font-family:var(--ff-mono); font-size:10.5px; letter-spacing:.02em; line-height:1.6; padding:14px 0; }

/* ---------- mobile action bar ---------- */
.actionbar{
  position:fixed; inset:auto 0 0 0; z-index:70;
  display:grid; grid-template-columns:repeat(3,1fr);
  background:rgba(20,22,27,.97); backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.08);
  padding:8px 8px calc(8px + env(safe-area-inset-bottom));
  gap:8px;
}
@media (min-width:980px){ .actionbar{ display:none; } }
.actionbar a{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  padding:9px 4px; border-radius:var(--radius); color:#fff;
  font-family:var(--ff-mono); font-size:10.5px; letter-spacing:.05em; text-transform:uppercase;
}
.actionbar a svg{ width:21px;height:21px; }
.actionbar a.call{ background:var(--brand); }
.actionbar a.dir{ background:var(--carbon-3); }
.actionbar a.enq{ background:var(--spark); color:#1a1407; }
body{ padding-bottom:0; }
@media (max-width:979px){ body{ padding-bottom:74px; } }

/* reveal */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* utility */
.divider-num{ font-family:var(--ff-mono); font-size:12px; color:var(--muted); letter-spacing:.1em; }
.badge{ display:inline-flex; align-items:center; gap:7px; font-family:var(--ff-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; padding:6px 12px; border-radius:100px; border:1px solid var(--border); color:var(--ink-2); background:var(--surface); }
.badge .d{ width:7px;height:7px;border-radius:50%;background:#1F8A5B; }

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
