/* ============================================================
   S Quinlan Roofing — styles.css
   Industrial / dark / red-accent tradesman theme
   InveraWebDesigns
   ============================================================ */

:root {
  color-scheme: dark;

  /* Brand */
  --brand-primary: #E8232A;
  --brand-primary-hi: #ff3b41;
  --brand-primary-dk: #b3151b;
  --silver: #C8CDD2;
  --silver-dk: #8b9299;

  /* Dark surfaces */
  --black: #0D0D0D;
  --black-2: #101215;
  --black-surface: #131619;
  --black-card: #171b1f;
  --black-card-hi: #1d2228;
  --black-border: #282e35;

  /* Light band */
  --off-white: #F5F6F7;
  --off-white-2: #eceef1;
  --ink: #0e1114;
  --ink-soft: #454c54;

  /* Text */
  --text: #eef0f2;
  --text-dim: #b7bdc4;
  --grey-text: #949ba3;

  /* Review sources (fixed, non-brand) */
  --review-google: #4285F4;
  --review-facebook: #1877F2;
  --review-yell: #FFDD00;

  /* WhatsApp */
  --whatsapp: #25D366;

  /* Shape / motion */
  --radius: 4px;
  --radius-lg: 10px;
  --nav-h: 72px;
  --topbar-h: 38px;
  --maxw: 1200px;
  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --ease: cubic-bezier(0.16, 0.84, 0.36, 1);

  /* Type */
  --font-head: "Helvetica Neue", "Arial Narrow", Helvetica, Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; touch-action: manipulation; }
section[id] { scroll-margin-top: calc(var(--nav-h) + var(--topbar-h) + 12px); }
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0 0 0.4em;
  font-stretch: condensed;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  color: var(--brand-primary-hi);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--brand-primary);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--dark { background: var(--black); }
.section--surface { background: var(--black-surface); }
.section--light { background: var(--off-white); color: var(--ink); }
.section--light h1, .section--light h2, .section--light h3 { color: var(--ink); }
.section--light p { color: var(--ink-soft); }

.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--text-dim); }
.section--light .lead { color: var(--ink-soft); }

/* diagonal hazard rule (industrial motif) */
.hazard {
  height: 10px;
  background: repeating-linear-gradient(-45deg,
    var(--brand-primary) 0 18px,
    var(--black) 18px 36px);
  opacity: 0.9;
}

/* ============================================================
   NAV
   ============================================================ */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  z-index: 2000;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 1001;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-primary);
  padding-top: max(0px, env(safe-area-inset-top));
}
.top-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}
.top-bar__emergency {
  font-family: var(--font-head);
  text-transform: uppercase; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.03em;
  color: #fff;
}
.top-bar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.4); }
.top-bar__call {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  text-transform: uppercase; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.03em;
  color: #fff;
}
.top-bar__call svg { width: 14px; height: 14px; }
.top-bar__call:hover { color: rgba(255,255,255,0.8); }

.nav {
  position: fixed;
  top: calc(var(--topbar-h) - 1px); left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--black-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav__inner {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; border-radius: 6px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800; text-transform: uppercase;
  font-size: 1.15rem; letter-spacing: -0.01em;
}
.brand__name b { color: var(--brand-primary); }
.brand__sub {
  font-size: 0.62rem; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--silver-dk);
  margin-top: 3px;
}

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--brand-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: #fff; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-primary);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  text-transform: uppercase; font-weight: 800;
  letter-spacing: 0.02em; font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav__cta:hover { background: var(--brand-primary-hi); transform: translateY(-1px); }
