﻿/* ============================================================
   SIYYAD KHAN GARAGE LLC
   One font, plain sentence case. Dark photo hero, light body.
   All colours and fonts live in :root.
   ============================================================ */

:root{
  --red:#e11324;
  --red-2:#b30d1b;
  --red-soft:#fdecee;

  --ink:#12141a;
  --ink-2:#333844;
  --ink-3:#5b616e;
  --ink-4:#8d94a3;

  --paper:#ffffff;
  --paper-2:#f6f7f9;
  --paper-3:#edeff3;
  --line:#e2e5ec;
  --line-2:#d3d8e2;

  --r-s:8px; --r-m:12px; --r-l:16px; --r-xl:20px;
  --sh-1:0 1px 2px rgba(18,20,26,.05), 0 4px 14px rgba(18,20,26,.05);
  --sh-2:0 2px 6px rgba(18,20,26,.06), 0 18px 44px rgba(18,20,26,.1);
  --sh-3:0 30px 70px rgba(18,20,26,.2);

  /* max content width. 1560 fills a 1920 screen properly without stretching
     text into over-long lines. Lower it if you want narrower margins. */
  --wrap:1560px;
  --ease:cubic-bezier(.22,1,.36,1);

  /* One family for the whole site. Swap it here and everything follows.
     Want Calibri instead? Use:  'Calibri', 'Carlito', 'Inter', sans-serif  */
  --font:'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
[hidden]{display:none !important}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--font); font-size:16.5px; line-height:1.65; font-weight:400;
  overflow-x:hidden; -webkit-font-smoothing:antialiased;
}
img,svg,iframe{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit; color:inherit}

.wrap{width:min(100% - 40px, var(--wrap)); margin-inline:auto}

.skip{position:absolute; left:-999px; top:0; z-index:10000; background:var(--ink); color:#fff; padding:12px 18px}
.skip:focus{left:10px; top:10px}

/* ---------- typography ---------- */
h1,h2,h3,h4{margin:0; font-family:var(--font); font-weight:700; letter-spacing:-.022em; line-height:1.14; text-transform:none}
h1{font-size:clamp(2.1rem, 4.4vw, 3.55rem); font-weight:800; letter-spacing:-.03em; line-height:1.08}
h2{font-size:clamp(1.75rem, 3.5vw, 2.7rem); font-weight:800; letter-spacing:-.03em}
h3{font-size:clamp(1.06rem,1.6vw,1.22rem)}
h4{font-size:1.02rem}
h1 em, h2 em{font-style:normal; color:var(--red)}
p{margin:0 0 1em}
.dim{color:var(--ink-4); font-style:normal; font-size:.86em; font-weight:500}

.kicker{
  display:inline-flex; align-items:center; gap:10px; margin:0 0 14px;
  font-size:.76rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--red);
}
.kicker em{font-style:normal; color:var(--ink-4); font-weight:500}

