/* =====================================================================
   CAR TIME AUTOMOTIVE — first draft stylesheet
   Palette: black / red / white. Modern, high-contrast, "performance garage".
   No frameworks, no dependencies. Edit tokens in :root to rebrand instantly.
   ===================================================================== */

:root {
  /* Brand */
  --red: #e11528;
  --red-700: #b00f1d;
  --red-300: #ff4d5e;
  --black: #0a0a0b;
  --ink: #141416;
  --ink-2: #1c1c20;
  --white: #ffffff;
  --paper: #f6f6f7;

  /* Text */
  --text: #18181b;
  --text-soft: #51515a;
  --text-onblack: #f4f4f5;
  --text-onblack-soft: #a9a9b2;

  /* UI */
  --line: #e6e6e9;
  --line-dark: rgba(255, 255, 255, 0.1);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.25);
  --shadow-red: 0 14px 34px -14px rgba(225, 21, 40, 0.55);

  --container: 1180px;
  --header-h: 70px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.ic { width: 1em; height: 1em; fill: currentColor; flex: none; }
.ic[viewBox] path, .ic[viewBox] circle { } /* fill icons use currentColor */

/* Outline-style icons (stroke) used in cards/lists */
.card__icon svg, .why__ico svg, .infoline__ico svg, .logo__mark svg {
  fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.8em 1.4em; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--lg { padding: 1em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(225,21,40,0.7); }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost-dark:hover { border-color: var(--red); color: var(--red); }

/* ---------- Top bar ---------- */
.topbar {
  background: #000; color: var(--text-onblack-soft);
  font-size: 0.8rem; border-bottom: 1px solid var(--line-dark);
}
.topbar__inner { display: flex; align-items: center; gap: 4px 14px; min-height: 38px; padding: 5px 0; justify-content: center; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__item .ic { color: var(--red-300); }
.topbar a.topbar__item:hover { color: #fff; }
.topbar__sep { opacity: 0.4; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s, height 0.3s;
}
.header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.logo__mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--red); border-radius: 11px; color: #fff;
  box-shadow: var(--shadow-red);
}
.logo__mark svg { width: 24px; height: 24px; }
.logo__img { height: 44px; width: auto; display: block; }
.logo--footer .logo__img { height: 40px; }
.logo__text { font-family: var(--font-display); font-size: 1.32rem; letter-spacing: 0.02em; line-height: 0.9; display: flex; flex-direction: column; }
.logo__sub { font-size: 0.6rem; letter-spacing: 0.42em; color: var(--red-300); font-family: var(--font); font-weight: 700; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav__link {
  color: var(--text-onblack-soft); font-weight: 600; font-size: 0.92rem;
  padding: 0.5em 0.85em; border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav__link--cta { color: #fff; background: var(--red); margin-left: 6px; box-shadow: var(--shadow-red); }
.nav__link--cta:hover { background: var(--red-700); color: #fff; }

.header__call {
  display: none; align-items: center; gap: 8px; color: #fff; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.25); padding: 0.5em 1em; border-radius: 999px;
}
.header__call .ic { color: var(--red-300); }
.header__call:hover { border-color: var(--red); }

.navtoggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.navtoggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--black); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__gradient {
  position: absolute; inset: -30%;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(225,21,40,0.55), transparent 60%),
    radial-gradient(35% 45% at 80% 20%, rgba(225,21,40,0.30), transparent 60%),
    radial-gradient(50% 60% at 70% 80%, rgba(176,15,29,0.40), transparent 60%);
  filter: blur(20px);
  animation: heroFloat 16s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(3%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.04); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 80%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding: clamp(48px, 8vw, 90px) 22px clamp(56px, 8vw, 96px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-onblack-soft);
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  padding: 0.5em 0.9em; border-radius: 999px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225,21,40,0.25); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(225,21,40,0); } }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.5vw, 5rem);
  letter-spacing: 0.005em; line-height: 0.97; margin: 18px 0 0;
  text-transform: uppercase;
}
.hero__title .hl { color: var(--red); position: relative; }
.hero__lead { color: var(--text-onblack-soft); font-size: 1.12rem; max-width: 48ch; margin-top: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.hero__trust li { font-size: 0.9rem; color: var(--text-onblack-soft); }
.hero__trust strong { display: block; color: #fff; font-size: 1.05rem; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: 470px; object-fit: cover; border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 50%, rgba(225,21,40,0.12), rgba(10,10,11,0.5));
  pointer-events: none;
}
.hero__badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 2;
  background: #fff; color: var(--text); padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow); display: grid; gap: 2px;
}
.hero__badge-num { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.hero__badge-text { font-size: 0.78rem; font-weight: 600; color: var(--text-soft); }

/* ---------- Stats ---------- */
.stats { background: var(--red); color: #fff; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 30px 22px; }
.stat { text-align: center; padding: 6px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); display: block; line-height: 1; }
.stat__label { font-size: 0.85rem; font-weight: 600; opacity: 0.9; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.2); }

