:root {
  --ink: #0D0E0F;
  --ink-soft: #37393C;
  --grey-700: #5C6167;
  --grey-500: #8A9096;
  --grey-300: #B6BBC0;
  --line: #E7E7E4;
  --line-strong: #DEDEDA;
  --line-dark: #26282B;
  --bg-cream: #F5F5F3;
  --bg-panel: #F1F1EF;
  --bg-hover: #FAFAF8;
  --white: #FFFFFF;
  --brand-red: #B8202E;
  --brand-red-dark: #931926;
  --brand-red-soft: #D84A55;
  --brand-gold: #E8B33D;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--grey-500); }
input, textarea, select, button { font-family: inherit; }
img { max-width: 100%; display: block; }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page { width: 100%; overflow-x: hidden; }

[data-reveal] { opacity: 0; }
[data-reveal].is-visible { animation: rise .95s cubic-bezier(.2,.7,.2,1) both; }

.wrap { max-width: 1560px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn-dark { background: var(--brand-red); color: #fff; }
.btn-dark:hover { background: var(--brand-red-dark); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #EDEDEA; color: var(--ink); }
.btn-outline { border: 1px solid rgba(255,255,255,0.45); color: #fff; background: none; }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-outline-dark { border: 1px solid var(--ink); color: var(--ink); background: none; }
.btn-arrow { display: inline-block; transition: transform .3s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Boxed buttons — hero only */
.btn-boxed-light {
  padding: 0;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-boxed-light:hover { background: #fff; color: var(--ink); }
.btn-box-label { display: flex; align-items: center; padding: 15px 22px; }
.btn-box-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 18px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  transition: background .3s ease, transform .3s ease;
}
.btn-boxed-light:hover .btn-box-arrow { background: var(--brand-red-dark); transform: translateX(2px); }

.btn-boxed-outline {
  padding: 15px 30px;
  font-size: 11px;
  background: none;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-boxed-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }
.btn-boxed-phone { display: inline-flex; align-items: center; gap: 10px; }

/* ---- Header ---- */
@font-face {
  font-family: "Helvetica Black";
  src: url("fonts/HelveticaBlackOriginal-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--brand-red);
  border-bottom: 1px solid var(--brand-red-dark);
}
.site-header-inner {
  max-width: 1560px; margin: 0 auto; padding: 0 clamp(18px, 3vw, 40px);
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { height: 30px; width: auto; display: block; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 5px; min-width: 0; }
.brand-name {
  font-family: "Helvetica Black", "Schibsted Grotesk", sans-serif;
  font-size: 17px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  color: var(--brand-gold);
}

@media (max-width: 480px) {
  .brand-mark { height: 24px; }
  .brand-name { font-size: 14px; }
}

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); padding-right: clamp(16px, 2vw, 30px); border-right: 1px solid rgba(255,255,255,0.28); }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  padding: 8px 14px; margin: 0 -14px;
  color: #fff;
  transition: background .3s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* Nav CTA — solid fill so it stands out against the red header */
.nav-cta {
  display: flex; align-items: center; height: 40px;
  padding: 0 22px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--brand-red);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.nav-cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.4); background: none;
  cursor: pointer; color: #fff;
}
.menu-toggle svg { display: block; }

.menu-panel {
  display: none; flex-direction: column;
  border-top: 1px solid var(--line); background: var(--bg-cream);
  padding: 14px clamp(18px, 3vw, 40px) 8px;
}
.menu-panel a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.menu-panel a:hover { color: var(--brand-red); }
.menu-panel a:last-child { border-bottom: 0; }
.menu-panel.is-open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .site-nav .nav-cta { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative; height: 82vh; min-height: 560px; max-height: 820px; width: 100%; background: var(--bg-panel);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1) saturate(0.88) brightness(0.94); }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(8,9,10,0.72) 0%, rgba(8,9,10,0.42) 38%, rgba(8,9,10,0.02) 68%, rgba(8,9,10,0) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 3px 3px;
}
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; pointer-events: none;
}
.hero-inner {
  max-width: 1560px; width: 100%; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 6vw, 68px);
  display: flex; flex-direction: column; gap: 28px;
}
.hero h1 { margin: 0; font-size: clamp(40px, 6vw, 92px); line-height: 0.94; font-weight: 700; letter-spacing: -0.035em; color: #fff; max-width: 15ch; }
.hero p { margin: 0; max-width: 56ch; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.82); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; pointer-events: auto; }
.hero-trust-row { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin-top: 4px; pointer-events: auto; }
.hero-reviews {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  text-decoration: none; width: fit-content; pointer-events: auto;
  transition: background .25s ease, border-color .25s ease;
}
.hero-reviews:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.hero-reviews-icon { flex-shrink: 0; display: flex; }
.hero-social { display: flex; align-items: stretch; gap: 10px; }
.hero-social-link {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.hero-social-link:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-reviews-body { display: flex; flex-direction: column; gap: 3px; }
.hero-reviews-top { display: flex; align-items: center; gap: 8px; }
.hero-reviews-stars { font-size: 16px; letter-spacing: 2px; color: var(--brand-gold); line-height: 1; }
.hero-reviews-score { font-size: 16px; font-weight: 700; color: #fff; line-height: 1; }
.hero-reviews-count { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1; }

/* ---- Section shells ---- */
.section { padding: clamp(72px, 8vw, 130px) clamp(20px, 4vw, 40px); background: var(--bg-cream); }
.trust-bar { background: var(--ink); border-top: 1px solid var(--line-dark); }
.trust-bar-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px clamp(18px, 3vw, 36px);
}
.trust-bar-inner span {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: flex; align-items: center; gap: clamp(18px, 3vw, 36px);
}
.trust-bar-inner span::before {
  content: ""; flex-shrink: 0;
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.3);
}
.trust-bar-inner span:first-child::before { display: none; }

.trust-bar-viewport { overflow: hidden; }
.trust-bar-track { display: flex; }
.trust-bar-track .trust-bar-inner[aria-hidden] { display: none; }

@media (max-width: 640px) {
  /* One flat gap value used at both the track level (between the two copies) and the
     inner level (between items within a copy) — so the loop seam is spaced identically
     to every other gap and the animation reads as perfectly continuous, no hitch.
     Every span (including the very first) gets an identical leading dot — no :first-child
     / :last-child exceptions anywhere — so the two copies stay pixel-identical in width. */
  .trust-bar-track {
    width: max-content;
    gap: 20px;
    padding: 16px 0 16px 20px;
    animation: trustBarScroll 20s linear infinite;
  }
  .trust-bar-track .trust-bar-inner[aria-hidden] { display: flex; }
  .trust-bar-inner {
    flex-wrap: nowrap; flex-shrink: 0; justify-content: flex-start;
    padding: 0; gap: 20px;
  }
  .trust-bar-inner span {
    display: flex; align-items: center; gap: 20px;
    padding-right: 0;
  }
  .trust-bar-inner span::after { display: none; }
  .trust-bar-inner span::before {
    content: ""; flex-shrink: 0;
    width: 1px; height: 12px;
    background: rgba(255,255,255,0.3);
  }
  /* Unlike desktop, every item keeps its leading divider here (including the first) —
     the marquee has no true "first" item once looping, so hiding it would show up as a
     missing divider at the seam every time the track resets. */
  .trust-bar-inner span:first-child::before { display: block; }
  @media (prefers-reduced-motion: reduce) {
    .trust-bar-track { animation: none; }
  }
}

@keyframes trustBarScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-white { background: #fff; padding: clamp(76px, 9vw, 140px) clamp(20px, 4vw, 40px); }

.reviews-wrap { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.reviews-score-row { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.reviews-score-big { font-size: clamp(56px, 8vw, 96px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.reviews-score-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.reviews-stars { font-size: 22px; letter-spacing: 3px; color: var(--brand-gold); line-height: 1; }
.reviews-count { font-size: 14px; font-weight: 600; color: var(--grey-700); }
.reviews-head p { margin: 0; font-size: 17px; color: var(--grey-700); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reviews-all-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 36px auto 0; width: fit-content;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-red);
}
.reviews-all-link:hover .btn-arrow { transform: translateX(3px); }
.review-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 40px 26px 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-cream);
}
.review-quote-mark {
  position: absolute; top: 8px; left: 24px;
  font-size: 48px; line-height: 1; font-weight: 700; font-family: Georgia, serif; color: var(--line-strong);
}
.review-card .review-stars { font-size: 15px; letter-spacing: 2px; color: var(--brand-gold); }
.review-quote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--grey-700); }
.review-author { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); }
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-score-row { flex-direction: column; }
  .reviews-score-meta { align-items: center; }
}
.section-dark { background: var(--ink); color: #fff; padding: clamp(76px, 9vw, 150px) clamp(20px, 4vw, 40px); }
.section-red { background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red) 65%); color: #fff; padding: clamp(76px, 9vw, 140px) clamp(20px, 4vw, 40px); }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand-red); }
.section-dark .eyebrow, .hero .eyebrow { color: var(--brand-red-soft); }
.section-red .eyebrow { color: rgba(255,255,255,0.75); }

