/* ── SHARED STYLES — scellant-asphalte.ca ── */
:root {
  --bg: #141414;
  --fg: #f5f5f5;
  --card: #1f1f1f;
  --muted: #a0a0a0;
  --brand-red: #d64545;
  --brand-red-glow: #e85555;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1152px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Top bar */
.top-bar { border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); padding: 12px 16px; position: sticky; top: 0; z-index: 100; }
.top-bar-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 14px; gap: 16px; }
.top-bar-phone { display: flex; align-items: center; gap: 8px; color: rgba(245,245,245,0.85); font-weight: 600; white-space: nowrap; }
.top-bar-phone svg { width: 15px; height: 15px; }
.top-bar-phone:hover { color: var(--fg); }
.nav-links { display: none; align-items: center; gap: 20px; list-style: none; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a { font-size: 12px; font-weight: 600; color: rgba(245,245,245,0.55); transition: color 0.2s; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 8px; background: var(--brand-red); color: #fff; font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 999px; white-space: nowrap; transition: filter 0.2s; }
.nav-cta:hover { filter: brightness(1.1); }
.nav-cta svg { width: 14px; height: 14px; }

/* Section shared */
.section-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--brand-red-glow); display: block; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); font-weight: 700; text-transform: uppercase; line-height: 1.15; margin-bottom: 20px; }
.section-title span { color: var(--brand-red); }

/* Breadcrumb */
.breadcrumb { max-width: var(--max); margin: 0 auto; padding: 14px 16px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* CTA btn */
.cta-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--brand-red); color: #fff; padding: 16px 32px; border-radius: 999px; font-size: 18px; font-weight: 700; box-shadow: 0 10px 40px -10px rgba(214,69,69,0.5); transition: filter 0.2s; }
.cta-btn:hover { filter: brightness(1.1); }
.cta-btn svg { width: 20px; height: 20px; }
.cta-btn-sm { font-size: 15px; padding: 13px 26px; }

/* Card */
.card { background: var(--card); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; transition: border-color 0.2s; }
.card:hover { border-color: rgba(214,69,69,0.4); }
.card h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.card p { font-size: 14px; color: rgba(245,245,245,0.7); line-height: 1.6; }

/* Contact items */
.contact-item { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; transition: border-color 0.2s; }
.contact-item:hover { border-color: rgba(214,69,69,0.4); }
.contact-item svg { width: 24px; height: 24px; color: var(--brand-red-glow); flex-shrink: 0; }
.contact-item .label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(245,245,245,0.5); }
.contact-item .value { font-size: 18px; font-weight: 600; }

/* Stars */
.stars { display: flex; gap: 4px; }
.stars svg { width: 18px; height: 18px; fill: var(--brand-red-glow); color: var(--brand-red-glow); }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,0.05); background: #000; padding: 48px 16px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--fg); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--brand-red-glow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: rgba(214,69,69,0.2); }
.footer-social svg { width: 16px; height: 16px; }