/* ---------- Section base ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.kicker { color: var(--red); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; }
.kicker--light { color: var(--red-300); }
.section__head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section__title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.3rem); text-transform: uppercase; margin-top: 10px; }
.section__title--light { color: #fff; }
.section__sub { color: var(--text-soft); font-size: 1.08rem; margin-top: 14px; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(4, 1fr); }
.grid--reviews { grid-template-columns: repeat(3, 1fr); }
.grid--reviews-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; margin-left: auto; margin-right: auto; }

/* ---------- Service cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red);
  transition: width 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(225,21,40,0.08); color: var(--red); margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 0.95rem; }
.card--cta {
  background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  border-color: transparent;
}
a.card { display: block; color: inherit; }
.card--cta h3 { color: #fff; }
.card--cta p { color: var(--text-onblack-soft); margin-bottom: 16px; }

/* ---------- Why ---------- */
.why { background: var(--paper); }
.why__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.why__list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 16px; }
.why__list li { display: flex; gap: 14px; align-items: flex-start; }
.why__ico {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--red); color: #fff; margin-top: 2px;
}
.why__ico svg { width: 17px; height: 17px; stroke-width: 2.4; }
.why__list strong { font-weight: 700; }
.why__media img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about__stamp {
  position: absolute; right: 18px; top: 18px; background: var(--red); color: #fff;
  font-family: var(--font-display); letter-spacing: 0.08em; font-size: 0.8rem;
  padding: 8px 14px; border-radius: 8px; box-shadow: var(--shadow-red);
}
.about__copy p { color: var(--text-soft); margin-top: 16px; }
.about__copy .section__title { margin-bottom: 6px; }
.about__hours-cards { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hourcard {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px; min-width: 130px;
  display: grid; gap: 2px;
}
.hourcard span { font-size: 0.78rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.hourcard strong { font-size: 1.05rem; }

/* ---------- Services "view all" ---------- */
.services__more { text-align: center; margin-top: 40px; }

/* ---------- Bring Your Own Parts band ---------- */
.byop { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.byop__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: clamp(56px, 8vw, 92px) 0; }
.byop__media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line-dark); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.byop__lead { color: var(--text-onblack-soft); font-size: 1.1rem; margin-top: 14px; max-width: 46ch; }
.byop__lead strong { color: #fff; }
.byop__points { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.byop__points li { position: relative; padding-left: 30px; color: #ececf0; font-weight: 500; }
.byop__points li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(225,21,40,0.2);
}

/* ---------- Meet the crew ---------- */
.team { background: var(--paper); }
.team__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.team__media img { width: 100%; height: 480px; object-fit: cover; object-position: center 35%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.team__copy p { color: var(--text-soft); margin-top: 16px; }
.team__copy .section__title { margin-bottom: 6px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink); color: #fff; }
.reviews .section__title { color: #fff; }
.reviews .section__sub { color: var(--text-onblack-soft); }
.review {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 28px 26px; position: relative;
}
.review-featured {
  max-width: 880px; margin: 0 auto 26px; text-align: center;
  background: linear-gradient(135deg, rgba(225,21,40,0.14), rgba(28,28,32,0.6));
  border: 1px solid rgba(225,21,40,0.35); border-radius: var(--radius-lg);
  padding: 38px 34px;
}
.review-featured .review__stars { justify-content: center; }
.review-featured blockquote {
  font-family: var(--font-display); font-weight: 400; text-transform: none;
  font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.2; color: #fff; letter-spacing: 0;
}
.review-featured figcaption { margin-top: 16px; color: var(--text-onblack-soft); font-weight: 600; }
.review__stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 14px; }
.review blockquote { font-size: 1.02rem; color: #ececf0; }
.review figcaption { margin-top: 16px; font-size: 0.85rem; color: var(--text-onblack-soft); font-weight: 600; }
.reviews__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.reviews .btn--ghost-dark { color: #fff; border-color: rgba(255,255,255,0.25); }
.reviews .btn--ghost-dark:hover { border-color: var(--red); color: var(--red-300); }

/* ---------- Location ---------- */
.location__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.infoline { display: flex; gap: 14px; align-items: flex-start; margin: 20px 0; }
.infoline__ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(225,21,40,0.08); color: var(--red);
}
.infoline__ico svg { width: 22px; height: 22px; }
.infoline a:hover { color: var(--red); }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.location__map iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Contact ---------- */
.contact { position: relative; background: var(--black); color: #fff; overflow: hidden; }
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 15% 20%, rgba(225,21,40,0.4), transparent 60%),
    radial-gradient(40% 60% at 90% 90%, rgba(176,15,29,0.35), transparent 60%);
}
.contact__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact__lead { color: var(--text-onblack-soft); font-size: 1.1rem; margin-top: 16px; max-width: 42ch; }
.contact__bignum {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff;
}
.contact__bignum .ic { color: var(--red); font-size: 0.8em; }
.contact__bignum:hover { color: var(--red-300); }

.contact__form {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text-onblack-soft); }
.field input, .field textarea {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--line-dark); color: #fff;
  padding: 0.8em 1em; border-radius: 10px; font: inherit; transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #6b6b75; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: rgba(0,0,0,0.5); }
.contact__formnote { font-size: 0.8rem; color: var(--text-onblack-soft); text-align: center; margin-top: 2px; }
.field__opt { color: var(--text-onblack-soft); font-weight: 400; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: #000; color: var(--text-onblack-soft); padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.logo--footer { margin-bottom: 14px; }
.footer__brand p { font-size: 0.92rem; max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__col a, .footer__col p { display: block; color: var(--text-onblack-soft); font-size: 0.92rem; margin-bottom: 9px; }
.footer__col a:hover { color: var(--red-300); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 14px; font-size: 0.82rem; flex-wrap: wrap; }

/* ---------- Sticky mobile call ---------- */
.mobilecall {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff; font-weight: 800; letter-spacing: 0.02em;
  padding: 1em; border-radius: 999px; box-shadow: var(--shadow-red);
}
.mobilecall .ic { font-size: 1.2em; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; max-width: 560px; }
  .hero__media img { height: 320px; }
  .why__inner, .about__inner, .location__inner, .contact__inner, .byop__inner, .team__inner { grid-template-columns: 1fr; gap: 36px; }
  .why__media, .about__media, .team__media { max-width: 620px; }
  .about__media, .team__media { order: -1; }
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header__call { display: none; }
  .topbar__item--hours { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(10,10,11,0.98); backdrop-filter: blur(14px); padding: 14px;
    border-bottom: 1px solid var(--line-dark); gap: 4px;
    transform: translateY(-130%); transition: transform 0.35s var(--ease); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav__link { padding: 0.9em 1em; font-size: 1.05rem; }
  .nav__link--cta { margin: 6px 0 0; text-align: center; }
  .navtoggle { display: flex; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat:nth-child(3) { border-left: 0; }
  .grid--reviews { grid-template-columns: 1fr; }
  .mobilecall { display: flex; }
  .footer { padding-bottom: 80px; }
}

@media (max-width: 460px) {
  .grid--services { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__trust { gap: 18px; }
  .topbar__inner { font-size: 0.72rem; }
}

/* =====================================================================
   SERVICES PAGE
   ===================================================================== */
.svc-hero { background: var(--black); color: #fff; position: relative; overflow: hidden; text-align: center; }
.svc-hero__inner { position: relative; z-index: 1; padding: clamp(54px, 9vw, 104px) 22px; }
.svc-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4rem); }
.svc-hero p { color: var(--text-onblack-soft); max-width: 60ch; margin: 16px auto 0; font-size: 1.12rem; }
.svc-hero__cta { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.svc-detail { padding: clamp(48px, 7vw, 86px) 0; }
.svc-detail:nth-of-type(even) { background: var(--paper); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.svc-row--rev .svc-row__media { order: 2; }
.svc-row__media img { width: 100%; height: 430px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.svc-row__copy .kicker { margin-bottom: 8px; }
.svc-row__copy > p { color: var(--text-soft); margin-top: 14px; }
.svc-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.svc-list li { position: relative; padding-left: 28px; color: var(--text-soft); }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(225,21,40,0.12); box-shadow: inset 0 0 0 3px var(--red);
}

.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 20px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.5rem; line-height: 1; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 20px 18px; color: var(--text-soft); }

@media (max-width: 980px) {
  .svc-row { grid-template-columns: 1fr; gap: 30px; }
  .svc-row--rev .svc-row__media { order: -1; }
  .svc-row__media img { height: 290px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