.sec{padding:clamp(64px,8vw,116px) 0; position:relative}
.sec-tint{background:var(--paper-2)}
.sec-dark{background:#0b0c11; color:#e7e9ee}
.sec-dark h2,.sec-dark h3,.sec-dark h4{color:#fff}
.sec-dark .sub{color:#9aa1af}
.sec-dark .kicker{color:#ff5b68}
.sec-dark .dim{color:#5b616e}
.sec-head{max-width:880px; margin-bottom:clamp(34px,4.4vw,56px)}
.sec-head .sub{color:var(--ink-3); font-size:1.03rem; margin-top:14px; max-width:64ch}

.pulse{
  width:8px; height:8px; border-radius:50%; background:#12b76a; display:inline-block; flex:none;
  box-shadow:0 0 0 0 rgba(18,183,106,.6); animation:pulse 2.2s infinite;
}
@keyframes pulse{70%{box-shadow:0 0 0 9px rgba(18,183,106,0)}100%{box-shadow:0 0 0 0 rgba(18,183,106,0)}}
/* grey and still when the workshop is shut */
.pulse.off{background:#6b7280; animation:none; box-shadow:none}

/* ---------- buttons ---------- */
.btn{
  --bg:var(--ink); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:13px 22px; border:1px solid transparent; border-radius:var(--r-s);
  background:var(--bg); color:var(--fg); cursor:pointer;
  font-weight:600; font-size:.94rem; letter-spacing:-.005em; white-space:nowrap;
  position:relative; overflow:hidden; isolation:isolate;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), color .3s, border-color .3s;
}
.btn::before{
  content:''; position:absolute; inset:0; z-index:-1; border-radius:inherit;
  background:var(--red); transform:translateY(101%); transition:transform .5s var(--ease);
}
.btn:hover::before{transform:translateY(0)}
.btn:hover{transform:translateY(-2px); box-shadow:0 12px 26px rgba(225,19,36,.26); color:#fff}
.btn:active{transform:translateY(0)}
.btn.big{padding:16px 28px; font-size:1rem}
.btn.full{width:100%; margin-top:14px}
.btn-primary{--bg:var(--red)}
.btn-primary::before{background:var(--ink)}
.btn-primary:hover{box-shadow:0 12px 26px rgba(18,20,26,.24)}
.btn-line{--bg:transparent; --fg:var(--ink); border-color:var(--line-2)}
.btn-line:hover{border-color:var(--red)}
.btn-ghost{--bg:transparent; --fg:#fff; border-color:rgba(255,255,255,.35)}
.btn-ghost:hover{border-color:var(--red)}
/* outline call button — sits next to the red CTA without competing with it */
.btn-call{--bg:transparent; --fg:#fff; border-color:rgba(255,255,255,.3)}
.btn-call:hover{border-color:var(--red)}
.btn-wa{--bg:#12a75a}
.btn-wa::before{background:#0d8446}
.btn-wa:hover{box-shadow:0 12px 26px rgba(18,167,90,.3)}
.btn[disabled]{opacity:.35; pointer-events:none}

/* ---------- loader ---------- */
.loader{
  position:fixed; inset:0; z-index:10001; background:var(--ink);
  display:grid; place-content:center; justify-items:center; gap:20px;
  transition:opacity .6s .25s var(--ease), visibility .6s .25s;
}
.loader.done{opacity:0; visibility:hidden}
.loader-mark{display:flex; gap:7px}
.loader-mark span{width:8px; height:32px; background:#fff; border-radius:2px; animation:lm .9s infinite var(--ease)}
.loader-mark span:nth-child(2){animation-delay:.12s; background:var(--red)}
.loader-mark span:nth-child(3){animation-delay:.24s}
@keyframes lm{0%,100%{transform:scaleY(.4)}50%{transform:scaleY(1)}}
.loader-txt{font-size:.72rem; font-weight:600; letter-spacing:.3em; color:#6b7280; margin:0}

/* ---------- scroll progress + cursor ---------- */
.scrollbar{position:fixed; top:0; left:0; height:3px; width:0; background:var(--red); z-index:9999}
.cursor{position:fixed; top:0; left:0; z-index:9997; pointer-events:none; opacity:0}
.cursor-dot{position:fixed; width:7px; height:7px; margin:-3.5px; border-radius:50%; background:var(--red)}
.cursor-ring{
  position:fixed; width:36px; height:36px; margin:-18px; border-radius:50%;
  border:1.5px solid var(--line-2); transition:width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), border-color .3s, background .3s;
}
.cursor.hot .cursor-ring{width:62px; height:62px; margin:-31px; border-color:var(--red); background:rgba(225,19,36,.07)}
@media (hover:hover) and (pointer:fine){ .cursor.on{opacity:1} }

/* ---------- top bar ---------- */
.topbar{background:#020204; color:#c9ced9; font-size:.81rem}
.topbar-in{display:flex; align-items:center; gap:16px; height:40px}
.tb-item{display:inline-flex; align-items:center; gap:8px; white-space:nowrap}
.tb-sep{flex:1}
.tb-dim{color:#5b616e; font-weight:400}
.tb-link{color:#fff; font-weight:600}
.tb-link:hover{color:var(--red)}
.tb-link b{font-weight:700; letter-spacing:.01em}
@media (max-width:860px){ #openState{display:none} }
@media (max-width:560px){
  .topbar-in{height:36px; font-size:.74rem; gap:14px; justify-content:center}
  .tb-sep{display:none}
}
@media (max-width:400px){ .tb-wa{display:none} }   /* floating button covers it */

/* ---------- header ---------- */
/* Black header bar. The background is #020204 — sampled from the logo file itself,
   so the logo sits on it seamlessly with no visible square. Keep these the same:
   change one and change the other. (No backdrop-filter: it is fully opaque.) */
.hdr{position:sticky; top:0; z-index:900; background:#020204; border-bottom:1px solid transparent; transition:border-color .3s, box-shadow .3s}
.hdr.stuck{border-bottom-color:#23262f; box-shadow:0 6px 24px rgba(0,0,0,.45)}
.hdr-in{display:flex; align-items:center; gap:22px; height:96px}

.brand{display:flex; align-items:center; gap:12px; flex:none}
/* No box, no shadow, no rounding — the logo's own black matches the bar behind it,
   so it reads as part of the header rather than a badge stuck on top. */
.brand-badge{width:78px; height:78px; overflow:hidden; background:#020204; flex:none; display:grid; place-items:center}
.brand-badge img,.brand-badge svg{width:100%; height:100%; object-fit:contain}
.brand-txt b{display:block; font-size:1.22rem; font-weight:700; letter-spacing:-.02em; line-height:1.15; color:#fff}
.brand-txt small{display:block; font-size:.73rem; letter-spacing:.04em; color:#8d94a3}

.nav{display:flex; gap:2px; margin-left:auto}
.nav a{position:relative; padding:9px 12px; border-radius:6px; font-size:.93rem; font-weight:500; color:#c9ced9; transition:color .25s}
.nav a::after{content:''; position:absolute; left:12px; right:12px; bottom:4px; height:2px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease)}
.nav a:hover{color:var(--ink)}
.nav a:hover::after,.nav a.active::after{transform:scaleX(1)}
.nav a.active{color:var(--red)}

.hdr-cta{display:flex; align-items:center; gap:10px}
.hdr-btn{padding:11px 18px; font-size:.88rem}
.burger{display:none; width:44px; height:44px; border:1px solid #2c3039; border-radius:8px; background:transparent; flex-direction:column; gap:5px; align-items:center; justify-content:center; cursor:pointer}
.burger span{width:19px; height:2px; background:#fff; border-radius:2px; transition:transform .35s var(--ease), opacity .2s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:1060px){.hdr-btn{display:none}}
@media (max-width:960px){
  /* absolute + top:100% pins the menu to the bottom edge of the header, whatever
     height the header happens to be — no magic number to keep in sync */
  .nav{
    position:absolute; top:100%; left:0; right:0; margin:0; flex-direction:column; gap:0; padding:12px 20px 24px;
    background:#0a0b0f; border-bottom:1px solid #23262f; box-shadow:0 18px 44px rgba(0,0,0,.5);
    clip-path:inset(0 0 100% 0); transition:clip-path .5s var(--ease);
  }
  .nav.open{clip-path:inset(0 0 0 0)}
  .nav a{padding:15px 6px; font-size:1.05rem; font-weight:600; border-bottom:1px solid #1c1f27}
  .nav a::after{display:none}
  .burger{display:flex}
  .hdr-in{height:82px}
  .brand-badge{width:64px; height:64px}
}

/* ---------- hero ---------- */
.hero{
  position:relative; background:#0a0b0f; color:#fff; overflow:hidden;
  min-height:min(88vh, 780px); display:flex; align-items:center;
  padding:clamp(70px,9vw,120px) 0 clamp(110px,12vw,160px);
}
.hero-bg{position:absolute; inset:0}
.hero-vid{
  width:100%; height:100%; object-fit:cover; object-position:center 55%;
  background:#0a0b0f center/cover no-repeat;
  transform:scale(1.02);
}
.hero-veil{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,11,15,.92) 0%, rgba(10,11,15,.74) 40%, rgba(10,11,15,.18) 76%, rgba(10,11,15,.34) 100%),
    linear-gradient(0deg, rgba(10,11,15,.92) 0%, rgba(10,11,15,.04) 50%, rgba(10,11,15,.34) 100%);
}
/* faint scan-lines so the video reads as a backdrop, not a distraction */
.hero-grid{
  position:absolute; inset:0; opacity:.5; pointer-events:none;
  background:repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 4px);
}
.hero-in{position:relative; width:min(100% - 40px, var(--wrap))}
.hero-copy{max-width:860px}


.eyebrow{display:inline-flex; align-items:center; gap:10px; padding:7px 15px 7px 12px; border:1px solid rgba(255,255,255,.2); border-radius:100px; background:rgba(255,255,255,.06); backdrop-filter:blur(6px); font-size:.81rem; font-weight:500; color:#e7e9ee; margin:0 0 22px}
.eyebrow em{font-style:normal; color:#7c8393; font-size:.9em}

h1 .line{display:block; overflow:hidden; padding-bottom:.06em}
h1 .line>span{display:block; transform:translateY(104%); transition:transform 1s var(--ease)}
h1.in .line>span{transform:translateY(0)}
h1.in .line:nth-child(2)>span{transition-delay:.09s}

.hero h1{font-size:clamp(2.3rem, 5.2vw, 4.2rem)}
.hero .lede{margin:22px 0 30px; font-size:clamp(1.02rem,1.5vw,1.14rem); color:#c2c8d4; max-width:58ch}

.hero-badges{display:flex; gap:24px; flex-wrap:wrap; list-style:none; margin:34px 0 0; padding:0; font-size:.9rem; color:#e7e9ee}
.hero-badges li{display:flex; align-items:center; gap:10px; font-weight:500}
.hb-ico{width:34px; height:34px; border-radius:50%; background:rgba(225,19,36,.15); border:1px solid rgba(225,19,36,.45); display:grid; place-items:center; flex:none}
.hb-ico svg{width:17px; height:17px; fill:none; stroke:var(--red); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round}

.hero-btns{display:flex; gap:12px; flex-wrap:wrap}
@media (max-width:520px){.hero-btns .btn{width:100%}}

/* form messages */
.qc-err{color:var(--red); font-size:.85rem; font-weight:600; margin:0 0 8px}
.qc-ok{background:#e7f8ef; border:1px solid #b6e6cd; color:#0d8446; border-radius:var(--r-m); padding:18px 20px; font-size:.94rem; font-weight:500}

/* ---------- form fields (shared) ---------- */
.fld{display:block; margin-bottom:15px}
.fld span{display:flex; justify-content:space-between; gap:10px; font-size:.85rem; font-weight:500; color:var(--ink-3); margin-bottom:6px}
.fld span em{font-style:normal; color:var(--ink-4)}
.fld input,.fld select,.fld textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line-2); border-radius:var(--r-s);
  background:var(--paper-2); font-size:.96rem; transition:.25s;
}
.fld input:focus,.fld select:focus,.fld textarea:focus{outline:0; border-color:var(--red); background:var(--paper); box-shadow:0 0 0 4px rgba(225,19,36,.09)}
.fld textarea{resize:vertical}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width:620px){.grid2{grid-template-columns:1fr}}

/* ---------- car line-up (sits in the Brands section) ----------
   The soft ellipse behind the image is a fake ground shadow — without it a
   cut-out floats and looks pasted on. */
.lineup{position:relative; max-width:960px; margin:0 auto clamp(38px,4.4vw,58px)}
.lineup::before{
  content:''; position:absolute; left:9%; right:9%; bottom:8px; height:26px;
  background:radial-gradient(ellipse at center, rgba(18,20,26,.26), rgba(18,20,26,0) 72%);
}
.lineup-img{position:relative; width:100%; height:auto; display:block}
@media (max-width:700px){.lineup{margin-bottom:28px} .lineup::before{height:18px; bottom:5px}}

/* ---------- service cards ---------- */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.card{
  position:relative; background:var(--paper); border:1px solid var(--line); border-radius:var(--r-l);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.card:hover{transform:translateY(-6px); box-shadow:var(--sh-2); border-color:var(--line-2)}
.card-img{position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--ink)}
.card-img img{width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease)}
.card:hover .card-img img{transform:scale(1.07)}
.card-img::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,11,15,0) 40%, rgba(10,11,15,.55))}
.card-tag{position:absolute; left:14px; top:14px; z-index:2; font-size:.72rem; font-weight:700; background:var(--red); color:#fff; padding:4px 10px; border-radius:4px}
.card-body{padding:24px 24px 22px; display:flex; flex-direction:column; flex:1; position:relative}
.card.spot .card-body::before{
  content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s; pointer-events:none;
  background:radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(225,19,36,.1), transparent 62%);
}
.card.spot:hover .card-body::before{opacity:1}
.card h3{margin-bottom:10px}
.card p{color:var(--ink-3); font-size:.94rem; margin-bottom:14px}
.ticks{list-style:none; margin:0 0 18px; padding:0; display:grid; gap:7px; font-size:.88rem; color:var(--ink-2)}
.ticks li{position:relative; padding-left:23px}
.ticks li::before{content:''; position:absolute; left:0; top:.45em; width:11px; height:6px; border-left:2px solid var(--red); border-bottom:2px solid var(--red); transform:rotate(-45deg)}
.card-link{
  margin-top:auto; display:inline-flex; align-items:center; gap:8px;
  font-size:.88rem; font-weight:600; color:var(--red);
  padding-top:14px; border-top:1px dashed var(--line-2); width:100%;
}
.card-link svg{transition:transform .35s var(--ease)}
.card-link:hover svg{transform:translateX(5px)}
@media (max-width:1000px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.cards{grid-template-columns:1fr}}

/* recovery strip */
.recovery{
  margin-top:24px; background:var(--ink); color:#fff; border-radius:var(--r-l); padding:30px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background-image:radial-gradient(600px circle at 90% 0%, rgba(225,19,36,.35), transparent 60%);
}
.recovery h3{font-size:clamp(1.2rem,2.2vw,1.6rem); margin-bottom:8px}
.recovery p{color:#9aa1af; font-size:.95rem; margin:0; max-width:60ch}
.recovery .kicker{color:#ff5b68}
.recovery .rec-btns{display:flex; gap:10px; flex-wrap:wrap}
.recovery .btn-line{--fg:#fff; border-color:#3b3f4a}

/* ---------- brands ---------- */
.brand-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:14px}
.brand-tile{
  display:grid; justify-items:center; align-content:center; gap:14px;
  padding:26px 16px 20px; min-height:152px; text-align:center;
  border:1px solid var(--line); border-radius:var(--r-m); background:var(--paper);
  transition:.35s var(--ease);
}
/* Real logos, full colour. To show them grey until hover instead,
   add   filter:grayscale(1); opacity:.6;   to .bt-logo below. */
/* Several logos (Ford, Chevrolet, Jaguar) are wide artwork inside a square
   viewBox, so the height is what caps them — hence the generous 60px. */
.bt-logo{
  width:100%; max-width:150px; height:60px; object-fit:contain;
  transition:transform .35s var(--ease);
}
.brand-tile b{font-size:.86rem; font-weight:600; color:var(--ink-3); letter-spacing:-.01em; transition:color .3s}
.brand-tile:hover{border-color:var(--line-2); transform:translateY(-4px); box-shadow:var(--sh-1)}
.brand-tile:hover .bt-logo{transform:scale(1.07)}
.brand-tile:hover b{color:var(--ink)}
.brand-note{margin:22px 0 0; font-size:.82rem; color:var(--ink-4); max-width:78ch}
@media (max-width:1000px){.brand-grid{grid-template-columns:repeat(4,1fr)}}
@media (max-width:760px){.brand-grid{grid-template-columns:repeat(3,1fr)} .bt-logo{height:48px} .brand-tile{min-height:128px; padding:20px 12px 16px}}
@media (max-width:460px){.brand-grid{grid-template-columns:repeat(2,1fr)}}

/* ---------- car photos beside the headings ----------
   Real photos with the background cut away (transparent PNG), so they sit on
   the page with no box or white edge. They alternate sides: left, right, left.
   Each car faces into the text, which is why the SUV is mirrored. */
.head-row{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,56px);
  align-items:center; margin-bottom:clamp(34px,4.4vw,56px);
}
.head-row .sec-head{margin-bottom:0; max-width:none}
/* Fill the column width so the car isn't stranded in the middle of it.
   max-height only bites on tall photos; when it does, object-position pushes
   the car out to the page edge rather than floating it in the centre. */
.head-car img{width:100%; height:auto; max-height:420px; object-fit:contain; display:block}
.head-row > .head-car:first-child img{object-position:left center}
.head-row > .head-car:last-child  img{object-position:right center}
.head-car--faq img{object-position:left center}
.head-car--flip img{transform:scaleX(-1)}
.head-car--faq{margin-top:38px}
/* keep it out of the way on smaller screens rather than squashing the heading */
@media (max-width:900px){
  .head-row{grid-template-columns:1fr; gap:18px}
  .head-car{order:2; max-width:440px}
  .head-row .sec-head{order:1}
  .head-car--faq{margin-top:24px; max-width:400px}
}
@media (max-width:560px){.head-car{display:none}}

/* ---------- process ---------- */
.steps{position:relative; list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(5,1fr); gap:22px}
.step{position:relative; padding-top:62px}
.step-n{
  position:absolute; top:0; left:0; width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center; background:var(--paper); border:2px solid var(--line-2);
  font-size:1rem; font-weight:700; color:var(--ink-4); z-index:2; transition:.4s var(--ease);
}
.step.in .step-n{background:var(--red); border-color:var(--red); color:#fff}
.step h3{margin-bottom:8px}
.step p{color:var(--ink-3); font-size:.92rem; margin:0}
.steps-line{position:absolute; top:21px; left:21px; right:21px; height:2px; background:var(--line-2); list-style:none}
.steps-line i{display:block; height:100%; width:0; background:var(--red); transition:width .7s var(--ease)}
@media (max-width:1000px){.steps{grid-template-columns:repeat(2,1fr)} .steps-line{display:none}}
@media (max-width:620px){
  .steps{grid-template-columns:1fr; gap:0}
  .step{padding:0 0 30px 62px}
  .steps-line{display:block; top:10px; bottom:30px; left:20px; right:auto; width:2px; height:auto}
  .steps-line i{width:100%; height:0; transition:height .7s var(--ease)}
}

/* ---------- insurance band ---------- */
.band{position:relative; color:#fff; padding:clamp(70px,8vw,110px) 0; overflow:hidden; background:#0a0b0f}
.band-bg{position:absolute; inset:0}
.band-bg img{width:100%; height:100%; object-fit:cover; filter:grayscale(1)}
.band-bg span{position:absolute; inset:0; background:linear-gradient(90deg, rgba(10,11,15,.95) 0%, rgba(10,11,15,.86) 46%, rgba(10,11,15,.7) 100%)}
.band-in{position:relative; display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(30px,5vw,64px); align-items:center}
.band h2{color:#fff; margin-bottom:12px}
.band-copy p{color:#9aa1af; margin-bottom:22px}
.band-list{list-style:none; margin:0; padding:0; display:grid; gap:14px}
.band-list li{display:grid; grid-template-columns:52px 1fr; gap:16px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-m); padding:20px 22px; backdrop-filter:blur(6px)}
.bl-ico{width:52px; height:52px; border-radius:12px; background:rgba(225,19,36,.16); display:grid; place-items:center}
.bl-ico svg{width:24px; height:24px; fill:none; stroke:var(--red); stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round}
.band-list b{display:block; font-size:1rem; font-weight:600; margin-bottom:4px}
.band-list p{margin:0; color:#9aa1af; font-size:.9rem}
@media (max-width:900px){.band-in{grid-template-columns:1fr}}

/* ---------- why ---------- */
/* one column capped at 900px, but still starting at the page's left margin
   (a plain max-width would inherit .wrap's auto margins and centre it) */
.why-grid{display:grid; grid-template-columns:minmax(0,1020px)}
.why-list{display:grid; gap:4px; margin-top:30px}
.why-item{display:grid; grid-template-columns:52px 1fr; gap:16px; padding:20px 0; border-top:1px solid var(--line)}
.why-item b{font-size:1.15rem; font-weight:700; color:var(--line-2); transition:color .3s}
.why-item:hover b{color:var(--red)}
.why-item h4{margin-bottom:6px}
.why-item p{margin:0; color:var(--ink-3); font-size:.93rem}


/* ---------- reviews ---------- */
.revs{display:flex; gap:20px; overflow-x:auto; padding:6px 0 26px; scroll-snap-type:x mandatory; cursor:grab;
  padding-inline:max(20px, calc((100vw - var(--wrap))/2)); scrollbar-width:none}
.revs::-webkit-scrollbar{display:none}
.revs.grab{cursor:grabbing; scroll-snap-type:none}
.rev{flex:0 0 min(420px, 82vw); scroll-snap-align:start; margin:0; background:var(--paper); border:1px solid var(--line); border-radius:var(--r-l); padding:26px; box-shadow:var(--sh-1); transition:box-shadow .4s, transform .4s var(--ease)}
.rev:hover{box-shadow:var(--sh-2); transform:translateY(-4px)}
.stars{color:#f5a524; letter-spacing:3px; font-size:1.02rem; margin-bottom:12px}
.rev blockquote{margin:0 0 20px; font-size:.98rem; color:var(--ink-2); line-height:1.6}
.rev figcaption{display:grid; grid-template-columns:44px 1fr; grid-template-rows:auto auto; column-gap:12px; align-items:center}
.av{grid-row:span 2; width:44px; height:44px; border-radius:50%; background:var(--ink); color:#fff; display:grid; place-items:center; font-size:.82rem; font-weight:700}
.rev figcaption b{font-size:.94rem; font-weight:600}
.rev figcaption small{color:var(--ink-4); font-size:.81rem}

/* ---------- faq ---------- */
.faq-grid{display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(30px,5vw,64px); align-items:start}
.faq-side .btn{margin-top:8px}
.faq-list details{background:var(--paper); border:1px solid var(--line); border-radius:var(--r-m); margin-bottom:10px; overflow:hidden; transition:box-shadow .3s, border-color .3s}
.faq-list details[open]{box-shadow:var(--sh-1); border-color:var(--line-2)}
.faq-list summary{list-style:none; cursor:pointer; padding:18px 54px 18px 22px; font-weight:600; font-size:1rem; position:relative}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:''; position:absolute; right:22px; top:50%; width:10px; height:10px; border-right:2px solid var(--red); border-bottom:2px solid var(--red); transform:translateY(-70%) rotate(45deg); transition:transform .35s var(--ease)}
.faq-list details[open] summary::after{transform:translateY(-20%) rotate(-135deg)}
.faq-list p{margin:0; padding:0 22px 20px; color:var(--ink-3); font-size:.94rem}
@media (max-width:900px){.faq-grid{grid-template-columns:1fr}}

/* ---------- contact ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:start; margin-bottom:22px}
.contact-card,.contact-form{background:var(--paper); border:1px solid var(--line); border-radius:var(--r-xl); padding:30px 28px; box-shadow:var(--sh-1)}
.contact-form h3{font-size:1.28rem; margin-bottom:6px}
.cf-sub{font-size:.9rem; color:var(--ink-3); margin-bottom:18px}
.cinfo{list-style:none; margin:0 0 24px; padding:0; display:grid; gap:21px}
.cinfo li{display:grid; grid-template-columns:46px 1fr; gap:15px}
.ci-ico{width:46px; height:46px; border-radius:11px; background:var(--red-soft); color:var(--red); display:grid; place-items:center}
.ci-ico svg{width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round}
.cinfo b{display:block; font-size:.96rem; font-weight:600; margin-bottom:3px}
.cinfo p{margin:0; color:var(--ink-3); font-size:.93rem}
.cinfo a:hover{color:var(--red)}
.hours{display:grid !important; grid-template-columns:auto auto; gap:3px 18px; justify-content:start}
.hours span:nth-child(odd){color:var(--ink-4)}
.hours span:nth-child(even){font-weight:600; color:var(--ink)}
.contact-btns{display:flex; gap:10px; flex-wrap:wrap}
.map{position:relative; border-radius:var(--r-xl); overflow:hidden; border:1px solid var(--line); height:400px; box-shadow:var(--sh-1)}
.map iframe{position:absolute; inset:0; width:100%; height:100%; border:0; filter:grayscale(.35) contrast(1.05)}
.map-tag{position:absolute; left:14px; bottom:14px; background:rgba(255,255,255,.94); border:1px solid var(--line); border-radius:100px; padding:8px 15px; font-size:.79rem; font-weight:500; backdrop-filter:blur(6px)}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}.map{height:320px}}

/* ---------- cta ---------- */
.cta{position:relative; color:#fff; padding:0 0 clamp(60px,8vw,96px); overflow:hidden; background:#0a0b0f}
.cta-bg{position:absolute; inset:0}
.cta-bg img{width:100%; height:100%; object-fit:cover; filter:grayscale(1)}
.cta-bg span{position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,11,15,.9), rgba(10,11,15,.96))}
.cta-marq{position:relative; overflow:hidden; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.1); margin-bottom:clamp(50px,7vw,80px)}
.cta-marq div{display:flex; gap:30px; width:max-content; animation:marq 34s linear infinite}
.cta-marq span{font-size:1rem; font-weight:600; color:var(--red)}
.cta-marq span:nth-child(even){color:#3b3f4a}
@keyframes marq{to{transform:translateX(-50%)}}
.cta-in{position:relative; text-align:center; max-width:760px}
.cta h2{color:#fff; margin-bottom:14px}
.cta p{color:#9aa1af; margin-bottom:26px}
.cta-btns{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}

/* ---------- footer ---------- */
.ftr{background:#0a0b0f; color:#9aa1af; padding:clamp(50px,7vw,76px) 0 0}
.ftr-in{display:grid; grid-template-columns:1.7fr 1fr 1fr; gap:36px}
.ftr .brand-txt b{color:#fff}
.ftr-brand p{margin:20px 0; font-size:.9rem; max-width:40ch}
.socials{display:flex; gap:9px}
.socials a{width:40px; height:40px; border-radius:50%; border:1px solid #23262f; display:grid; place-items:center; color:#9aa1af; transition:.3s var(--ease)}
.socials a:hover{background:var(--red); border-color:var(--red); color:#fff; transform:translateY(-3px)}
.ftr-col h4{color:#fff; font-size:.95rem; font-weight:600; margin-bottom:14px}
.ftr-col a,.ftr-col span{display:block; font-size:.89rem; padding:5px 0; transition:color .25s}
.ftr-col a:hover{color:var(--red)}
.ftr-btm{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:44px; padding:20px 0 26px; border-top:1px solid #16181e; font-size:.81rem}
.ftr-btm p{margin:0}
@media (max-width:900px){.ftr-in{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.ftr-in{grid-template-columns:1fr}}

/* ---------- floating buttons ---------- */
.fabs{position:fixed; right:18px; bottom:18px; z-index:950; display:grid; gap:10px; justify-items:end}
.fab{width:54px; height:54px; border-radius:50%; border:0; cursor:pointer; display:grid; place-items:center; background:var(--ink); color:#fff; box-shadow:var(--sh-2); transition:transform .4s var(--ease), background .3s}
.fab:hover{transform:translateY(-4px) scale(1.05)}
.fab-wa{background:#12a75a; width:auto; padding:0 20px 0 16px; height:54px; grid-auto-flow:column; gap:9px; border-radius:100px}
.fab-wa em{font-style:normal; font-weight:600; font-size:.92rem}
/* floating call button — pinned bottom LEFT, opposite the WhatsApp button */
.fab-call{
  position:fixed; left:18px; bottom:18px; z-index:950;
  width:auto; padding:0 20px 0 16px; height:54px;
  grid-auto-flow:column; gap:9px; border-radius:100px;
  background:var(--red); color:#fff;
}
.fab-call:hover{background:var(--red-2)}
.fab-call em{font-style:normal; font-weight:600; font-size:.92rem}
.fab-top{background:var(--paper); color:var(--ink); border:1px solid var(--line); opacity:0; pointer-events:none; transition:opacity .35s, transform .4s var(--ease)}
.fab-top.on{opacity:1; pointer-events:auto}
@media (max-width:660px){
  .fab-wa em, .fab-call em{display:none}
  .fab-wa, .fab-call{width:54px; padding:0}
  .fabs{right:14px; bottom:14px}
  .fab-call{left:14px; bottom:14px}
}

/* ---------- scroll reveal ---------- */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .8s var(--ease), transform .8s var(--ease)}
.reveal.in{opacity:1; transform:none}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important}
  .reveal{opacity:1; transform:none}
  h1 .line>span{transform:none}
}

/* ---------- responsive: hero ---------- */
@media (max-width:980px){
  .hero{min-height:auto; padding:clamp(56px,10vw,80px) 0 clamp(80px,12vw,110px)}
}