/* ---- Non-fault / Accident Management ---- */
.accident-grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 5vw, 96px); align-items: start;
}
.accident-copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.accident-copy h2 { margin: 0; font-size: clamp(30px, 3vw, 46px); line-height: 1.05; font-weight: 600; letter-spacing: -0.02em; max-width: 16ch; }
.accident-copy p { margin: 0; max-width: 46ch; font-size: 16.5px; line-height: 1.65; color: var(--grey-300); }
.accident-cta { margin-top: 8px; }

.accident-cards { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.12); border-radius: 10px; overflow: hidden; }
.accident-card { display: flex; align-items: flex-start; gap: 18px; padding: 26px 24px; background: #141517; border-left: 3px solid var(--brand-red); }
.accident-step { flex-shrink: 0; font-size: 15px; font-weight: 700; letter-spacing: 0.02em; color: var(--brand-red-soft); font-variant-numeric: tabular-nums; margin-top: 1px; }
.accident-card-body .label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.accident-card-body p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--grey-300); }

/* ---- About intro ---- */
.about-intro-wrap {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(48px, 5vw, 96px); align-items: center;
}
@media (min-width: 900px) { .about-intro-wrap { grid-template-columns: 1fr 1.15fr; } }

.about-intro-copy { display: flex; flex-direction: column; gap: 24px; }
.about-intro-copy h2 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; max-width: 18ch; color: #fff; }
.about-intro-copy p { margin: 0; max-width: 54ch; font-size: 17.5px; line-height: 1.75; color: rgba(255,255,255,0.82); }