.nav__cta svg { width: 17px; height: 17px; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
}
.nav__toggle span {
  width: 22px; height: 2px; background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase; font-weight: 800;
  letter-spacing: 0.02em; font-size: 1rem;
  padding: 15px 26px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--wa { background: var(--whatsapp); color: #04270f; box-shadow: 0 10px 26px rgba(37,211,102,0.28); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,0.4); }
.btn--red { background: var(--brand-primary); color: #fff; box-shadow: 0 10px 26px rgba(232,35,42,0.3); }
.btn--red:hover { transform: translateY(-2px); background: var(--brand-primary-hi); }
.btn--ghost { border-color: var(--black-border); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--silver); color: #fff; transform: translateY(-2px); }
.section--light .btn--ghost { border-color: #cfd4d9; color: var(--ink); background: #fff; }
.section--light .btn--ghost:hover { border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--topbar-h) + 40px) 0 70px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.82) 42%, rgba(8,8,8,0.45) 100%),
    linear-gradient(0deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.1) 55%);
}
.hero__glow {
  position: absolute; z-index: 1;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -14vw; top: 8%;
  background: radial-gradient(circle, rgba(232,35,42,0.22), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--brand-primary); display: block; }
.hero__tag {
  font-size: 1.1rem; color: var(--text); font-weight: 500;
  line-height: 1.5; max-width: 620px; margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero__cta { margin-bottom: 40px; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__cta .btn { padding: 11px 18px; font-size: 0.82rem; }
.hero__cta .btn svg { width: 15px; height: 15px; }
.hero__cta .btn--wa { padding: 9px 16px; font-size: 0.78rem; }
.hero__cta .btn--wa svg { width: 14px; height: 14px; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-left: 1px solid var(--black-border);
}
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 20px; height: 20px; color: var(--brand-primary-hi); flex-shrink: 0; }
.trust-item__text { display: flex; flex-direction: column; line-height: 1.35; }
.trust-item__text strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1rem; color: #fff;
}
.trust-item__text span { font-size: 0.8rem; color: var(--text-dim); }

/* stars */
.stars { color: var(--brand-primary-hi); letter-spacing: 2px; font-size: 1rem; }
.stars--gold { color: #ffb300; }

/* ============================================================
   MARQUEE / SERVICE STRIP
   ============================================================ */
.ticker {
  background: var(--brand-primary);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,0.2);
}
.ticker__track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker__track span {
  font-family: var(--font-head);
  text-transform: uppercase; font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.08em;
  padding: 13px 26px;
  display: inline-flex; align-items: center; gap: 26px;
  white-space: nowrap;
}
.ticker__track span::after { content: "◆"; font-size: 0.6rem; opacity: 0.7; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.svc-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px 30px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.section--light .svc-card { background: #fff; border-color: #e2e5e9; box-shadow: 0 2px 10px rgba(20,25,30,0.04); }
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--brand-primary);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
.section--light .svc-card:hover { border-color: var(--brand-primary); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.9rem; color: var(--brand-primary);
  letter-spacing: 0.1em; margin-bottom: 16px; display: block;
}
.svc-card__icon {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,35,42,0.12);
  border: 1px solid rgba(232,35,42,0.25);
  margin-bottom: 18px;
}
.svc-card__icon svg { width: 27px; height: 27px; color: var(--brand-primary-hi); }
.svc-card h3 { margin-bottom: 12px; }
.section--light .svc-card h3 { color: var(--ink); }
.svc-card p { font-size: 0.96rem; color: var(--text-dim); margin-bottom: 16px; }
.section--light .svc-card p { color: var(--ink-soft); }
.svc-card__price {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); text-transform: uppercase;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--brand-primary-hi);
}
.svc-card__price svg { width: 15px; height: 15px; }

/* full service detail blocks (services.html) */
.svc-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--black-border);
  align-items: start;
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail__badge {
  width: 64px; height: 64px; border-radius: 12px;
  background: rgba(232,35,42,0.1);
  border: 1px solid rgba(232,35,42,0.28);
  display: flex; align-items: center; justify-content: center;
}
.svc-detail__badge svg { width: 32px; height: 32px; color: var(--brand-primary-hi); }
.svc-detail h3 { font-size: 1.55rem; margin-bottom: 10px; }
.svc-detail p { color: var(--text-dim); margin-bottom: 14px; }

