/* ============================================================
   Foreign Automotive Trinidad — Light editorial design system (v2)
   White-primary · ink text · brand red actions · image-led
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --paper: #ffffff;
  --stone: #f6f5f2;       /* warm light neutral */
  --stone-2: #edece8;
  --ink: #101114;
  --ink-60: #55575e;
  --ink-40: #8a8d94;
  --line: #e6e5e1;
  --red: #e52420;
  --red-deep: #c41e1a;
  --black: #0c0c0d;
  --radius: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-card: 0 1px 2px rgba(16,17,20,.05), 0 8px 28px rgba(16,17,20,.07);
}

html { scroll-behavior: smooth; }
/* Hard guarantee: the document can never grow wider than the viewport, so centered
   content stays centered at any resolution and in full-page captures (user hit an
   off-centre hero on a wide/hi-res screen — canvas was wider than the layout). */
html, body { overflow-x: hidden; overflow-x: clip; }
body { font-family: var(--font); background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.sect-stone { background: var(--stone); }
.sect-black { background: var(--black); color: #f4f4f4; }

/* Type scale */
.kicker { font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
h1, .h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 900; letter-spacing: -.025em; line-height: 1.04; }
h2, .h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.12; margin-bottom: 18px; }
h3 { font-weight: 800; letter-spacing: -.01em; }
.lead { font-size: 1.13rem; color: var(--ink-60); line-height: 1.7; max-width: 620px; }
.sect-black .lead { color: #c9c9cc; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 10px; font: 700 .93rem/1 var(--font); letter-spacing: .01em; text-decoration: none; cursor: pointer; border: 1.5px solid transparent; transition: transform .18s ease, background .18s ease, border-color .18s, color .18s; }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ink:hover { background: var(--ink); color: #fff; }
.btn-white { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-white:hover { background: #fff; color: var(--ink); }
.btn-wa { background: #1fa855; color: #fff; }
.btn-wa:hover { background: #17853f; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.text-link { font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; transition: color .15s; }
.text-link:hover { color: var(--red); }

/* ── Header (black bar, burger-first nav) ── */
header.lt {
  position: fixed; inset: 0 0 auto; z-index: 300;
  background: rgba(12,12,13,.97);
  border-bottom: 1px solid rgba(255,255,255,.06); transition: box-shadow .2s, background .2s;
}
header.lt.scrolled { background: rgba(12,12,13,.99); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.nav-bar { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 125px; max-width: 1560px; margin: 0 auto; padding: 0 clamp(24px, 3.2vw, 48px); }
.brand-lt { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.brand-lt img { width: 210px; height: auto; mix-blend-mode: screen; }
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-circle { width: 42px; height: 42px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background .18s, color .18s, border-color .18s; }
.icon-circle:hover { background: #fff; color: var(--ink); border-color: #fff; }
.nav-cta-lt .btn { padding: 7px 13px; font-size: 11px; font-weight: 600; letter-spacing: .02em; border-radius: 5px; }
.btn-book { gap: 7px; }
.btn-book svg { flex-shrink: 0; width: 13px; height: 13px; }

#lt-toggle { display: none; }
label.lt-burger { display: block; width: 46px; height: 46px; position: relative; cursor: pointer; border-radius: 10px; transition: background .15s; }
label.lt-burger:hover { background: rgba(255,255,255,.08); }
label.lt-burger span, label.lt-burger span::before, label.lt-burger span::after { content: ""; position: absolute; left: 10px; width: 26px; height: 2.5px; background: #fff; transition: all .25s; }
label.lt-burger span { top: 22px; }
label.lt-burger span::before { top: -8px; left: 0; }
label.lt-burger span::after { top: 8px; left: 0; }
#lt-toggle:checked ~ label.lt-burger span { background: transparent; }
#lt-toggle:checked ~ label.lt-burger span::before { transform: translateY(7px) rotate(45deg); }
#lt-toggle:checked ~ label.lt-burger span::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Menu: left drawer + flyout panel (exact .ca pattern) ── */
.mm-toggle { position: absolute; opacity: 0; pointer-events: none; }
.lt-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 380;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; cursor: pointer;
}
#lt-toggle:checked ~ .lt-backdrop { opacity: 1; visibility: visible; }
nav.lt-nav {
  position: fixed; left: 0; top: 0; bottom: 0; width: min(320px, 84vw);
  background: #fff; z-index: 400; transform: translateX(-102%);
  transition: transform .3s ease; overflow-y: auto;
  padding: 128px 20px 34px; display: flex; flex-direction: column;
}
#lt-toggle:checked ~ nav.lt-nav { transform: none; }
label.menu-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  background: #ececec; border-radius: 50%; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
label.menu-close:hover { background: #ddd; }
label.menu-close::before, label.menu-close::after {
  content: ""; position: absolute; width: 15px; height: 1.8px; background: #4a4c52;
}
label.menu-close::before { transform: rotate(45deg); }
label.menu-close::after { transform: rotate(-45deg); }
nav.lt-nav ul { list-style: none; margin: 0; padding: 0; }
nav.lt-nav .nl {
  display: block; padding: 7px 0; margin-bottom: 7px;
  font: 700 20px/24px 'Montserrat', var(--font);
  letter-spacing: normal; text-transform: uppercase; text-align: left;
  color: #121212; text-decoration: none; transition: color .15s; cursor: pointer;
}
nav.lt-nav .nl:hover { color: var(--red); }
#mm-services:checked ~ nav.lt-nav label[for="mm-services"],
#mm-brands:checked ~ nav.lt-nav label[for="mm-brands"],
#mm-perf:checked ~ nav.lt-nav label[for="mm-perf"] { color: var(--red); }
.menu-socials {
  margin-top: auto; padding-top: 26px;
  border-top: 1px solid var(--line); display: flex; gap: 26px; align-items: center;
}
.menu-socials a { color: #1a1c22; display: flex; }
.menu-socials a:hover { color: var(--red); }
.menu-socials svg { width: 26px; height: 26px; }
/* flyout second panel */
.mm-panel {
  position: fixed; left: min(320px, 84vw); top: 0; bottom: 0; width: min(437px, 84vw);
  background: #f5f5f5; z-index: 395;
  transform: translateX(-210%); visibility: hidden;
  transition: transform .3s ease .04s, visibility .3s .04s;
  overflow-y: auto; padding: 116px 0 25px 15px;
}
#lt-toggle:checked ~ #mm-services:checked ~ .mm-p-services,
#lt-toggle:checked ~ #mm-brands:checked ~ .mm-p-brands,
#lt-toggle:checked ~ #mm-perf:checked ~ .mm-p-perf { transform: none; visibility: visible; }
.mm-panel a {
  display: block; padding: 14px 20px 14px 24px;
  font: 600 13px/1.4 'Montserrat', var(--font);
  letter-spacing: 1.8px; text-transform: uppercase;
  color: #121212; text-decoration: none; transition: color .15s;
}
.mm-panel a:hover { color: var(--red); }
/* single close X — lives on the panel when open, on the drawer otherwise */
#mm-services:checked ~ nav.lt-nav .menu-close,
#mm-brands:checked ~ nav.lt-nav .menu-close,
#mm-perf:checked ~ nav.lt-nav .menu-close { display: none; }
@media (max-width: 860px) {
  .mm-panel { left: 0; width: min(320px, 84vw); z-index: 405; }
}

/* ── Logo carousels (matched to .ca: 74px cells, 48px gap) ── */
.mq { overflow: hidden; width: 100%; max-width: 100%; background: var(--paper); padding: 18px 0; }
/* 8 logo-set copies in the track: -50% loop = 4 sets (~4800px) of coverage, so the belt
   never runs dry on wide screens. Duration ×4 keeps the same visual speed as before. */
.mq-track { display: flex; gap: 48px; width: max-content; animation: mq-scroll 180s linear infinite; align-items: center; }
.mq-track a { display: flex; align-items: center; }
.mq-track img { height: 74px; width: auto; max-width: 150px; object-fit: contain; }
@keyframes mq-scroll { to { transform: translateX(-50%); } }
.mq-rev { border-top: 1px solid var(--line); border-bottom: 0; }
.mq-rev .mq-track { animation-direction: reverse; }
.mq-head { text-align: center; padding: 52px 24px 6px; }
.mq-head .kicker { margin-bottom: 0; color: var(--ink-40); }
@media (prefers-reduced-motion: reduce) { .mq-track { animation: none; flex-wrap: wrap; } }

/* ── Hero ── */
/* Hero content is vertically CENTRED in the photo (like .ca) — was bottom-anchored,
   which left a large empty band above the content on tall/hi-res screens. Top padding
   clears the 125px fixed header so the optical centre sits in the visible photo area. */
.hero-lt { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-lt img.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Hero tint — flat base darkens the whole photo for legibility, gradient keeps depth
   (heavier at top under the black header, heaviest at the bottom into the page). */
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(12,12,13,.60) 0%, rgba(12,12,13,.46) 42%, rgba(12,12,13,.88) 100%),
  rgba(12,12,13,.24); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 760px; margin: 0 auto; padding: 145px 28px 48px; color: #fff; text-align: center; }
.hero-logo-lt { width: min(380px, 64vw); height: auto; margin: 0 auto 26px; mix-blend-mode: screen; }
.hero-content h1 { max-width: 640px; margin: 0 auto; text-shadow: 0 2px 30px rgba(0,0,0,.45); font-size: clamp(1.4rem, 2.6vw, 2.05rem); font-weight: 800; letter-spacing: -.015em; }
.hero-content .lead { color: rgba(255,255,255,.92); margin: 14px auto 30px; max-width: 560px; font-size: 1rem; text-shadow: 0 1px 18px rgba(0,0,0,.5); }
.hero-content .btn-row { justify-content: center; }
.hero-content .btn { padding: 13px 26px; font-size: .88rem; }
.hero-note { margin-top: 24px; font-size: .68rem; letter-spacing: .1em; color: rgba(255,255,255,.55); text-transform: uppercase; }

/* ── Trust strip — FULL spec measured from .ca live DOM (1400px, Jul 16 2026):
   section.trust-strip: padding 34px 24px, bg linear-gradient(#161616→#101010), 1px rgba(255,255,255,.06)
   top+bottom borders (total strip 135px). Grid in CENTERED max-width 1280px container, pad 0 24px,
   columns 282.07/282.07/282.07/385.78 (= 1fr 1fr 1fr 1.368fr). Cell: pad 6px 28px, flex centred, 65px.
   Head 17px/20.4px/600/1.36px white; RED ACCENT <em> INSIDE HEAD IS 10.5px/500 #f70f0f (small, like sub —
   ".ca: SINCE 1992, MAHA AWD DYNO"); sub 10.5px/12.6px/500/2.31px #7d7d7d; 7px gap.
   Separators are 1px × 42px vertical-gradient ::before pseudo-elements, not full-height borders. ── */
.trust-lt { background: linear-gradient(#161616, #101010); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); padding: 34px 0; }
.trust-grid-lt { display: grid; grid-template-columns: 1fr 1fr 1fr 1.368fr; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.trust-grid-lt > div {
  position: relative; padding: 6px 28px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; gap: 7px; min-height: 65px;
}
.trust-grid-lt > div + div::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 42px;
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.16), rgba(255,255,255,0));
}
.trust-grid-lt strong { display: block; font-size: 17px; line-height: 20.4px; font-weight: 600; letter-spacing: 1.36px; text-transform: uppercase; color: #fff; white-space: nowrap; }
.trust-grid-lt strong em { font-style: normal; font-size: 10.5px; font-weight: 500; letter-spacing: 2.31px; color: #f70f0f; }
.trust-grid-lt strong em.star { color: #f0a500; font-size: 14.45px; letter-spacing: normal; }
.trust-grid-lt span { display: block; margin-top: 0; font-size: 10.5px; line-height: 12.6px; font-weight: 500; letter-spacing: 2.31px; text-transform: uppercase; color: #7d7d7d; }

/* ── Editorial cards ── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.ed-card { display: block; text-decoration: none; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform .22s ease, box-shadow .22s ease; }
.ed-card:hover { transform: translateY(-5px); box-shadow: 0 3px 6px rgba(16,17,20,.05), 0 20px 44px rgba(16,17,20,.12); }
.ed-card figure { aspect-ratio: 4 / 3; overflow: hidden; }
.ed-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ed-card:hover figure img { transform: scale(1.045); }
.ed-card .ed-body { padding: 26px 26px 28px; }
.ed-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.ed-card p { font-size: .93rem; color: var(--ink-60); line-height: 1.6; }
.ed-card .ed-link { display: inline-block; margin-top: 16px; font: 700 .85rem/1 var(--font); color: var(--red); }
.ed-card .ed-link::after { content: " →"; }

.brand-strip { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; }
.brand-strip a { font: 700 .8rem/1 var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); text-decoration: none; padding: 6px 2px; }
.brand-strip a:hover { color: var(--red); }

/* ── Split editorial ── */
.split-lt { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-lt figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-card); }
.split-lt figure img { width: 100%; height: 100%; object-fit: cover; }
.split-lt p { color: var(--ink-60); margin-bottom: 16px; }
.split-lt p strong { color: var(--ink); }
.fact-row { display: flex; gap: 40px; margin: 26px 0 30px; }
.fact-row div strong { display: block; font-size: 1.7rem; font-weight: 900; letter-spacing: -.02em; }
.fact-row div span { font-size: .8rem; color: var(--ink-40); }

/* ── Services tiles ── */
.svc-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
.svc-tile { text-decoration: none; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3 / 3.6; display: flex; align-items: flex-end; }
.svc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,13,0) 42%, rgba(12,12,13,.78) 100%); }
.svc-tile:hover img { transform: scale(1.05); }
.svc-tile .svc-label { position: relative; z-index: 2; padding: 22px; color: #fff; }
.svc-tile h3 { font-size: 1.06rem; margin-bottom: 4px; }
.svc-tile span { font-size: .82rem; color: rgba(255,255,255,.78); }

/* ── Dark feature band ── */
.feature-dark { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.feature-dark figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 11; }
.feature-dark figure img { width: 100%; height: 100%; object-fit: cover; }
.sect-black .kicker { color: #ff716d; }

/* ── Wide lifestyle band ── */
.wide-band { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; }
.wide-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wide-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,13,.72) 0%, rgba(12,12,13,.38) 48%, rgba(12,12,13,.12) 100%); }
.wide-inner { position: relative; z-index: 2; color: #fff; max-width: 1200px; margin: 0 auto; padding: 90px 28px; width: 100%; }
.wide-inner h2 { max-width: 520px; }
.wide-inner p { max-width: 460px; color: rgba(255,255,255,.88); margin: 14px 0 30px; }

/* ── Enquiry ── */
.enquiry { text-align: center; }
.enquiry .lead { margin: 0 auto 36px; }
.enquiry-contacts { margin-top: 30px; display: flex; gap: 12px 34px; justify-content: center; flex-wrap: wrap; font-size: .92rem; color: var(--ink-60); }
.enquiry-contacts a { color: var(--ink); font-weight: 700; text-decoration: none; }
.enquiry-contacts a:hover { color: var(--red); }
.tbc { border-bottom: 1px dotted var(--ink-40); cursor: help; }

/* ── Footer ── */
footer.lt { background: var(--black); color: #d8d8da; padding: 74px 0 120px; }
.foot-grid-lt { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 46px; }
.foot-grid-lt img { width: 210px; height: auto; margin-bottom: 18px; mix-blend-mode: screen; }
.foot-grid-lt p { font-size: .87rem; color: #96979c; max-width: 300px; line-height: 1.7; }
footer.lt h4 { font: 800 .78rem/1 var(--font); letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
footer.lt ul { list-style: none; }
footer.lt li { margin-bottom: 10px; }
footer.lt li a { font-size: .88rem; color: #b9babe; text-decoration: none; }
footer.lt li a:hover { color: #fff; }
.foot-base { border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .8rem; color: #7c7d82; }
.foot-base a { color: #b9babe; text-decoration: none; }

/* ── Mobile bar ── */
.mbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 320; display: none; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mbar a { flex: 1; text-align: center; padding: 15px 6px; font: 700 .82rem/1.2 var(--font); color: var(--ink); text-decoration: none; }
.mbar a + a { border-left: 1px solid var(--line); }
.mbar .mb-book { background: var(--red); color: #fff; }

/* ══ Inner-page components (light system) ══ */
/* Inner-page hero — matched to .ca /pages/* hero measured from live DOM (1400px viewport, Jul 16 2026):
   section 95vh / min-height 508.2px, flex centred; content max-width 920px, padding 60px 24px;
   H1 52px / 80.6px / weight 800 / letter-spacing 1.5px. Top padding adds the 125px fixed header. */
.page-hero-lt { min-height: max(95vh, 508px); align-items: center; }
.page-hero-lt .hero-content { max-width: 920px; padding: 185px 24px 60px; }
.page-hero-lt .crumbs { color: rgba(255,255,255,.75); margin-bottom: 18px; font-size: .78rem; }
.page-hero-lt .crumbs a { color: rgba(255,255,255,.9); text-decoration: none; }
.page-hero-lt .crumbs a:hover { color: #fff; }
.page-hero-lt h1 { max-width: 920px; font-size: clamp(2rem, 3.7vw, 3.25rem); line-height: 1.55; font-weight: 800; letter-spacing: 1.5px; }
.page-hero-lt .lead { font-size: 1.06rem; line-height: 2.1; max-width: 720px; }
.page-hero-lt .kicker { color: #ffd9d8; }

/* container + sections used by inner pages */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section.alt { background: var(--stone); }
.eyebrow { font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.12; color: var(--ink); margin-bottom: 18px; }
.section-sub { font-size: 1.02rem; color: var(--ink-60); line-height: 1.75; max-width: 680px; }
.center .section-sub, .center .red-line { margin-left: auto; margin-right: auto; }
.red-line { width: 56px; height: 3px; background: var(--red); margin: 20px 0; }
.center { text-align: center; }

/* split blocks */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev > .visual { order: -1; }
.split p { color: var(--ink-60); font-size: .98rem; }
.split p + p { margin-top: 14px; }
.split p strong, .checks li strong { color: var(--ink); }
.visual { position: relative; min-height: 380px; border-radius: var(--radius); overflow: hidden;
  background: var(--stone-2); border: 1px solid var(--line); display: flex; align-items: flex-end; }
.visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visual .vh { position: relative; z-index: 1; padding: 18px 20px; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.6); }

/* checklists */
.checks { list-style: none; margin-top: 24px; }
.checks li { padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line); position: relative; font-size: .95rem; color: var(--ink-60); }
.checks li::before { content: ""; position: absolute; left: 0; top: 21px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }

/* card grids */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  text-decoration: none; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 3px 6px rgba(16,17,20,.05), 0 18px 40px rgba(16,17,20,.12); }
.card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 9px; }
.card p { font-size: .92rem; color: var(--ink-60); line-height: 1.6; flex: 1; }
.card .card-cta { margin-top: 16px; font-size: .84rem; font-weight: 700; color: var(--red); }
.card .card-cta::after { content: " →"; }

/* service columns */
.svc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.svc-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-card); }
.svc-col h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.svc-col > p { font-size: .88rem; color: var(--ink-60); margin-bottom: 14px; }
.svc-col ul { list-style: none; }
.svc-col li { font-size: .86rem; color: var(--ink-60); padding: 7px 0 7px 18px; position: relative; border-bottom: 1px solid var(--line); }
.svc-col li::before { content: ""; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

/* chips / model grid */
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px; text-align: center; }
.chip h4 { font-size: .95rem; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.chip p { font-size: .76rem; color: var(--ink-40); letter-spacing: .4px; }

/* area links */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.area-grid a { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; text-decoration: none; font-size: .9rem; transition: border-color .2s; }
.area-grid a:hover { border-color: rgba(229,36,32,.5); }
.area-grid strong { display: block; color: var(--ink); font-weight: 800; margin-bottom: 2px; }
.area-grid span { color: var(--ink-40); font-size: .78rem; }

/* FAQ */
.faq { max-width: 840px; margin: 44px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-size: 1rem; font-weight: 700; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--red); font-size: 1.5rem; font-weight: 300; transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--ink-60); font-size: .94rem; max-width: 92%; }

/* CTA band (dark, deliberate contrast) */
.cta-band { background: var(--black); color: #fff; text-align: center; padding: 90px 0; }
.cta-band .section-title { color: #fff; }
.cta-band .section-sub { color: #c9c9cc; margin: 0 auto; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }
.cta-band .note { margin-top: 20px; font-size: .82rem; color: #8b8c92; }

/* contact / form */
.form-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 54px; margin-top: 48px; align-items: start; }
.contact-list { list-style: none; }
.contact-list li { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--ink-60); }
.contact-list .cl-label { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 4px; }
.contact-list a { color: var(--ink); font-weight: 700; text-decoration: none; }
.contact-list a:hover { color: var(--red); }
form.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-60); margin-bottom: 7px; }
.f-field input, .f-field select, .f-field textarea { width: 100%; padding: 13px 14px; background: #fff; border: 1px solid #d8d7d3;
  border-radius: 8px; color: var(--ink); font-family: var(--font); font-size: .92rem; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--red); }
form.quote .btn { width: 100%; justify-content: center; margin-top: 6px; }
form.quote .privacy-note { margin-top: 14px; font-size: .76rem; color: var(--ink-40); text-align: center; }

/* blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { font-size: 1.45rem; font-weight: 800; color: var(--ink); margin: 40px 0 14px; }
.post-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.post-body p { color: var(--ink-60); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.post-body ul { margin: 0 0 16px 20px; color: var(--ink-60); }
.post-body li { margin-bottom: 8px; font-size: .96rem; }
.post-body a { color: var(--red); text-decoration: none; font-weight: 600; }
.post-body a:hover { text-decoration: underline; }
.post-meta { font-size: .74rem; color: var(--ink-40); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.marquee, .brand-strip, .trust-bar { display: none; }

@media (max-width: 1024px) {
  .card-grid, .svc-cols, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; gap: 34px; }
  .split.rev > .visual { order: 0; }
  .form-wrap { grid-template-columns: 1fr; gap: 34px; }
  .page-hero-lt { min-height: max(80vh, 460px); }
  .page-hero-lt .hero-content { padding: 150px 22px 54px; }
  .page-hero-lt h1 { line-height: 1.35; }
  .page-hero-lt .lead { line-height: 1.85; }
}
@media (max-width: 620px) {
  .card-grid, .svc-cols, .post-grid, .area-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .f-row { grid-template-columns: 1fr; }
}

/* ── Reveal animation ── */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ed-card, .svc-tile img, .btn { transition: none; }
}

/* ── Responsive ── */
@media (max-width: 1060px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid-lt { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-bar { height: 74px; }
  .brand-lt img { height: 40px; }
  .split-lt, .feature-dark { grid-template-columns: 1fr; gap: 36px; }
  .hero-lt { min-height: 78vh; }
  .mbar { display: flex; }
  section { padding: 70px 0; }
  footer.lt { padding-bottom: 140px; }
  .nav-cta-lt { display: none; }
}
@media (max-width: 620px) {
  .cards-3, .svc-4 { grid-template-columns: 1fr; }
  .trust-grid-lt { grid-template-columns: 1fr 1fr; row-gap: 22px; }
  .trust-grid-lt > div:nth-child(3)::before { display: none; }
  .foot-grid-lt { grid-template-columns: 1fr; }
  .fact-row { gap: 26px; flex-wrap: wrap; }
  .hero-content { padding: 125px 24px 44px; }
}

/* ══════════════════════════════════════════════════════════════════════
   Contact section + map strip — matched to .ca HOMEPAGE contact section,
   measured from live DOM Jul 17 2026:
   · section.contact: bg #121212, heading 44px left-aligned, form 582px
   · fields: label 11px/700/.88px uppercase #242424; input 46px, bg #fafafa,
     border 1.5px #e4e4e4, radius 9px, font 14.5px; textarea 140px;
     submit full-width 52px red (#f70f0f) radius 9px, 15px
   · map-strip: 480px; card right 98px, 346px, rgba(18,18,18,.96), radius 16,
     pad 34px 38px; eyebrow 11px/1.76px red; head 22px/800;
     Directions red radius-8 ~41px h 12.5px + Call Now 1.5px outline
   ══════════════════════════════════════════════════════════════════════ */

/* ── .ca field styling — applies to every form.quote (homepage + contact) ── */
.f-field label { font-size: 11px; font-weight: 700; letter-spacing: .88px; text-transform: uppercase; color: #242424; margin-bottom: 8px; }
.f-field input, .f-field select, .f-field textarea {
  height: 46px; padding: 0 15px; background: #fafafa; border: 1.5px solid #e4e4e4;
  border-radius: 9px; font-size: 14.5px; color: var(--ink);
}
.f-field textarea { height: 140px; padding: 13px 15px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
form.quote .btn { width: 100%; justify-content: center; height: 52px; border-radius: 9px; font-size: 15px; margin-top: 6px; }

/* ── Homepage contact band (dark, like .ca section.contact) ── */
.enq-dark { background: #121212; padding: 96px 0; }
.enq-grid { display: grid; grid-template-columns: 1fr 582px; gap: 64px; align-items: start; }
.enq-dark .kicker { color: #ff6b6a; }
.enq-dark h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 2.75rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 16px; }
.enq-dark .lead { color: #b9bcc2; font-size: 1.02rem; line-height: 1.75; max-width: 480px; margin: 0 0 30px; }
.enq-rows { list-style: none; margin: 0; padding: 0; }
.enq-rows li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #e8e8ea; font-size: .95rem; }
.enq-rows li:last-child { border-bottom: 0; }
.enq-rows a { color: #fff; text-decoration: none; }
.enq-rows a:hover { color: #ff6b6a; }
.enq-lab { font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #7d7d7d; min-width: 52px; }
.enq-wa {
  display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff !important;
  font-weight: 700; font-size: .92rem; padding: 12px 22px; border-radius: 9px; text-decoration: none;
  transition: background .15s;
}
.enq-wa:hover { background: #1fb457; color: #fff !important; }
.enq-rows li:first-child { border-bottom: 0; padding-top: 0; padding-bottom: 18px; }
.enq-card { background: #fff; border-radius: 16px; padding: 34px 38px; box-shadow: 0 24px 64px rgba(0,0,0,.45); }
.enq-card form.quote { background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; }

/* ── Map strip (dark map + facility card, like .ca) ── */
.map-strip-lt { position: relative; height: 480px; background: #101010; overflow: hidden; }
.map-strip-lt iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
  filter: invert(90%) hue-rotate(180deg) grayscale(25%) contrast(92%);
}
.map-card-lt {
  position: absolute; right: 98px; top: 50%; transform: translateY(-50%);
  width: 346px; background: rgba(18,18,18,.96); border-radius: 16px; padding: 34px 38px;
  color: #fff; box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.map-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 76px; height: 4px; background: var(--red); border-radius: 0 0 4px 4px; }
.map-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.76px; text-transform: uppercase; color: #f70f0f; margin: 0 0 10px; }
.map-card-lt h3 { font-size: 22px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.map-rows { list-style: none; margin: 0 0 22px; padding: 0; }
.map-rows li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.55; color: #e8e8ea; margin-bottom: 12px; }
.map-rows li:last-child { margin-bottom: 0; }
.map-rows a { color: #fff; text-decoration: none; }
.map-rows a:hover { color: #ff6b6a; }
.map-btns { display: flex; gap: 12px; }
.map-btn-red, .map-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; height: 41px; padding: 0 22px;
  border-radius: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: background .15s, color .15s;
}
.map-btn-red { background: #f70f0f; color: #fff; }
.map-btn-red:hover { background: #d40c0c; }
.map-btn-ghost { border: 1.5px solid rgba(255,255,255,.85); color: #fff; }
.map-btn-ghost:hover { background: #fff; color: #121212; }

@media (max-width: 980px) {
  .enq-grid { grid-template-columns: 1fr; gap: 44px; }
  .enq-dark { padding: 72px 0; }
}
@media (max-width: 860px) {
  .map-strip-lt { height: auto; }
  .map-strip-lt iframe { position: relative; height: 320px; }
  .map-card-lt { position: relative; right: auto; top: auto; transform: none; width: auto; margin: -46px 16px 26px; }
}
@media (max-width: 620px) {
  .enq-card { padding: 26px 20px; }
}

/* optional-field marker (.ca pattern: "PHONE (optional)") */
.f-field label .opt { font-weight: 500; letter-spacing: .3px; text-transform: none; color: var(--ink-40); }