.about-badge {
  display: inline-flex; align-items: center; gap: 9px; width: fit-content;
  padding: 9px 18px 9px 14px; border: 1px solid rgba(255,255,255,0.35); border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
}
.about-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; flex-shrink: 0; }

.about-intro-map { display: flex; flex-direction: column; gap: 22px; }
.about-map-label { margin: 0; font-size: clamp(20px, 1.8vw, 26px); font-weight: 700; letter-spacing: -0.02em; color: #fff; }

.about-map-frame {
  position: relative; min-height: 320px; max-width: 480px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12), 0 40px 80px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.15);
}
.about-map-frame iframe {
  position: absolute; left: 0; right: 0; top: -38px; width: 100%; height: calc(100% + 38px); border: 0;
}

.about-map-card {
  position: absolute; left: 14px; top: 14px;
  background: #fff; border-radius: 999px; padding: 4px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.about-map-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-red);
  text-decoration: none;
}
.about-map-card-link .btn-arrow { transition: transform .25s ease; }
.about-map-card-link:hover .btn-arrow { transform: translateX(3px); }

/* ---- Services ---- */
.services-wrap { max-width: 1560px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.services-head { display: flex; flex-direction: column; }

.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-item {
  background: #fff; padding: 44px 44px 42px; min-height: 200px;
  border-left: 3px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.service-item:hover { background: var(--bg-hover); border-left-color: var(--brand-red); }
.service-item summary {
  position: relative; list-style: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 12px; padding-right: 40px;
}
.service-item summary::-webkit-details-marker { display: none; }
.service-title { font-size: 27px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.service-desc { margin-top: 4px; font-size: 16px; line-height: 1.6; color: var(--grey-700); }

.service-toggle {
  position: absolute; top: 2px; right: 0; width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.service-toggle::before, .service-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
}
.service-toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .35s ease; }
.service-item:hover .service-toggle { border-color: var(--brand-red); }
.service-item[open] .service-toggle { transform: rotate(45deg); background: var(--brand-red); border-color: var(--brand-red); }
.service-item[open] .service-toggle::before, .service-item[open] .service-toggle::after { background: #fff; }
.service-item[open] .service-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.service-item .service-detail { margin: 22px 0 0; overflow: hidden; transition: height .35s ease; }
.service-item .service-detail p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--grey-700); }
.service-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-red); }
.service-cta:hover { color: var(--brand-red-dark); }
.service-cta .btn-arrow { font-size: 13px; }

