/* ==========================================================================
   Michalis Vrachimis & Yios Automotive Garage Ltd — Master Stylesheet
   Theme: modern performance / pit-lane charcoal + racing red
   ========================================================================== */

:root {
  --bg: #0b0d10;
  --bg-soft: #14181d;
  --bg-card: #1a1f26;
  --line: #262c34;
  --text: #e9edf2;
  --muted: #9aa3ad;
  --accent: #e10600;
  --accent-2: #ff2d20;
  --accent-glow: rgba(225, 6, 0, 0.35);
  --success: #22c55e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --container: 1200px;
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .85rem; }
.section-head h2 { margin: .6rem 0 1rem; }
.section-head p { font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 25px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-2); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5b; color: #fff; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,13,16,0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.25rem; max-width: var(--container); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; letter-spacing: .02em; }
.brand .brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #7a0300 100%);
  display: grid; place-items: center; color: #fff; font-weight: 900;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .top { font-size: .98rem; }
.brand-text .sub { font-size: .68rem; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; }

/* When a logo image is present, hide the text-mark fallback */
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 60vw;
  display: block;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.site-footer .brand-logo { height: 56px; }
.brand:has(.brand-logo) .brand-mark,
.brand:has(.brand-logo) .brand-text { display: none; }
.brand.no-logo .brand-logo { display: none; }
.brand.no-logo .brand-mark { display: grid; }
.brand.no-logo .brand-text { display: flex; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--text); font-weight: 600; font-size: .95rem; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--accent-2); }
.nav-links a.active::after, .nav-links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--accent);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.hamburger {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
  background: transparent; color: var(--text); cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger svg { width: 22px; height: 22px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 80% 0%, rgba(225,6,0,0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(225,6,0,0.10), transparent 60%),
    linear-gradient(180deg, #0b0d10 0%, #0a0c0f 100%);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: -1;
}
.hero-inner {
  padding: 6rem 1.25rem 5rem;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .85rem; border-radius: 999px;
  background: rgba(225,6,0,0.12); color: #ffc7c4;
  border: 1px solid rgba(225,6,0,0.35);
  font-size: .82rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1.2rem;
  background: linear-gradient(180deg, #fff 0%, #b9c0c8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .accent { color: var(--accent-2); -webkit-text-fill-color: var(--accent-2); }
.hero p.lede { font-size: 1.15rem; color: #c8cdd4; max-width: 580px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-meta {
  display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta .item .num { font-size: 2rem; font-weight: 800; color: #fff; }
.hero-meta .item .lbl { font-size: .82rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

/* Hero visual card */
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(225,6,0,0.2), transparent 50%),
    radial-gradient(600px 350px at 30% 20%, rgba(255,45,32,0.2), transparent 60%),
    linear-gradient(135deg, #1a1f26 0%, #0c0f13 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual .badge-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
}
.hero-visual .badge-grid .cell {
  display: grid; place-items: center; padding: 1.5rem;
  font-weight: 800; letter-spacing: .12em; color: #fff;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 1.6rem;
}
.hero-visual .badge-grid .cell:nth-child(2),
.hero-visual .badge-grid .cell:nth-child(4) { border-right: none; }
.hero-visual .badge-grid .cell:nth-child(3),
.hero-visual .badge-grid .cell:nth-child(4) { border-bottom: none; }
.hero-visual .badge-grid .cell .sub { display:block; font-size: .65rem; color: var(--muted); letter-spacing: .2em; margin-top: .35rem; font-weight: 700; }
.hero-visual .stamp {
  position: absolute; right: 1.25rem; top: 1.25rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); padding: .35rem .55rem; border-radius: 6px;
  background: rgba(225,6,0,0.08);
  font-weight: 800;
}

/* ===== Marquee strip (auto-scrolling ribbon) ===== */
.marquee {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
  /* Soft fade-out on left & right so words clearly slide in / out */
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 22s linear infinite;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #d2d7de;
  font-size: .95rem;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 1.25rem; }
.marquee-track .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display:inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Service cards ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem;
}
.service-card {
  position: relative;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left:0; top:0; bottom:0; width:3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(225,6,0,0.4); box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.service-card:hover::before { transform: scaleY(1); }
.service-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(225,6,0,0.18), rgba(225,6,0,0.05));
  border: 1px solid rgba(225,6,0,0.3);
}
.service-card .icon svg { width: 26px; height: 26px; color: var(--accent-2); }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .95rem; }
.service-card .more { display:inline-flex; align-items:center; gap:.35rem; margin-top: 1rem; color: var(--accent-2); font-weight:700; font-size:.9rem; }

/* ===== About / Stats ===== */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center;
}
.about-grid .copy h2 { margin-bottom: 1.25rem; }
.about-grid .copy p + p { margin-top: 1rem; }
.about-grid .copy p { color: #cfd5dd; }
.about-grid .copy .lead { font-size: 1.1rem; color: #fff; }
.about-grid ul.bullets { margin-top: 1.5rem; display: grid; gap: .65rem; }
.about-grid ul.bullets li { display: flex; align-items: flex-start; gap: .65rem; color: #cfd5dd; }
.about-grid ul.bullets li::before {
  content: ''; width: 8px; height: 8px; margin-top: .55rem; border-radius: 2px; background: var(--accent); flex: none;
}
.stats-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat {
  padding: 1.25rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.02);
  border: 1px dashed var(--line);
}
.stat .n { font-size: 2.1rem; font-weight: 800; color: #fff; }
.stat .l { color: var(--muted); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.stat .accent { color: var(--accent-2); }

/* ===== Brands strip ===== */
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.brand-tile {
  background: var(--bg-card); padding: 1.5rem 1rem; display: grid; place-items: center; gap: .35rem; text-align: center;
  transition: background .2s ease;
}
.brand-tile:hover { background: #1f2630; }
.brand-tile .name { font-weight: 800; letter-spacing: .12em; color: #fff; font-size: 1rem; }
.brand-tile .role { color: var(--muted); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; }
.brand-tile.authorized .name { color: var(--accent-2); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}

/* ===== Reviews horizontal scroller (auto-marquee + pause on hover) ===== */
/* Applied by JS once the container has more than a few reviews — see main.js */
.testimonials-grid.reviews-scroller {
  display: block;            /* override grid */
  position: relative;
  overflow: hidden;
  padding: .25rem 0;          /* room for card shadow */
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviewScroll 80s linear infinite;
  will-change: transform;
}
.reviews-scroller:hover .reviews-track,
.reviews-scroller:focus-within .reviews-track { animation-play-state: paused; }
.reviews-track > .review {
  flex: 0 0 360px;
  min-width: 360px;
  max-width: 360px;
}
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile: turn it into a snappy touch-scroller (no auto-motion) */
@media (max-width: 760px) {
  .testimonials-grid.reviews-scroller {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }
  .testimonials-grid.reviews-scroller::-webkit-scrollbar { display: none; }
  .reviews-track { animation: none; padding: 0 .25rem; }
  .reviews-track > .review {
    flex: 0 0 85vw;
    min-width: 85vw;
    max-width: 85vw;
    scroll-snap-align: center;
  }
}
.review {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; position: relative;
}
.review .stars { color: #f5b400; letter-spacing: 2px; margin-bottom: .8rem; }
.review p { color: #d8dde4; font-style: italic; }
.review .who { margin-top: 1.1rem; display: flex; align-items: center; gap: .75rem; }
.review .who .avatar {
  width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #500); display:grid; place-items:center; color:#fff; font-weight:800;
}
.review .who .name { color: #fff; font-weight: 700; font-size: .95rem; }
.review .who .src { color: var(--muted); font-size: .78rem; }

/* ===== Offer banner ===== */
.offer {
  position: relative;
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(225,6,0,0.4);
  background: linear-gradient(120deg, rgba(225,6,0,0.18), rgba(225,6,0,0.02));
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
}
.offer h3 { color: #fff; margin-bottom: .4rem; }
.offer p { color: #f1d6d4; }
.offer .day { font-size: 3rem; font-weight: 900; color: var(--accent-2); letter-spacing: -.04em; line-height: 1; }

/* ===== Contact / Map ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.contact-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem;
}
.contact-card h3 { margin-bottom: 1rem; }
.contact-list { display: grid; gap: 1rem; }
.contact-list .row { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: flex-start; }
.contact-list .row .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(225,6,0,0.12); border: 1px solid rgba(225,6,0,0.3);
  display: grid; place-items: center;
}
.contact-list .row .ic svg { width: 20px; height: 20px; color: var(--accent-2); }
.contact-list .row .lbl { font-size: .78rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.contact-list .row .val { color: #fff; font-weight: 700; overflow-wrap: anywhere; word-break: break-word; }
.contact-list .row .val a:hover { color: var(--accent-2); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: #0a0c0f; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05) hue-rotate(-5deg); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .65rem 0; border-bottom: 1px solid var(--line); color: #d8dde4; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .day { font-weight: 700; color: #fff; }
.hours-table .closed { color: var(--muted); }
.hours-table .open { color: var(--success); font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.status-pill.open { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.4); }
.status-pill.closed { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--line); }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ===== Form ===== */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: .9rem 1rem; background: var(--bg); border: 1px solid var(--line); color: #fff; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(225,6,0,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 1rem;
}
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center; padding: 1rem;
  color: #fff; isolation: isolate;
}
.tile::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%); z-index: -1;
}
.tile .label { font-weight: 800; letter-spacing: .08em; }
.tile .sub { color: var(--muted); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-top: .35rem; }
/* Bento layout — 8 tiles, perfectly filling 4 rows × 12 cols */
.tile.feature  { grid-column: span 8; grid-row: span 2; background: linear-gradient(135deg,#1a1f26 0%, #2a1010 100%); }
.tile.a        { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg,#181c22 0%, #220707 100%); }
.tile.b        { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg,#181c22 0%, #14181d 100%); }
.tile.c        { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg,#1a1f26 0%, #1a0303 100%); }
.tile.d        { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg,#1a1f26 0%, #14181d 100%); }
.tile.e        { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg,#220404 0%, #14181d 100%); }
.tile.f        { grid-column: span 6; grid-row: span 1; background: linear-gradient(135deg,#220404 0%, #1a1f26 100%); }
.tile.g        { grid-column: span 6; grid-row: span 1; background: linear-gradient(135deg,#1a1f26 0%, #14181d 100%); }

/* Reels list */
.reels-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.reel {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: grid; gap: .75rem; position: relative; overflow: hidden;
}
.reel::after {
  content: '▶'; position: absolute; top: 1.25rem; right: 1.25rem; color: var(--accent); font-size: 1rem;
  width: 36px; height: 36px; border-radius: 50%; display:grid; place-items:center; background: rgba(225,6,0,0.15); border:1px solid rgba(225,6,0,0.4);
}
.reel .tag { color: var(--accent-2); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; }
.reel h4 { color: #fff; font-size: 1.1rem; }
.reel p { font-size: .9rem; }

/* ===== Language switcher ===== */
.lang-switch {
  position: relative;
}
.lang-switch > button {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .8rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  cursor: pointer; text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}
.lang-switch > button:hover { border-color: var(--accent); color: var(--accent-2); }
.lang-switch > button svg { width: 12px; height: 12px; transition: transform .2s ease; }
.lang-switch.open > button svg { transform: rotate(180deg); }
.lang-switch ul {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 10px; padding: .35rem; min-width: 160px;
  display: none; z-index: 60;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.lang-switch.open ul { display: block; }
.lang-switch ul li a {
  display: block; padding: .55rem .75rem; border-radius: 6px;
  color: var(--text); font-size: .9rem; font-weight: 600;
}
.lang-switch ul li a:hover { background: rgba(225,6,0,0.12); color: var(--accent-2); }
.lang-switch ul li a.current { background: rgba(255,255,255,0.05); color: var(--accent-2); }
.lang-switch ul li a .flag { display: inline-block; width: 22px; margin-right: .55rem; text-align: center; }

/* ===== Image components ===== */
.img-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  isolation: isolate;
}
.img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.img-card:hover img { transform: scale(1.03); }
.img-card .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.img-card .img-label {
  position: absolute; left: 1.25rem; bottom: 1.25rem; right: 1.25rem;
  color: #fff;
}
.img-card .img-label .t { font-weight: 800; font-size: 1.05rem; }
.img-card .img-label .s { color: var(--muted); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-top: .25rem; }

/* Hero updated for image */
.hero-visual.with-image { background: #0c0f13; padding: 0; }
.hero-visual.with-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .65;
}
.hero-visual.with-image .stamp { z-index: 2; background: rgba(0,0,0,0.55); }
.hero-visual.with-image .hero-badges {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  z-index: 2;
  background: rgba(11,13,16,0.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
}
.hero-visual.with-image .hero-badges .b {
  text-align: center; color: #fff;
  font-weight: 800; letter-spacing: .08em; font-size: .85rem;
  padding: .35rem .25rem;
}
.hero-visual.with-image .hero-badges .b.allmakes { color: var(--accent-2); }
.hero-visual.with-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0) 0%, rgba(11,13,16,0.7) 100%);
  z-index: 1;
}

/* Section image strip (cinematic) */
.image-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  height: 360px;
}
.image-strip .img-card { height: 100%; }

/* Page-header backdrop */
.page-header.has-backdrop {
  position: relative; isolation: isolate; overflow: hidden;
}
.page-header.has-backdrop::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  opacity: 0.18; filter: grayscale(0.3);
}
.page-header.has-backdrop > .container { position: relative; z-index: 1; }

/* ===== Video embeds (gallery) ===== */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem;
}
.video-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
  color: inherit; text-decoration: none;
}
.video-card:hover { transform: translateY(-3px); border-color: rgba(225,6,0,0.4); }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--accent); color: #fff; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 9/16; background: #000;
  max-height: 640px;
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-thumb { aspect-ratio: 4/5; max-height: 520px; overflow: hidden; }
.video-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.video-thumb--dpf  { background: radial-gradient(circle at 30% 35%, #2a1010 0%, #0c0f13 55%), linear-gradient(135deg,#1a1f26 0%, #2a1010 100%); }
.video-thumb--diag { background: radial-gradient(circle at 65% 40%, #14323a 0%, #0c0f13 55%), linear-gradient(135deg,#181c22 0%, #14181d 100%); }
.video-thumb--feed { background: radial-gradient(circle at 50% 40%, #1a2f5a 0%, #0c0f13 55%), linear-gradient(135deg,#181c22 0%, #1a1f26 100%); }
.video-thumb .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(225,6,0,0.92); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
  transition: transform .25s ease, background-color .25s ease;
  z-index: 1;
}
.video-thumb .play-btn svg { width: 30px; height: 30px; }
.video-thumb .play-btn--fb { background: #1877f2; }
.video-thumb .thumb-badge {
  position: absolute; left: 1rem; top: 1rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 800; color: #fff;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.12);
  padding: .3rem .55rem; border-radius: 999px;
  z-index: 1;
}
.video-card .video-meta {
  padding: 1rem 1.25rem 1.25rem;
}
.video-card .video-meta .tag { color: var(--accent-2); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; }
.video-card .video-meta h4 { color: #fff; font-size: 1rem; margin-top: .4rem; }
.video-card .video-meta p { font-size: .88rem; color: var(--muted); margin-top: .35rem; }

/* Button-styled card (for in-page video triggers) */
button.video-card {
  font: inherit; text-align: left; cursor: pointer;
  width: 100%; padding: 0; background: var(--bg-card);
}
button.video-card:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }

/* ===== Video lightbox (in-page Facebook player) ===== */
.video-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.video-lightbox.open { display: flex; }
.video-lightbox__frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 9/16;
  max-height: min(85vh, 820px);
  background: #000;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.video-lightbox__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,0.12); color: #fff;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.video-lightbox__close:hover { background: var(--accent); transform: scale(1.05); }

/* Photo tile with real image */
.tile.has-img { padding: 0; }
.tile.has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.tile.has-img .label, .tile.has-img .sub { position: relative; z-index: 1; padding: 0 1rem; }
.tile.has-img > div { padding: 1rem; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85)); width: 100%; align-self: end; }
.tile.has-img { align-items: stretch; }

/* ===== Footer ===== */
.site-footer {
  background: #07090b; border-top: 1px solid var(--line); padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem;
}
.footer-grid h4 { color: #fff; font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid p, .footer-grid li { color: var(--muted); font-size: .92rem; }
.footer-grid ul li + li { margin-top: .55rem; }
.footer-grid a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  color: var(--muted); font-size: .85rem;
}
.social-row { display: flex; gap: .6rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line);
  display:grid; place-items:center; color: var(--muted); background: var(--bg-card);
  transition: all .2s ease;
}
.social-row a:hover { color: #fff; border-color: var(--accent); background: rgba(225,6,0,0.12); }

/* ===== Page header (inner pages) ===== */
.page-header {
  padding: 5rem 0 3rem; text-align: center;
  background: radial-gradient(900px 400px at 50% 0%, rgba(225,6,0,0.15), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .85rem; }
.page-header h1 { margin: .8rem 0 .8rem; }
.page-header p { max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumbs { color: var(--muted); font-size: .85rem; margin-top: 1rem; }
.breadcrumbs a:hover { color: var(--accent-2); }

/* ===== Float CTA (WhatsApp) ===== */
.float-cta {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .2s ease;
}
.float-cta:hover { transform: scale(1.08); color: #fff; }
.float-cta svg { width: 28px; height: 28px; }

/* ===== Service detail (services.html) ===== */
.svc-detail { display: grid; gap: 1rem; }
.svc-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: flex-start;
  padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
}
.svc-row .svc-num { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; letter-spacing: -.04em; }
.svc-row .svc-cat { color: var(--muted); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; margin-bottom: .4rem; }
.svc-row h3 { margin-bottom: .65rem; }
.svc-row ul { display: grid; gap: .4rem; margin-top: .8rem; }
.svc-row ul li { color: #d8dde4; padding-left: 1.1rem; position: relative; }
.svc-row ul li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(120deg, #16040380 0%, #0c0f13 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
}
.cta-strip h3 { color: #fff; margin-bottom: .35rem; font-size: 1.6rem; }
.cta-strip p { color: #cfd5dd; }
.cta-strip .actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav-cta .status-pill { display: none; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .image-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; height: auto; }
  .image-strip .img-card:first-child { grid-column: 1 / span 2; }
  .lang-switch > button { padding: .5rem .65rem; font-size: .75rem; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem; gap: 1rem; align-items: flex-start;
    max-height: calc(100vh - 100%); overflow-y: auto;
  }
  .nav-links.open a { padding: .35rem 0; }
  .nav-links.open a.active::after, .nav-links.open a:hover::after { display: none; }
  .nav-cta .btn--ghost { display: none; }
  .hamburger { display: inline-flex; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.25rem 4rem; }
  .hero-visual { aspect-ratio: 1/1; max-width: 480px; width: 100%; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .offer { grid-template-columns: 1fr; text-align: left; }
  .offer .day { font-size: 2.4rem; }

  .cta-strip { grid-template-columns: 1fr; }

  .svc-row { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; }
  .svc-row .svc-num { font-size: 2.4rem; }

  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .tile.feature { grid-column: span 6; grid-row: span 1; }
  .tile.a, .tile.b { grid-column: span 3; }
  .tile.c, .tile.d, .tile.e { grid-column: span 2; }
  .tile.f, .tile.g { grid-column: span 3; }
}

/* ===== Tablet / large phone ===== */
@media (max-width: 720px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .section--tight { padding: 2.5rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head p { font-size: 1rem; }

  /* Header — keep it lean */
  .nav { padding: .65rem 1rem; gap: .5rem; }
  .brand-logo { height: 42px; max-width: 160px; padding: 4px 8px; }
  .nav-cta { gap: .4rem; }
  .nav-cta .btn { padding: .65rem 1rem; font-size: .85rem; }
  .lang-switch > button { padding: .45rem .6rem; font-size: .72rem; gap: .25rem; }
  .lang-switch ul { min-width: 150px; }
  .hamburger { width: 40px; height: 40px; }

  /* Hero */
  .hero-inner { padding: 2.5rem 1rem 3rem; gap: 2rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero p.lede { font-size: 1.02rem; margin-bottom: 1.5rem; }
  .hero-eyebrow { font-size: .72rem; margin-bottom: 1rem; padding: .35rem .7rem; }
  .hero-cta { gap: .6rem; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .hero-meta { gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.25rem; }
  .hero-meta .item .num { font-size: 1.6rem; }
  .hero-meta .item .lbl { font-size: .72rem; }
  .hero-visual.with-image .hero-badges { padding: .7rem; gap: .35rem; left: .8rem; right: .8rem; bottom: .8rem; }
  .hero-visual.with-image .hero-badges .b { font-size: .72rem; padding: .25rem .15rem; letter-spacing: .05em; }
  .hero-visual.with-image .stamp { font-size: .62rem; padding: .25rem .45rem; }

  /* Page header */
  .page-header { padding: 3rem 0 2.25rem; }
  .page-header p { font-size: .98rem; }

  /* Cards */
  .service-card { padding: 1.35rem; }
  .service-card .icon { width: 46px; height: 46px; margin-bottom: .85rem; }
  .review { padding: 1.4rem; }
  .contact-card { padding: 1.4rem; }
  .stats-card { padding: 1.25rem; gap: .75rem; }
  .stat { padding: 1rem; }
  .stat .n { font-size: 1.7rem; }
  .stat .l { font-size: .72rem; }
  .offer { padding: 1.5rem; gap: 1rem; }
  .offer h3 { font-size: 1.2rem; }
  .offer .day { font-size: 2rem; }
  .cta-strip { padding: 1.75rem 1.25rem; }
  .cta-strip h3 { font-size: 1.3rem; }
  .cta-strip .actions { width: 100%; }
  .cta-strip .actions .btn { flex: 1 1 auto; justify-content: center; }
  .areas-strip { padding: 1.25rem 1.1rem; }

  /* FAQ */
  .faq-item { padding: 1rem 1.1rem; }
  .faq-item summary { font-size: .98rem; }

  /* Articles */
  .article-body h2 { margin: 2rem 0 .8rem; font-size: 1.45rem; }
  .article-body h3 { margin: 1.4rem 0 .6rem; font-size: 1.15rem; }
  .article-body p { line-height: 1.7; }
  .article-meta { font-size: .82rem; gap: .5rem 1rem; }

  /* Forms */
  .field input, .field textarea, .field select { padding: .85rem .9rem; font-size: 16px; }

  /* Marquee */
  .marquee { padding: .85rem 0; }
  .marquee-track { gap: 2rem; font-size: .82rem; letter-spacing: .2em; }

  /* Image strip */
  .image-strip { grid-template-rows: 180px 180px; gap: .65rem; }

  /* Hours table */
  .hours-table td { padding: .55rem 0; font-size: .92rem; }

  /* Float CTA */
  .float-cta { width: 50px; height: 50px; right: .85rem; bottom: .85rem; }
  .float-cta svg { width: 24px; height: 24px; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.25rem; }
  .footer-grid { margin-bottom: 2rem; gap: 1.75rem; }
  .footer-bottom { justify-content: flex-start; }
  .social-row a { width: 42px; height: 42px; }
}

@media (max-width: 540px) {
  .section { padding: 2.75rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-card { grid-template-columns: 1fr 1fr; padding: 1.25rem; }
  .form .row2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: .65rem; }
  .tile.feature, .tile.a, .tile.b, .tile.c, .tile.d, .tile.e, .tile.f, .tile.g { grid-column: span 2; grid-row: span 1; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-tile { padding: 1.1rem .65rem; }
  .brand-tile .name { font-size: .88rem; }
  .brand-tile .role { font-size: .62rem; }

  .video-grid { gap: 1rem; }
  .video-thumb, .video-frame { max-height: none; }

  .image-strip { grid-template-columns: 1fr; grid-template-rows: 200px 160px 160px; }
  .image-strip .img-card:first-child { grid-column: 1; }

  /* Contact rows */
  .contact-list .row { grid-template-columns: 38px 1fr; gap: .75rem; }
  .contact-list .row .ic { width: 38px; height: 38px; }
  .contact-list .row .ic svg { width: 18px; height: 18px; }

  /* Hero — drop visual aspect a touch so it doesn't dominate the fold */
  .hero-visual { max-width: 100%; }
}

/* ===== Very small phones (≤ 400px) ===== */
@media (max-width: 400px) {
  h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  .hero h1 { font-size: clamp(1.95rem, 9.5vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }

  .nav { padding: .55rem .85rem; }
  .nav-cta .btn { padding: .6rem .85rem; font-size: .82rem; }
  .nav-cta .btn svg { display: none; }
  .brand-logo { height: 38px; max-width: 130px; padding: 3px 6px; }
  .lang-switch > button { padding: .4rem .55rem; font-size: .7rem; }

  .hero-meta { gap: 1rem; }
  .hero-meta .item { flex: 1 1 30%; }
  .hero-meta .item .num { font-size: 1.4rem; }

  /* Hero badges: 2×2 on tiny screens */
  .hero-visual.with-image .hero-badges { grid-template-columns: 1fr 1fr; gap: .3rem; }

  .stats-card .stat[style*="span 2"] { grid-column: span 2 !important; }

  .offer .day { font-size: 1.8rem; }

  .gallery-grid { grid-auto-rows: 140px; }

  .article-body h2 { font-size: 1.3rem; }
  .article-body blockquote { padding: .75rem .9rem; }

  .cta-strip { padding: 1.4rem 1rem; }
  .footer-bottom { font-size: .78rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  /* Information-bearing marquees stay animated (slower) — services ribbon + reviews scroller */
  .marquee-track {
    animation: scroll 60s linear infinite !important;
    animation-iteration-count: infinite !important;
  }
  .reviews-track {
    animation: reviewScroll 240s linear infinite !important;
    animation-iteration-count: infinite !important;
  }
}

/* Print */
@media print {
  .site-header, .float-cta, .site-footer .social-row { display: none; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   FAQ accordion (homepage + article pages)
   ========================================================================== */
.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.faq-item:hover { border-color: rgba(225,6,0,.45); }
.faq-item[open] {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-card), #1d141420);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(225,6,0,.12);
  color: var(--accent-2);
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); background: var(--accent); color:#fff; }
.faq-item p {
  margin-top: .75rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}
.faq-item p strong { color: var(--text); }
.faq-item p a { color: var(--accent-2); font-weight: 700; }

/* ==========================================================================
   Areas / Service-area chips strip
   ========================================================================== */
.areas-strip {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  display: grid;
  gap: 1rem;
}
.areas-strip h3 {
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.areas-chips a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .85rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  transition: all .2s ease;
}
.areas-chips a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   Article / blog typography
   ========================================================================== */
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body h2 { margin: 2.5rem 0 1rem; font-size: 1.7rem; }
.article-body h3 { margin: 1.75rem 0 .75rem; font-size: 1.25rem; }
.article-body p { color: var(--text); line-height: 1.8; margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.25rem; color: var(--text); }
.article-body ul li, .article-body ol li { margin-bottom: .5rem; line-height: 1.7; list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: .9rem 1.2rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  color: var(--text);
  font-style: italic;
}
.article-body strong { color: var(--text); font-weight: 700; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: .8rem 1.2rem;
  color: var(--muted); font-size: .9rem;
  margin: .5rem 0 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.article-meta .dot { color: var(--accent); }

/* Article card grid for /articles index */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .25s ease, border-color .25s ease;
}
.article-card:hover { transform: translateY(-3px); border-color: rgba(225,6,0,.45); }
.article-card .tag {
  align-self: flex-start;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}
.article-card h3 { color: var(--text); }
.article-card p { color: var(--muted); flex: 1; }
.article-card .more {
  color: var(--accent-2); font-weight: 700; font-size: .9rem;
}

/* =========================================================
   Hero slider (multi-slide carousel)
   ========================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 86vh;
  display: grid;
}
.hero-slide {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide .hero-inner { width: 100%; }

/* Slide 2 — Authorized brands + BHP UK */
.hero-authorized-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(225,6,0,0.15), transparent 55%),
    linear-gradient(135deg, #1a1f26 0%, #0c0f13 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  justify-content: center;
}
.hero-authorized-card .label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
  text-align: center;
}
.hero-authorized-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-authorized-grid .tile {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem .75rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  font-size: 1.05rem;
}
.hero-authorized-grid .tile .sub {
  display: block;
  font-size: .6rem;
  color: var(--accent-2);
  letter-spacing: .22em;
  margin-top: .35rem;
  font-weight: 700;
}
.hero-bhp-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: .85rem 1.1rem;
  border: 1px solid var(--line);
}
.hero-bhp-strip img {
  height: 38px;
  width: auto;
  display: block;
}
.hero-bhp-strip .txt {
  font-size: .78rem;
  color: #111;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
}
.hero-bhp-strip .txt .accent { color: var(--accent); }

/* Slide 3 — Other brands serviced (multi-brand expertise) */
.hero-allmakes-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(225,6,0,0.10), transparent 55%),
    linear-gradient(135deg, #1a1f26 0%, #0c0f13 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  justify-content: center;
}
.hero-allmakes-card .label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
  text-align: center;
}
.hero-allmakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.hero-allmakes-grid .tile {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem .5rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  font-size: .92rem;
}
.hero-allmakes-foot {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c8cdd4;
  font-weight: 700;
  padding-top: .15rem;
}

/* Slide 4 — Warranty */
.hero-warranty-card {
  border-radius: 22px;
  border: 1px solid rgba(225,6,0,0.35);
  background:
    radial-gradient(600px 350px at 70% 20%, rgba(225,6,0,0.25), transparent 60%),
    linear-gradient(135deg, #1a1f26 0%, #0c0f13 100%);
  padding: 2rem 1.75rem;
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-warranty-card .ribbon {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: .85rem;
}
.hero-warranty-card .big {
  font-size: clamp(3.2rem, 9vw, 5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #b9c0c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-warranty-card .yrs {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .25em;
  color: #fff;
  margin: .35rem 0 1rem;
  text-transform: uppercase;
}
.hero-warranty-card .desc {
  color: #c8cdd4;
  font-size: .95rem;
  max-width: 28ch;
}
.hero-warranty-card .excl {
  margin-top: .9rem;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Slider controls */
.hero-controls {
  position: absolute;
  left: 0; right: 0;
  bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: .55rem;
  z-index: 5;
}
.hero-dot {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.hero-dot.is-active {
  background: var(--accent-2);
  transform: scaleY(1.4);
}
.hero-dot:hover { background: rgba(255,255,255,.45); }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: background .25s ease, border-color .25s ease;
}
.hero-arrow:hover { background: rgba(225,6,0,.55); border-color: var(--accent); }
.hero-arrow.prev { left: 1rem; }
.hero-arrow.next { right: 1rem; }
.hero-arrow svg { width: 20px; height: 20px; }

/* Slide 5 — Cyprus Trust Award (GOLDEN PREMIUM 2025) */
.hero-award-card {
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, .45);
  background:
    radial-gradient(700px 380px at 70% 15%, rgba(212,175,55,0.22), transparent 60%),
    linear-gradient(135deg, #1a1f26 0%, #0c0f13 100%);
  padding: 2rem 1.75rem;
  aspect-ratio: 4/5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-award-card .ribbon {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #e6c66e;
  font-weight: 800;
}
.hero-award-card .trophy-wrap {
  display: grid;
  place-items: center;
  position: relative;
}
.hero-award-card .trophy-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 10%;
  background: radial-gradient(closest-side, rgba(230,198,110,.35), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.hero-award-card .trophy {
  position: relative;
  z-index: 1;
  max-width: 78%;
  max-height: 100%;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.55));
}
.hero-award-card .title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero-award-card .title .gold {
  background: linear-gradient(180deg, #f5d678 0%, #c69a3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-award-card .year {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #c8cdd4;
  margin-top: .25rem;
}
/* Gold accent override for the Slide 5 eyebrow dot */
.hero-eyebrow.gold-eye .dot {
  background: #e6c66e !important;
}

@media (max-width: 768px) {
  .hero-slider { min-height: auto; }
  .hero-arrow { display: none; }
  .hero-authorized-card,
  .hero-allmakes-card,
  .hero-warranty-card,
  .hero-award-card { aspect-ratio: auto; padding: 1.5rem; }
  .hero-controls { bottom: .9rem; }
  .hero-award-card .trophy { max-width: 60%; }
}

/* =========================================================
   Award banner — Cyprus Trust Awards (homepage trust strip)
   ========================================================= */
.award-banner {
  background:
    radial-gradient(700px 300px at 80% 50%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.03));
  border: 1px solid rgba(212,175,55,.45);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.award-banner .award-img {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: radial-gradient(closest-side, rgba(230,198,110,.25), transparent 70%), #0a0c0f;
  border: 1px solid rgba(212,175,55,.45);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.award-banner .award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.award-banner .award-eyebrow {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #e6c66e;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
}
.award-banner .award-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: #e6c66e;
  border-radius: 50%;
  display: inline-block;
}
.award-banner h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 .35rem;
  line-height: 1.25;
}
.award-banner h3 .gold {
  background: linear-gradient(180deg, #f5d678 0%, #c69a3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.award-banner p {
  color: #c8cdd4;
  margin: 0;
  font-size: .98rem;
  max-width: 64ch;
}
.award-banner .pill {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e6c66e;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.45);
  white-space: nowrap;
}
@media (max-width: 820px) {
  .award-banner {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 1.5rem 1.4rem;
    gap: 1.1rem;
  }
  .award-banner .award-img { width: 92px; height: 92px; justify-self: start; }
  .award-banner .pill { justify-self: start; }
}

/* Footer award chip */
.footer-award {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .9rem;
  padding: .4rem .7rem .4rem .45rem;
  border-radius: 999px;
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.35);
  color: #e6c66e;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-award .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: radial-gradient(closest-side, #f5d678, #c69a3b 70%);
  display: inline-block;
}

/* =========================================================
   Warranty banner (homepage + services page)
   ========================================================= */
.warranty-banner {
  background:
    linear-gradient(135deg, rgba(225,6,0,.12), rgba(225,6,0,.04));
  border: 1px solid rgba(225,6,0,.35);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.warranty-banner .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(225,6,0,.18);
  border: 1px solid rgba(225,6,0,.4);
  display: grid;
  place-items: center;
  color: var(--accent-2);
}
.warranty-banner .icon svg { width: 28px; height: 28px; }
.warranty-banner h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 .25rem;
}
.warranty-banner p { color: #c8cdd4; margin: 0; font-size: .95rem; }
.warranty-banner .pill {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(225,6,0,.12);
  border: 1px solid rgba(225,6,0,.35);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .warranty-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .warranty-banner .pill { justify-self: start; }
}

/* =========================================================
   Diagnostic tools — multi-brand strip
   ========================================================= */
.diag-tools {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(225,6,0,.12), transparent 60%),
    linear-gradient(180deg, #0c0f13, #0a0c0f);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.diag-tools .head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.75rem;
}
.diag-tools .head h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: .35rem 0 0;
}
.diag-tools .head p {
  color: #c8cdd4;
  margin: 0;
  font-size: .98rem;
}
.diag-tools .head .eyebrow {
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
  display: block;
  margin-bottom: .35rem;
}
.diag-brands {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .65rem;
}
.diag-brands .b {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem .5rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  font-size: .85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.diag-brands .b:hover {
  background: rgba(225,6,0,.08);
  border-color: rgba(225,6,0,.4);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .diag-brands { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .diag-tools { padding: 1.5rem 1rem; }
  .diag-tools .head { grid-template-columns: 1fr; gap: .85rem; margin-bottom: 1.25rem; }
  .diag-tools .head h3 { font-size: 1.2rem; }
  .diag-tools .head p { font-size: .9rem; }
  .diag-brands { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .45rem; }
  .diag-brands .b {
    padding: .65rem .3rem;
    font-size: .72rem;
    letter-spacing: .04em;
    min-height: 40px;
  }
}
@media (max-width: 420px) {
  .diag-brands { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diag-brands .b {
    font-size: .8rem;
    letter-spacing: .08em;
    padding: .75rem .4rem;
  }
}

/* =========================================================
   Why-us / electrical-diagnosis pitch
   ========================================================= */
.why-us {
  background: linear-gradient(135deg, #0c0f13 0%, #14181e 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}
.why-us .copy h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 1rem;
}
.why-us .copy p { color: #c8cdd4; line-height: 1.7; }
.why-us .copy .quote {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: #fff;
  font-style: italic;
  font-weight: 600;
}
.why-us .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.why-us .stat-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}
.why-us .stat-card .n {
  color: var(--accent-2);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.why-us .stat-card .l {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .why-us { grid-template-columns: 1fr; padding: 1.75rem; gap: 1.5rem; }
}