/* ============================================================
   ABOUT / SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  aspect-ratio: 4/3; object-fit: cover;
}
.split__media--logo img { object-fit: contain; background: #000; padding: 40px; }
.split__badge {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--brand-primary); color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 24px; box-shadow: var(--shadow);
  text-align: center;
}
.split__badge b {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1; display: block;
}
.split__badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--text-dim); }
.section--light .checklist li { color: var(--ink-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--brand-primary-hi); flex-shrink: 0; margin-top: 2px; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2px; background: var(--black-border); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--black-card); padding: 26px 20px; text-align: center; }
.section--light .stat { background: #fff; }
.stat b {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.6rem; color: var(--brand-primary); line-height: 1; display: block;
}
.stat span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey-text); margin-top: 8px; display: block; }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.gal-tab {
  font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.04em;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--black-border); color: var(--text-dim);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.section--light .gal-tab { border-color: #d3d7dc; color: var(--ink-soft); }
.gal-tab:hover { color: #fff; border-color: var(--silver); }
.section--light .gal-tab:hover { color: var(--ink); border-color: var(--ink); }
.gal-tab.active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }

.gal-carousel { position: relative; display: flex; align-items: center; gap: 14px; }
.gal-track {
  display: flex; gap: 14px;
  flex: 1 1 0; min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gal-track::-webkit-scrollbar { display: none; }
.gal-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.gal-arrow:hover { background: var(--brand-primary); border-color: var(--brand-primary); }
.gal-arrow svg { width: 22px; height: 22px; }
.gal-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.gal-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--black-border);
  transition: background 0.2s ease, transform 0.2s ease;
}
.gal-dot:hover { background: var(--silver-dk); }
.gal-dot.active { background: var(--brand-primary); transform: scale(1.25); }
.gal-item {
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--black-border);
  background: var(--black-card);
}
.gal-item img {
  width: 100%; height: 260px; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease), filter 0.4s ease;
}
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(232,35,42,0.28), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover::after { opacity: 1; }
.gal-item__cap {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  z-index: 2; font-size: 0.82rem; color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.gal-item:hover .gal-item__cap { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6,6,6,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow); }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: var(--text-dim); font-size: 0.9rem; padding: 0 20px; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s ease;
}
.lightbox__btn:hover { background: var(--brand-primary); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lightbox__prev { left: 20px; } .lightbox__next { right: 20px; }
.lightbox__close { top: 22px; right: 22px; transform: none; width: 48px; height: 48px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.review-card {
  position: relative;
  border: 1px solid var(--black-border);
  border-top: 3px solid var(--black-border);
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
}
.review-card[data-source="google"]   { border-top-color: var(--review-google);   background: linear-gradient(180deg, rgba(66,133,244,0.06), transparent 45%), var(--black-card); }
.review-card[data-source="facebook"] { border-top-color: var(--review-facebook); background: linear-gradient(180deg, rgba(24,119,242,0.06), transparent 45%), var(--black-card); }
.review-card[data-source="yell"]     { border-top-color: var(--review-yell);     background: linear-gradient(180deg, rgba(255,221,0,0.08), transparent 45%), var(--black-card); }
.review-badge { position: absolute; top: 18px; right: 18px; width: 26px; height: 26px; }
.review-badge--yell {
  position: absolute; top: 16px; right: 16px;
  background: var(--review-yell); color: #0a0a0a;
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
  letter-spacing: -0.01em; padding: 3px 9px; border-radius: 4px;
  width: auto; height: auto;
}
.review-stars { color: #ffb300; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review-text { font-size: 0.98rem; color: var(--text-dim); margin-bottom: 20px; flex: 1; }
.review-text--clamp {
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-text--clamp.is-expanded { display: block; overflow: visible; }
.review-more {
  align-self: flex-start;
  color: var(--brand-primary-hi);
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin: 4px 0 20px;
}
.review-more:hover { text-decoration: underline; }
.review-author { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--black-border); }
.review-name { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em; font-size: 0.98rem; color: #fff; }
.review-source-label { color: var(--grey-text); font-size: 0.8rem; }

.rev-summary {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0 auto 46px;
  padding: 38px 56px 30px;
  background: #fff;
  border: 1px solid #e2e5e9;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px rgba(20,25,30,0.09);
  text-align: center;
  overflow: hidden;
}
.rev-summary__glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,35,42,0.16), transparent 70%);
  pointer-events: none;
}
.rev-summary__score, .rev-summary__meta, .rev-summary__sources { position: relative; }
.rev-summary__score { font-family: var(--font-head); font-weight: 800; font-size: 4rem; color: var(--brand-primary); line-height: 0.9; }
.rev-summary__meta { text-align: center; }
.rev-summary__sources { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.rev-source-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid #dfe3e7; border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.02em; color: var(--ink-soft);
}
.rev-source-pill svg { width: 14px; height: 14px; }
.rev-source-pill--yell { color: #a68a00; background: rgba(255,221,0,0.12); border-color: rgba(255,221,0,0.4); }

.rev-summary__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.rev-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.01em; color: #fff;
  transition: transform 0.15s ease, background 0.2s ease;
}
.rev-cta-pill svg { width: 16px; height: 16px; }
.rev-cta-pill:hover { transform: translateY(-2px); }
.rev-cta-pill--facebook { background: #1877F2; }
.rev-cta-pill--facebook:hover { background: #1461c9; }
.rev-cta-pill--yell { background: #FFDD00; color: #0a0a0a; }
.rev-cta-pill--yell:hover { background: #e6c700; }

/* ============================================================
   REVIEWS CAROUSEL (auto-scrolling)
   ============================================================ */