/* ---- Why us ---- */
.why-wrap { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.why-head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.why-head h2 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.02; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.why-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.why-mini-item { display: flex; flex-direction: column; gap: 14px; }
.why-mini-num { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--grey-500); }
.why-mini-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; }
.why-mini-item p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--grey-700); }
@media (max-width: 980px) { .why-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (max-width: 560px) { .why-mini-grid { grid-template-columns: 1fr; } }

/* ---- Vehicle matrix ---- */
.matrix-wrap { max-width: 1560px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.matrix-head {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 5vw, 96px); align-items: end;
}
.matrix-head-left { display: flex; flex-direction: column; gap: 24px; }
.matrix-head-left h2 { margin: 0; font-size: clamp(40px, 5vw, 84px); line-height: 0.98; font-weight: 700; letter-spacing: -0.04em; }
.matrix-head-right { display: flex; flex-direction: column; gap: 22px; }
.matrix-head-right .lead { margin: 0; font-size: 20px; line-height: 1.55; color: #fff; max-width: 40ch; }
.matrix-head-right .sub { margin: 0; font-size: 17px; line-height: 1.7; color: #9AA0A6; max-width: 46ch; }

.matrix-note { padding-top: 0; }
.matrix-note p {
  margin: 0; text-align: left; font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.4; font-weight: 500; letter-spacing: -0.02em; color: #fff; white-space: nowrap;
}
.matrix-note .muted { color: var(--grey-500); }

@media (max-width: 720px) {
  .matrix-note p { white-space: normal; }
}

/* ---- Work / compare ---- */
.work-wrap { max-width: 1560px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.work-head {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(40px, 5vw, 96px); align-items: end;
}
.work-head h2 { margin: 0; font-size: clamp(40px, 5vw, 84px); line-height: 0.98; font-weight: 700; letter-spacing: -0.04em; }
.work-head p { margin: 0; max-width: 44ch; font-size: 17px; line-height: 1.65; color: var(--grey-700); }

.compare-block { display: flex; flex-direction: column; gap: 26px; }
.compare-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); padding-bottom: 18px; flex-wrap: wrap; }
.compare-tab {
  border: 0; background: none; padding: 0; cursor: pointer;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-300);
}
.compare-tab.is-active { color: var(--brand-red); }
.compare-tabs-arrow { display: none; }

@media (max-width: 720px) {
  .compare-tabs-wrap { position: relative; }
  .compare-tabs-wrap::before, .compare-tabs-wrap::after {
    content: ""; position: absolute; top: 0; bottom: 14px; width: 36px; z-index: 1;
    pointer-events: none; transition: opacity .2s ease;
  }
  .compare-tabs-wrap::before { left: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); opacity: 0; }
  .compare-tabs-wrap::after { right: 0; background: linear-gradient(to left, #fff, rgba(255,255,255,0)); opacity: 1; }
  .compare-tabs-wrap.is-scrolled::before { opacity: 1; }
  .compare-tabs-wrap.is-end::after { opacity: 0; }

  .compare-tabs-arrow {
    position: absolute; top: 0; bottom: 14px; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; margin: auto 0;
    border-radius: 50%; background: #fff;
    color: var(--grey-300); pointer-events: none;
    transition: opacity .2s ease;
  }
  .compare-tabs-arrow.right { right: 0; box-shadow: 0 0 8px 6px #fff; animation: nudge-right 1.6s ease-in-out infinite; }
  .compare-tabs-arrow.left { left: 0; box-shadow: 0 0 8px 6px #fff; animation: nudge-left 1.6s ease-in-out infinite; opacity: 0; }
  .compare-tabs-wrap.is-end .compare-tabs-arrow.right { opacity: 0; }
  .compare-tabs-wrap.is-scrolled .compare-tabs-arrow.left { opacity: 1; }

  @keyframes nudge-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
  }
  @keyframes nudge-left {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
  }

  .compare-tabs {
    flex-wrap: nowrap; overflow-x: auto; gap: 10px; padding-bottom: 14px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .compare-tabs::-webkit-scrollbar { display: none; }
  .compare-tab {
    flex: 0 0 auto; white-space: nowrap;
    padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px;
    font-size: 11px;
  }
  .compare-tab.is-active { color: #fff; background: var(--brand-red); border-color: var(--brand-red); }
}

.compare-frame {
  position: relative; width: 100%; height: 66vh; min-height: 440px; background: var(--bg-panel);
  cursor: ew-resize; touch-action: none; overflow: hidden; user-select: none;
}
.compare-pane { position: absolute; inset: 0; display: none; }
.compare-pane.is-active { display: block; }
.compare-pane img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-drag: none; }
.compare-before-wrap { position: absolute; top: 0; bottom: 0; left: 0; overflow: hidden; }
.compare-before-frame { position: absolute; top: 0; left: 0; height: 100%; display: none; }
.compare-before-frame.is-active { display: block; }
.compare-before-frame img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-drag: none; }
.compare-label {
  position: absolute; bottom: 22px; padding: 9px 16px; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; pointer-events: none;
}
.compare-label.before { left: 24px; background: rgba(13,14,15,0.78); color: #fff; }
.compare-label.after { right: 24px; background: rgba(255,255,255,0.9); color: var(--ink); }
.compare-handle { position: absolute; top: 0; bottom: 0; width: 1px; background: #fff; pointer-events: none; }
.compare-handle .grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.9); background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 13px; letter-spacing: 0.1em;
}
.project-label { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-500); }

.compare-expand {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: rgba(13,14,15,0.55); border: 1px solid rgba(255,255,255,0.4); color: #fff;
  cursor: pointer; transition: background .2s ease, border-color .2s ease;
}
.compare-expand:hover { background: rgba(13,14,15,0.8); border-color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 20px; }
.gallery-item { display: flex; flex-direction: column; gap: 14px; }
.gallery-pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 2px; height: 340px; }
.gallery-pair img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-trigger { cursor: zoom-in; }

/* ---- Demo notice modal ---- */
.demo-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  background: rgba(6,7,8,0.72); padding: 24px;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.demo-modal-overlay.is-open { display: flex; animation: fadein .3s ease both; }
.demo-modal {
  position: relative;
  width: 100%; max-width: 460px; background: var(--ink); color: #fff;
  border: 1px solid var(--line-dark); border-radius: 4px;
  padding: clamp(40px, 5vw, 52px); display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  animation: rise .5s cubic-bezier(.2,.7,.2,1) both;
}
.demo-modal .eyebrow { color: var(--brand-red-soft); }
.demo-modal h2 { margin: 0; font-size: clamp(24px, 3vw, 32px); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
.demo-modal p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--grey-300); max-width: 40ch; }
.demo-modal-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; margin-top: 8px; }
.demo-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25); background: none; color: #fff;
  cursor: pointer; border-radius: 50%; transition: background .25s ease, border-color .25s ease;
}
.demo-modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(6,7,8,0.92); padding: 60px 24px;
}
.lightbox.is-open { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.3); color: #fff;
  cursor: pointer; transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-content { max-width: min(1200px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-pair { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; max-height: 80vh; }
.lightbox-pair figure { margin: 0; position: relative; flex: 1; min-width: 260px; }
.lightbox-pair img { width: 100%; height: 100%; max-height: 80vh; object-fit: contain; background: #101113; }
.lightbox-pair figcaption {
  position: absolute; top: 12px; left: 12px; padding: 6px 12px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(13,14,15,0.7); color: #fff;
}
.lightbox-caption { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-300); text-align: center; }

@media (max-width: 520px) {
  .gallery-pair { grid-template-columns: 1fr 1fr; height: 200px; }
}
.gallery-item .caption { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-500); }

/* ---- Quote form ---- */
.quote-wrap {
  max-width: 1560px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(40px, 5vw, 96px); align-items: start;
}
.quote-intro { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 130px; }
.quote-intro h2 { margin: 0; font-size: clamp(34px, 3.8vw, 62px); line-height: 1; font-weight: 700; letter-spacing: -0.035em; max-width: 20ch; }
.quote-intro p { margin: 0; font-size: 18px; line-height: 1.65; color: var(--grey-700); max-width: 44ch; }
.quote-call { display: flex; flex-direction: column; gap: 18px; padding-top: 22px; border-top: 1px solid var(--line); }
.quote-call .label { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 8px; }
.quote-call-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quote-call-action { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border: 1px solid var(--line); background: #fff; text-decoration: none; color: var(--ink); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; cursor: pointer; transition: all 0.2s ease; }
.quote-call-action:hover { border-color: var(--ink); background: var(--bg-panel); }
.quote-call-action svg { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; background: none; }
.quote-call-action.whatsapp { border-color: #25D366; color: #25D366; }
.quote-call-action.whatsapp svg { stroke: #25D366; }
.quote-call-action.whatsapp:hover { background: rgba(37, 211, 102, 0.08); border-color: #25D366; }

.stage-indicator { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.stage-dot { width: 28px; height: 2px; background: var(--line-strong); transition: background 0.3s ease; }
.stage-dot.active { background: var(--brand-red); }

.quote-form-staged { display: flex; flex-direction: column; gap: 20px; }
.form-stage {
  display: flex; flex-direction: column; gap: 14px; padding: 36px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 48px -32px rgba(13,14,15,0.16);
}
.form-stage.hidden { display: none; }
.stage-number {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.stage-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brand-red); }
.stage-title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }

.field { background: var(--bg-cream); padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.field .label { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; text-transform: none; color: var(--ink); }
.required-mark { color: var(--brand-red); }
.field input, .field textarea, .field select {
  border: 0; outline: none; font-size: 16px; color: var(--grey-700); background: none; padding: 0; width: 100%; padding-bottom: 8px; border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s ease; font-family: inherit;
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-500); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--brand-red); }
.field select {
  appearance: none; cursor: pointer; padding-right: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%238A9096' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; background-size: 13px;
}
.field textarea { resize: vertical; font-family: inherit; }
.field-charcount { align-self: flex-end; font-size: 11px; color: var(--grey-500); margin-top: -2px; }
.field-charcount.is-near-limit { color: var(--brand-red); }
.field-error { font-size: 11px; color: var(--brand-red); display: none; margin-top: 2px; }
.field.error .field-error { display: block; }
.field.error input, .field.error textarea, .field.error select { border-bottom-color: var(--brand-red); }

.field-upload {
  grid-column: initial; padding: 24px 22px; display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 20px; cursor: pointer;
}
.field-upload .copy { display: flex; flex-direction: column; gap: 6px; }
.field-upload .file-btn {
  flex-shrink: 0; padding: 15px 26px; border: 1px solid var(--ink); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; background: none; cursor: pointer; white-space: nowrap;
  transition: all .25s ease;
}
.field-upload:hover .file-btn { background: var(--ink); color: #fff; }
.field-upload input[type="file"] { display: none; }
.field-upload .status { font-size: 15px; color: var(--grey-700); }

.form-actions { display: flex; gap: 12px; margin-top: 10px; }
.btn-back, .btn-next, .quote-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 60px; padding: 0 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: all .25s ease;
}
.btn-back { flex: 1; border: 1px solid var(--ink); background: none; color: var(--ink); }
.btn-back:hover { background: var(--ink); color: #fff; }
.btn-next, .quote-submit { flex: 1.7; border: 0; background: var(--brand-red); color: #fff; }
.btn-next:hover, .quote-submit:hover { background: var(--brand-red-dark); }

.quote-success {
  padding: 70px 48px; background: var(--bg-cream); display: flex; flex-direction: column; gap: 16px;
  animation: fadein .5s ease both;
}
.quote-success .label { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-500); }
.quote-success p { margin: 0; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; max-width: 32ch; }
.quote-success button {
  align-self: flex-start; margin-top: 14px; border: 1px solid var(--ink); background: none;
  padding: 16px 32px; cursor: pointer; font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.hidden { display: none !important; }

@media (max-width: 720px) {
  .quote-wrap { grid-template-columns: 1fr; }
  .quote-intro { position: static; }
}

/* ---- 404 ---- */
.notfound {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 100vh;
  background: var(--ink); color: #fff;
}
.notfound-hatch {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 26px);
}
.notfound-ghost {
  position: absolute; top: 50%; right: clamp(-120px, -3vw, -10px); z-index: 0;
  transform: translateY(-50%); pointer-events: none; user-select: none;
  font-family: "Helvetica Black", "Schibsted Grotesk", sans-serif;
  font-size: clamp(300px, 42vw, 720px); font-weight: 900; line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, var(--ink) 0%, var(--ink) 30%, var(--brand-red-dark) 52%, var(--brand-red) 68%, var(--brand-gold) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 130px rgba(232,179,61,0.22));
}

.notfound-content {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 600px;
  padding: clamp(150px, 20vw, 210px) clamp(20px, 4vw, 40px) clamp(80px, 9vw, 120px);
}

.notfound-content .eyebrow { color: var(--brand-red-soft); margin-bottom: 18px; }
.notfound-content h1 {
  margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.05; font-weight: 700;
  letter-spacing: -0.03em; color: #fff; max-width: 14ch;
}
.notfound-content p { margin: 20px 0 0; font-size: 17px; line-height: 1.65; color: var(--grey-300); max-width: 42ch; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.notfound-address { margin: 30px 0 0 !important; font-size: 13px !important; color: var(--grey-500) !important; }

.notfound-footer { position: relative; z-index: 1; border-top-color: var(--line-dark); }

@media (max-width: 720px) {
  .notfound-ghost {
    top: 56%; right: 50%; transform: translate(50%, -50%);
    font-size: clamp(160px, 62vw, 280px); opacity: 0.3;
  }
  .notfound-content { padding-left: clamp(18px, 4vw, 24px); padding-right: clamp(18px, 4vw, 24px); }
}

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(40px, 4vw, 56px); align-items: stretch; max-width: 1560px; margin: 0 auto; padding: clamp(72px, 9vw, 130px) clamp(20px, 4vw, 40px); }

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-copy { display: flex; flex-direction: column; gap: 18px; }
.contact-copy-head { display: flex; flex-direction: column; gap: 14px; }
.contact-copy-head h2 { margin: 0; font-size: clamp(30px, 3vw, 50px); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; }
.contact-tagline { font-size: 14.5px; color: var(--grey-300); }
.contact-rating { display: flex; align-items: center; gap: 8px; }
.contact-rating-stars { font-size: 14px; letter-spacing: 2px; color: var(--brand-gold); line-height: 1; }
.contact-rating-score { font-size: 14px; font-weight: 700; color: #fff; }
.contact-rating-label { font-size: 13px; color: var(--grey-300); }

.contact-info-card { background: var(--ink-soft); border: 1px solid var(--line-dark); border-radius: 16px; padding: clamp(32px, 4vw, 44px); display: flex; flex-direction: column; gap: 14px; min-height: 360px; }
.contact-info-card > .contact-info-label { display: block; margin-bottom: 8px; font-size: 13px; letter-spacing: 0.16em; }

.contact-info-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-row.compact { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); gap: 12px; }
.contact-info-row.compact:first-of-type { border-top: none; padding-top: 0; }
.contact-info-icon { color: var(--brand-red); flex-shrink: 0; margin-top: 2px; }
.contact-info-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.contact-info-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey-500); }
.contact-info-value { font-size: 15px; line-height: 1.5; color: #fff; }
.contact-info-value a { color: #fff; text-decoration: none; transition: color 0.2s ease; }
.contact-info-value a:hover { color: var(--brand-red-soft); }

.contact-hours-table { display: flex; flex-direction: column; }
.contact-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 14px; line-height: 1.5; }
.contact-hours-row:first-child { border-top: none; padding-top: 0; }
.contact-hours-row .day { color: #fff; font-weight: 500; }
.contact-hours-row .time { color: var(--grey-300); font-size: 13px; }
.contact-hours-row .time.closed { color: var(--grey-500); }
.contact-hours-row.is-today .day { color: var(--brand-red); font-weight: 600; }

.contact-map { position: relative; min-height: 320px; border-radius: 16px; overflow: hidden; }

.contact-map-frame { position: relative; width: 100%; height: 100%; min-height: 360px; border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.12), 0 40px 80px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.08); }
.contact-map-frame iframe { position: absolute; left: 0; right: 0; top: -38px; width: 100%; height: calc(100% + 38px); border: 0; }

.contact-map-card { position: absolute; left: 14px; top: 14px; background: #fff; border-radius: 999px; padding: 4px; box-shadow: 0 14px 32px rgba(0,0,0,0.28); }
.contact-map-card-link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-red); text-decoration: none; }
.contact-map-card-link .btn-arrow { transition: transform .25s ease; }
.contact-map-card-link:hover .btn-arrow { transform: translateX(3px); }

.footer-bar {
  border-top: 1px solid var(--line-dark); padding: 34px clamp(20px, 4vw, 40px);
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.footer-bar .copyright { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-500); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-500); }

/* ---- Mobile CTA bar ---- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 1px; background: var(--line-dark);
}
.mobile-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  text-align: center; padding: 18px 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-cta a svg { flex-shrink: 0; stroke: currentColor; }
.mobile-cta .quote-link { background: var(--brand-red); color: #fff; }
.mobile-cta .call-link { background: #fff; color: var(--ink); }
.mobile-cta .whatsapp-link { background: #fff; color: #25D366; }

@media (max-width: 900px) {
  .mobile-cta { display: flex; padding-bottom: env(safe-area-inset-bottom, 0px); }
  body { padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
  .lightbox { padding-bottom: calc(60px + 52px + env(safe-area-inset-bottom, 0px)); }
}
