/* ============================================================
   LAKE EFFECT COATINGS — COMPONENTS
   header · hero · cards · grids · process · testimonials · faq · footer
   ============================================================ */

/* ---------- Promo bar ---------- */
.promo { background: #0b0b0d; border-top: 3px solid var(--red); color: #fff; position: relative; z-index: 61; }
.promo__inner { display: flex; align-items: center; justify-content: center; gap: 0.9rem; min-height: 48px; flex-wrap: wrap; }
.promo__tag { background: var(--red); color: #fff; font-family: var(--font-head); font-weight: var(--fw-black);
  text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.72rem; padding: 0.32rem 0.7rem; border-radius: var(--r-sm); flex: none; }
.promo__msg { font-size: 0.88rem; color: rgba(255,255,255,0.82); }
.promo__msg strong { color: #fff; font-weight: var(--fw-bold); }
.promo__cta { display: inline-flex; align-items: center; gap: 0.4rem; color: #fff; font-family: var(--font-head);
  font-weight: var(--fw-black); text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.05em;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); padding: 0.34rem 0.8rem; border-radius: var(--r-pill); transition: background var(--t-fast); }
.promo__cta:hover { background: var(--red); border-color: var(--red); }
.promo__cta svg { width: 13px; height: 13px; }
@media (max-width: 860px) { .promo__cta { display: none; } .promo__msg { font-size: 0.8rem; } }
@media (max-width: 560px) { .promo__msg strong { display: block; } .promo__msg { text-align: center; } }

/* ---------- Top utility bar (legacy, unused) ---------- */
.topbar {
  background: #0c0c0e; color: var(--text-invert-mut);
  font-size: 0.82rem; border-top: 3px solid var(--red);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar a:hover { color: #fff; }
.topbar__left, .topbar a { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar svg { width: 15px; height: 15px; color: var(--red-light); }
.topbar .topbar__contact { display: flex; gap: 1.1rem; align-items: center; }
.topbar__sep { width: 1px; height: 16px; background: var(--ink-line); }
.topbar strong { color: #fff; }
@media (max-width: 760px) { .topbar__left strong, .topbar { font-size: 0.78rem; } .topbar svg { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(180deg, #0c0c0e, #121214); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--t), background var(--t);
}
.header.is-scrolled { background: rgba(12,12,14,0.97); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: var(--fw-black); }
.brand img, .brand svg { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav > a, .nav__top {
  position: relative; display: inline-flex; align-items: center; gap: 0.32rem;
  padding: 0.55rem 0.9rem; font-weight: var(--fw-semi);
  font-size: 0.92rem; color: rgba(255,255,255,0.82); white-space: nowrap;
  transition: color var(--t-fast); cursor: pointer;
}
.nav > a::after, .nav__top::after { content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.25rem; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--t); border-radius: 2px; }
.nav > a:hover, .nav__top:hover { color: #fff; }
.nav > a:hover::after, .nav__top:hover::after, .nav > a[aria-current="page"]::after, .nav__top[aria-current="page"]::after { transform: scaleX(1); }
.nav > a[aria-current="page"], .nav__top[aria-current="page"] { color: #fff; }
.nav__chev { display: inline-flex; transition: transform var(--t-fast); }
.nav__chev svg { width: 13px; height: 13px; }

/* dropdown */
.nav__item { position: relative; }
.nav__dd { position: absolute; top: 100%; left: 0; padding-top: 0.6rem; min-width: 260px; z-index: 70;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--t), transform var(--t), visibility var(--t); }
.nav__item:hover .nav__dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item:hover .nav__chev { transform: rotate(180deg); }
.nav__dd-inner { background: #161618; border: 1px solid rgba(255,255,255,0.1); border-top: 3px solid var(--red);
  border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 0.6rem; display: flex; flex-direction: column; }
.nav__dd--wide { min-width: 540px; }
.nav__dd--wide .nav__dd-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.1rem 0.4rem; }
.nav__dd a { padding: 0.6rem 0.8rem; border-radius: var(--r-sm); font-size: 0.88rem; font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.8); white-space: nowrap; transition: background var(--t-fast), color var(--t-fast); }
.nav__dd a:hover { background: rgba(192,39,45,0.16); color: #fff; }
.nav__dd-all { grid-column: 1 / -1; display: inline-flex !important; align-items: center; gap: 0.4rem;
  margin-top: 0.3rem; border-top: 1px solid rgba(255,255,255,0.08); color: var(--red-light) !important; font-weight: var(--fw-black) !important; text-transform: uppercase; font-size: 0.76rem !important; letter-spacing: 0.04em; }
.nav__dd-all svg { width: 14px; height: 14px; }
.header__cta { display: flex; align-items: center; gap: 1.1rem; }
.header__cta .btn svg { width: 1em; height: 1em; }
.header__phone { display: inline-flex; align-items: center; gap: 0.6rem; color: #fff; white-space: nowrap; }
.header__phone-ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; flex: none; }
.header__phone-ic svg { width: 17px; height: 17px; color: var(--red-light); }
.header__phone-txt { display: flex; flex-direction: column; line-height: 1.15; }
.header__phone-txt small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.header__phone-txt strong { font-size: 0.98rem; font-weight: var(--fw-bold); }
@media (max-width: 1200px) { .header__phone { display: none; } }
.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); align-items: center; justify-content: center; color: #fff; }
.burger svg { width: 26px; height: 26px; }

/* mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 80;
  background: var(--ink); color: #fff; transform: translateX(100%); transition: transform var(--t);
  display: flex; flex-direction: column; padding: 1.5rem; box-shadow: var(--shadow-lg); overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-nav > a { padding: 0.95rem 0.5rem; font-weight: var(--fw-semi); font-size: 1.1rem; color: rgba(255,255,255,0.9); border-bottom: 1px solid var(--ink-line); }
.mobile-nav a:hover { color: var(--red-light); }
.mnav__group { border-bottom: 1px solid var(--ink-line); }
.mnav__group summary { display: flex; align-items: center; justify-content: space-between; padding: 0.95rem 0.5rem;
  font-weight: var(--fw-semi); font-size: 1.1rem; color: rgba(255,255,255,0.9); cursor: pointer; list-style: none; }
.mnav__group summary::-webkit-details-marker { display: none; }
.mnav__group summary span { display: inline-flex; transition: transform var(--t); }
.mnav__group summary span svg { width: 18px; height: 18px; }
.mnav__group[open] summary span { transform: rotate(180deg); }
.mnav__sub { display: flex; flex-direction: column; padding: 0 0 0.6rem 0.7rem; }
.mnav__sub a { padding: 0.62rem 0.5rem; font-size: 0.98rem; color: rgba(255,255,255,0.7); }
.mnav__sub a:hover { color: var(--red-light); }
.mnav__sub a strong { color: #fff; }
.mobile-nav .btn { margin-top: 1.5rem; }
.scrim { position: fixed; inset: 0; background: rgba(17,17,17,0.5); z-index: 70; opacity: 0; visibility: hidden; transition: var(--t); }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero (editorial split) ---------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden;
  background: #111113; }
.hero__scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__scene img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero__scene::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg, #0e0e10 0%, rgba(14,14,16,0.96) 30%, rgba(14,14,16,0.7) 55%, rgba(14,14,16,0.55) 100%),
    radial-gradient(120% 80% at 80% 6%, rgba(192,39,45,0.30), transparent 60%); }
.hero__glow { position: absolute; z-index: 0; width: 60vw; height: 60vw; right: -12vw; top: -18vw; pointer-events: none;
  background: radial-gradient(circle, rgba(192,39,45,0.40), rgba(192,39,45,0) 62%); filter: blur(8px); }
.hero__glow.is-2 { left: -16vw; right: auto; top: auto; bottom: -22vw; width: 44vw; height: 44vw;
  background: radial-gradient(circle, rgba(120,130,150,0.16), transparent 64%); }
.hero__grain { position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.hero__wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 5.5rem); align-items: center;
  min-height: calc(92vh - var(--header-h)); padding-block: clamp(3rem, 2rem + 4vw, 6rem); }
.hero__copy { max-width: 640px; }
.hero__kicker { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.6rem;
  font-size: 0.8rem; font-weight: var(--fw-bold); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.78); }
.hero__kicker .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--red); position: relative; }
.hero__kicker .pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--red); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
.hero__title { font-family: var(--font-display); font-size: clamp(3rem, 1.6rem + 5.1vw, 5.2rem);
  line-height: 1.0; letter-spacing: 0.006em; text-transform: uppercase; font-weight: 400;
  color: #fff; margin-bottom: 1.9rem; text-shadow: 0 2px 30px rgba(0,0,0,0.45); }
.hero__title .thin { color: rgba(255,255,255,0.95); }
.hero__title .accent { color: var(--red-light); position: relative; white-space: nowrap; }
.hero__title .accent svg { position: absolute; left: -1%; right: -1%; bottom: -0.16em; width: 102%; height: 0.24em; color: var(--red); }
.hero__sub { font-size: var(--fs-lg); color: rgba(255,255,255,0.84); line-height: 1.6; margin-bottom: 2.4rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: nowrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.btn--glass { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
.btn--glass:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.4rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.12); }
.hero__meta li { display: inline-flex; align-items: center; gap: 0.55rem; font-size: var(--fs-sm); font-weight: var(--fw-semi); color: rgba(255,255,255,0.9); }
.hero__meta svg { width: 18px; height: 18px; color: var(--red-light); }
.hero__meta .stars svg { color: var(--gold); }

/* right-side framed art + floating proof */
.hero__art { position: relative; justify-self: center; width: 100%; max-width: 520px; }
.hero__art::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--r-xl); background: var(--red); z-index: 0; }
.hero__frame { position: relative; z-index: 1; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__review { position: absolute; z-index: 3; left: -22px; bottom: 26px; width: min(86%, 320px);
  background: rgba(22,22,24,0.86); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-lg); }
.hero__review .stars { color: var(--gold); }
.hero__review p { font-size: 0.92rem; color: #fff; margin: 0.5rem 0 0.7rem; line-height: 1.5; }
.hero__review .who { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero__review .g { width: 22px; height: 22px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-weight: 800; color: #4285F4; font-family: var(--font-display); }
.hero__cert { position: absolute; z-index: 3; right: -16px; top: 26px; display: flex; align-items: center; gap: 0.6rem;
  background: #fff; color: var(--ink); border-radius: var(--r-pill); padding: 0.55rem 1rem 0.55rem 0.6rem; box-shadow: var(--shadow-lg); font-weight: var(--fw-bold); font-size: 0.82rem; }
.hero__cert .ic { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; }
.hero__cert .ic svg { width: 18px; height: 18px; }

/* stat ribbon bridging into the page */
.hero__ribbon { position: relative; z-index: 3; border-top: 3px solid var(--red);
  background: linear-gradient(180deg, #161618, #0e0e10); box-shadow: 0 -10px 30px rgba(0,0,0,0.3); }
.hero__ribbon .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__ribbon .rib { padding: 1.8rem 1rem; text-align: center; position: relative; }
.hero__ribbon .rib:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 26%; bottom: 26%; width: 1px; background: rgba(255,255,255,0.1); }
.hero__ribbon .rib b { display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 1.5rem + 2.6vw, 3.6rem); color: #fff; line-height: 0.9; letter-spacing: 0.01em; }
.hero__ribbon .rib b .u { color: var(--red); }
.hero__ribbon .rib span { display: block; margin-top: 0.5rem; font-family: var(--font-head); font-size: 0.74rem; font-weight: var(--fw-bold); letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.62); }

/* ---------- Lead form card ---------- */
.lead-card { background: var(--white); color: var(--text); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.lead-card__head { background: var(--ink); color: #fff; padding: 1.4rem 1.6rem; }
.lead-card__head h3 { color: #fff; font-size: var(--fs-h4); }
.lead-card__head p { color: var(--text-invert-mut); font-size: var(--fs-sm); margin-top: 0.25rem; }
.lead-card__body { padding: 1.6rem; display: grid; gap: 0.9rem; }
.lead-card .form-note { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--green); font-weight: var(--fw-semi); }
.lead-card .form-note svg { width: 18px; height: 18px; }
.lead-card .form-foot { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.form-success { display: none; padding: 2.5rem 1.6rem; text-align: center; }
.form-success.is-on { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--green); margin: 0 auto 1rem; }

/* ---------- Trust / credential marquee ---------- */
.marquee { background: var(--ink); overflow: hidden; border-block: 1px solid var(--ink-line); }
.marquee__track { display: flex; gap: 3.5rem; align-items: center; width: max-content; padding-block: 1.1rem; animation: marquee 38s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.78); font-weight: var(--fw-semi); font-size: var(--fs-sm); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.marquee__track svg { width: 20px; height: 20px; color: var(--red-light); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Stat counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); color: var(--red); line-height: 1; }
.stat__label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 0.5rem; font-weight: var(--fw-semi); }
.section--ink .stat__label { color: var(--text-invert-mut); }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service cards ---------- */
.svc-card {
  background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; transition: transform var(--t), border-color var(--t), background var(--t);
  display: flex; flex-direction: column; gap: 0.9rem; height: 100%;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--red); }
.svc-card__icon { width: 56px; height: 56px; border-radius: var(--r); background: var(--red); display: grid; place-items: center; color: #fff; }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: var(--fs-h4); color: #fff; }
.svc-card p { color: var(--text-invert-mut); font-size: var(--fs-sm); flex: 1; }
.svc-card__link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--red-light); font-weight: var(--fw-bold); font-size: var(--fs-sm); }
.svc-card__link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* light variant for inner pages */
.svc-card--light { background: var(--white); border-color: var(--line); box-shadow: var(--shadow-card); }
.svc-card--light h3 { color: var(--ink); }
.svc-card--light p { color: var(--text-muted); }

/* ---------- Finish-type cards ---------- */
.finish-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-card); transition: transform var(--t), box-shadow var(--t); }
.finish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.finish-card__swatch { height: 150px; position: relative; }
.finish-card__swatch span { position: absolute; left: 1rem; bottom: 1rem; background: rgba(28,28,28,0.85); color: #fff; font-weight: var(--fw-bold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: var(--r-pill); }
.finish-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.finish-card__body p { color: var(--text-muted); font-size: var(--fs-sm); margin-top: 0.4rem; }

/* ---------- "Why us" split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.stamp { position: absolute; right: -18px; bottom: -18px; width: 132px; height: 132px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-red); padding: 1rem; }
.stamp b { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; }
.stamp span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.checklist { display: grid; gap: 1.3rem; margin-top: 1.8rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.checklist .tick { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--red-wash); color: var(--red); display: grid; place-items: center; }
.checklist .tick svg { width: 22px; height: 22px; }
.checklist h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.checklist p { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- Process timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; }
.step__num { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 1.05rem; width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; margin-bottom: 1.1rem; }
.step h4 { margin-bottom: 0.45rem; }
.step p { color: var(--text-muted); font-size: var(--fs-sm); }
.section--ink .step p { color: var(--text-invert-mut); }
.step:not(:last-child) .step__num::after { content: ""; position: absolute; top: 26px; left: 60px; right: -10px; height: 2px; background: var(--line); }
.section--ink .step:not(:last-child) .step__num::after { background: var(--ink-line); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem 0.9rem; color: #fff; font-weight: var(--fw-bold); font-size: var(--fs-sm); background: linear-gradient(transparent, rgba(12,12,13,0.85)); }

/* ---------- Mini trust badges ---------- */
.mini-trust { display: flex; flex-wrap: wrap; gap: 0.9rem 1.6rem; margin-top: 1.9rem; }
.mini-trust span { display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap; font-weight: var(--fw-semi); font-size: var(--fs-sm); color: var(--text-muted); }
.mini-trust svg { width: 19px; height: 19px; color: var(--red); flex: none; }

/* ---------- Before / after slider ---------- */
.ba { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); user-select: none; aspect-ratio: 16/10; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; transform: translateX(-50%); }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--red); box-shadow: var(--shadow); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M9 6 4 11l5 5M13 6l5 5-5 5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.ba__tag { position: absolute; bottom: 1rem; padding: 0.4rem 0.9rem; border-radius: var(--r-pill); background: rgba(17,17,17,0.78); color: #fff; font-size: 0.75rem; font-weight: var(--fw-bold); letter-spacing: 0.08em; text-transform: uppercase; }
.ba__tag.is-before { left: 1rem; } .ba__tag.is-after { right: 1rem; }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ---------- Us vs Them ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.versus__col { border-radius: var(--r-lg); padding: 2rem 1.8rem; }
.versus__col--them { background: var(--paper); border: 1px solid var(--line); }
.versus__col--us { background: var(--ink); color: #fff; }
.versus__col h3 { margin-bottom: 1.3rem; }
.versus__col--us h3 { color: #fff; }
.versus li { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); }
.versus__col--us li { border-color: var(--ink-line); color: rgba(255,255,255,0.88); }
.versus li svg { width: 20px; height: 20px; }
.versus .ic-no { color: #9aa0a6; } .versus .ic-yes { color: var(--red-light); }

/* ---------- Testimonials ---------- */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 1.05em; height: 1.05em; }
.t-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.g-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 0.5rem 1rem; box-shadow: var(--shadow-sm); }
.g-badge .stars { color: var(--gold); letter-spacing: 1px; }
.g-badge b { font-weight: var(--fw-bold); }
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.tcard .stars { color: var(--gold); letter-spacing: 2px; }
.tcard__quote { font-size: var(--fs-base); flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.tcard__av { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-weight: var(--fw-bold); }
.tcard__who b { display: block; } .tcard__who span { font-size: var(--fs-sm); color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.4rem 0.2rem; font-weight: var(--fw-bold); font-size: var(--fs-lg); color: var(--ink); }
.qa__q .pm { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; transition: var(--t); }
.qa__q .pm svg { width: 18px; height: 18px; transition: transform var(--t); }
.qa[aria-expanded="true"] .pm { background: var(--red); border-color: var(--red); color: #fff; }
.qa[aria-expanded="true"] .pm svg { transform: rotate(45deg); }
.qa__a { overflow: hidden; max-height: 0; transition: max-height var(--t); }
.qa__a p { padding: 0 0.2rem 1.4rem; color: var(--text-muted); max-width: 70ch; }

/* ---------- Service area ---------- */
.area-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-chip { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 0.55rem 1.1rem; font-weight: var(--fw-semi); font-size: var(--fs-sm); transition: var(--t-fast); }
.area-chip svg { width: 15px; height: 15px; color: var(--red); }
.area-chip:hover { border-color: var(--red); color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; isolation: isolate; text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, var(--red-dark), var(--red)); }
.cta-band__inner { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: var(--fs-lg); margin: 1rem auto 2rem; max-width: 52ch; }
.cta-band .btn--primary { background: #fff; color: var(--red); box-shadow: var(--shadow-lg); }
.cta-band .btn--primary:hover { background: var(--ink); color: #fff; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer (premium) ---------- */
.footer { position: relative; isolation: isolate; color: var(--text-invert-mut); overflow: hidden;
  background: linear-gradient(180deg, #161618 0%, #0c0c0e 100%); }
.footer::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"); background-size: 200px; }
.footer__glow { position: absolute; z-index: -1; top: -10%; right: -6%; width: 46vw; height: 46vw; pointer-events: none;
  background: radial-gradient(circle, rgba(192,39,45,0.22), transparent 62%); filter: blur(10px); }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.3fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  padding-block: clamp(3.5rem, 2.5rem + 3vw, 5.5rem); position: relative; }
.footer__brand { max-width: 360px; }
.footer__logo { height: 64px; width: auto; margin-bottom: 1.3rem; }
.footer__brand p { font-size: var(--fs-sm); line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.4rem 0; }
.footer__badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.45rem 0.8rem; border-radius: var(--r-pill); }
.footer__badge svg { width: 15px; height: 15px; color: var(--red-light); }
.footer h4 { color: #fff; font-size: 0.82rem; margin-bottom: 1.3rem; font-family: var(--font-head); font-weight: var(--fw-black);
  letter-spacing: 0.13em; text-transform: uppercase; position: relative; padding-bottom: 0.7rem; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; background: var(--red); border-radius: 3px; }
.footer a { transition: color var(--t-fast); }
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: 0.2rem; }
.footer__links a { display: inline-flex; align-items: center; gap: 0.6rem; font-size: var(--fs-sm); color: rgba(255,255,255,0.66); padding: 0.28rem 0; }
.footer__links a .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: 0; transform: translateX(-4px); transition: var(--t-fast); flex: none; }
.footer__links a:hover .dot { opacity: 1; transform: translateX(0); }
.footer__links a:hover { color: #fff; padding-left: 0.2rem; }
.footer__more { color: var(--red-light) !important; font-weight: var(--fw-bold); text-transform: uppercase; font-size: 0.74rem !important; letter-spacing: 0.05em; margin-top: 0.5rem; }
.footer__more svg { width: 14px; height: 14px; }
/* contact card */
.footer__contactcard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 1.6rem; }
.footer__phone { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.footer__phone .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-red); }
.footer__phone .ic svg { width: 20px; height: 20px; color: #fff; }
.footer__phone .txt { display: flex; flex-direction: column; line-height: 1.2; }
.footer__phone small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.footer__phone strong { font-family: var(--font-head); font-size: 1.3rem; font-weight: var(--fw-black); color: #fff; }
.footer__email { display: inline-flex; align-items: center; gap: 0.55rem; font-size: var(--fs-sm); color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.footer__email svg { width: 16px; height: 16px; color: var(--red-light); flex: none; }
.footer__hours { display: grid; gap: 0.45rem; padding: 1rem 0; margin-bottom: 1.2rem; border-block: 1px solid rgba(255,255,255,0.1); }
.footer__hour { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--fs-sm); color: rgba(255,255,255,0.6); }
.footer__hour strong { color: #fff; font-weight: var(--fw-semi); }
/* giant wordmark */
.footer__wordmark { font-family: var(--font-display); font-size: clamp(3.5rem, 4rem + 11vw, 16rem); line-height: 0.8;
  text-transform: uppercase; text-align: center; letter-spacing: 0.02em; white-space: nowrap; user-select: none; pointer-events: none;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.09); margin-top: 1rem; overflow: hidden; }
/* bottom bar */
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: var(--fs-sm); color: rgba(255,255,255,0.5); }
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.55); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: var(--t-fast); }
.footer__social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
@media (max-width: 1080px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } .footer__brand { grid-column: 1 / -1; max-width: none; } .footer__contactcard { grid-column: 1 / -1; } }
@media (max-width: 620px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__bottom { justify-content: center; text-align: center; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding: 0.6rem; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(17,17,17,0.1); }
.sticky-cta .btn { padding: 0.95rem 1rem; font-size: var(--fs-sm); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { position: relative; color: #fff; isolation: isolate; }
.page-banner__bg { position: absolute; inset: 0; z-index: -2; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(15,15,16,0.92), rgba(20,20,22,0.6)); }
.page-banner__inner { padding-block: clamp(3rem, 2rem + 5vw, 6rem); max-width: 760px; }
.page-banner h1 { color: #fff; margin-block: 1rem 0.8rem; }
.page-banner p { color: rgba(255,255,255,0.85); font-size: var(--fs-lg); }
.crumbs { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); }
.crumbs a:hover { color: #fff; } .crumbs span { color: var(--red-light); }

/* prose for inner page bodies */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.4rem; } .prose h3 { margin-top: 1.8rem; }
.prose ul { display: grid; gap: 0.6rem; }
.prose ul li { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; }
.prose ul li::before { content: ""; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--red-wash); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C0272D' stroke-width='3'%3E%3Cpath d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