.rev-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rev-track {
  display: flex; width: max-content; gap: 18px;
  animation: rev-scroll 36s linear infinite;
}
.rev-carousel:hover .rev-track { animation-play-state: paused; }
.rev-track .review-card { flex: 0 0 340px; width: 340px; }
@keyframes rev-scroll { to { transform: translateX(-50%); } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band {
  position: relative;
  background:
    linear-gradient(120deg, rgba(13,13,13,0.94), rgba(13,13,13,0.7)),
    var(--brand-primary-dk);
  border-radius: 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232,35,42,0.35), transparent 65%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--text-dim); font-size: 1.12rem; }
.cta-band .btn-row { justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.contact-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--brand-primary); }
.contact-card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(232,35,42,0.12); border: 1px solid rgba(232,35,42,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.contact-card__icon svg { width: 26px; height: 26px; color: var(--brand-primary-hi); }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-card a, .contact-card p { color: var(--text-dim); font-size: 1rem; margin: 0; word-break: break-word; }
.contact-card a:hover { color: var(--brand-primary-hi); }

/* ============================================================
   MAP / WHERE WE WORK
   ============================================================ */
.leaflet-container { background: #1d2733; }
.leaflet-popup-content-wrapper {
  background: var(--black-card);
  color: var(--text);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.leaflet-popup-content-wrapper a { color: var(--brand-primary-hi); }
.leaflet-popup-tip { background: var(--black-card); }
#map {
  height: 480px; border-radius: 12px;
  border: 1px solid var(--black-border);
  overflow: hidden;
}
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 40px; }
.area-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.area-card:hover { transform: translateX(4px); border-color: var(--brand-primary); background: var(--black-card-hi); }
.area-card b { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em; font-size: 1.05rem; }
.area-card svg { width: 20px; height: 20px; color: var(--brand-primary); flex-shrink: 0; }
.area-card span { font-size: 0.82rem; color: var(--grey-text); display: block; }

/* pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { border: 1px solid var(--black-border); border-radius: 100px; padding: 8px 16px; font-size: 0.88rem; color: var(--text-dim); }
.section--light .pill { border-color: #d3d7dc; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--black-border); }
.section--light .faq-item { border-color: #dcdfe3; }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  font-size: 1.12rem; letter-spacing: -0.005em; color: inherit;
}
.faq-q__icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--brand-primary); transition: transform 0.3s ease; }
.faq-item.open .faq-q__icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 0 24px; color: var(--text-dim); margin: 0; font-size: 1rem; }
.section--light .faq-a p { color: var(--ink-soft); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--topbar-h) + 74px) 0 60px;
  background: var(--black-2);
  border-bottom: 1px solid var(--black-border);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; right: -10%; top: -40%;
  width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(232,35,42,0.16), transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.85rem; color: var(--grey-text); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--brand-primary-hi); }
.breadcrumb span { color: var(--silver-dk); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-dim); max-width: 640px; font-size: 1.12rem; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--black-border);
  padding: 66px 0 26px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--black-border);
}
.footer__brand img { height: 56px; border-radius: 8px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.92rem; color: var(--grey-text); max-width: 320px; }
.footer h4 {
  font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 18px;
  color: var(--silver);
}
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__links a { font-size: 0.94rem; color: var(--text-dim); transition: color 0.2s ease, padding 0.2s ease; }
.footer__links a:hover { color: var(--brand-primary-hi); padding-left: 4px; }
.footer__contact { display: grid; gap: 12px; font-size: 0.94rem; color: var(--text-dim); }
.footer__contact a { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand-primary); flex-shrink: 0; margin-top: 3px; }
.footer__contact a:hover { color: var(--brand-primary-hi); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover { background: var(--brand-primary); border-color: var(--brand-primary); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  align-items: center; padding-top: 24px;
  font-size: 0.84rem; color: var(--grey-text);
}
.footer__bottom a { color: var(--silver); }
.footer__bottom a:hover { color: var(--brand-primary-hi); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: max(20px, calc(20px + env(safe-area-inset-bottom)));
  z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float::after {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gal-item { flex-basis: 280px; width: 280px; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 520px; }
  .split__badge { right: 14px; }
}
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--black-border);
    flex-direction: column; align-items: stretch;
    padding: 14px 20px 26px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
  }
  .nav.open .nav__menu { transform: translateY(0); }
  .nav__menu .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__menu .nav__links a { padding: 15px 8px; border-bottom: 1px solid var(--black-border); font-size: 1.05rem; }
  .nav__menu .nav__links a::after { display: none; }
  .nav__menu .nav__cta { display: inline-flex; justify-content: center; margin-top: 16px; padding: 15px; font-size: 1rem; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .top-bar__inner { gap: 8px; }
  .top-bar__emergency, .top-bar__call { font-size: 0.62rem; letter-spacing: 0.01em; }
  .top-bar__call svg { width: 12px; height: 12px; }
  .gal-item { flex-basis: 240px; width: 240px; scroll-snap-align: center; }
  .gal-item img { height: 200px; }
  .gal-arrow { width: 38px; height: 38px; }
  .gal-arrow svg { width: 18px; height: 18px; }
  .gal-track { padding-inline: calc((100% - 240px) / 2); scroll-padding-inline: calc((100% - 240px) / 2); }
  .footer__top { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 14px; }
  .hero__trust { width: 100%; }
  .trust-item { flex: 1; gap: 8px; padding: 12px 8px; }
  .trust-item svg { width: 16px; height: 16px; }
  .trust-item__text strong { font-size: 0.85rem; }
  .trust-item__text span { font-size: 0.68rem; }
  .brand__sub { display: none; }
  .rev-summary { padding: 32px 28px 26px; max-width: 100%; }
  .rev-track .review-card { flex-basis: 280px; width: 280px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 14px 4px; }
  .stat b { font-size: 1.3rem; }
  .stat span { font-size: 0.56rem; letter-spacing: 0.04em; margin-top: 4px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.in { opacity: 1; transform: none; transition-property: opacity; transition-duration: 0.001ms; }
  .ticker__track { animation: none; }
  .rev-track { animation: none; }
  .whatsapp-float::after { animation: none; }
  .gal-item img { transition-duration: 0.001ms; }
  .gal-track { scroll-behavior: auto; }
  .hero__glow, .page-hero::before { filter: none; }
}
