/* Elite Auto Group — ESI section canon, chrome-on-black lockup */

:root {
  --yellow: #d7dce3;
  --yellow-deep: #b4bac4;
  --ink-on-yellow: #050506;
  --red: #c41e3a;
  --black: #050506;
  --asphalt: #101114;
  --asphalt-mid: #16181e;
  --asphalt-hover: #1c1f26;
  --slate: #2c313a;
  --steel: #8b929c;
  --mist: #12141a;
  --paper: #16181e;
  --line: rgba(215, 220, 227, 0.16);
  --text: #e8eaee;
  --muted: #9aa3ad;
  --focus: #d7dce3;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --header-h: 78px;
  --topbar-h: 42px;
  --font-display: "Sofia Sans Extra Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --display-tracking: 0.06em;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --ig1: #f58529;
  --ig2: #dd2a7b;
  --ig3: #8134af;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--ink-on-yellow);
  font-weight: 700;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--black);
  color: #fff;
  font-size: 0.875rem;
  min-height: var(--topbar-h);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.55rem 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar__item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.topbar__hours {
  color: var(--yellow);
  font-weight: 600;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 13, 16, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  color: #fff;
}

.brand__mark {
  width: 132px;
  height: auto;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  position: relative;
  transition: background 0.28s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.28s var(--ease), top 0.28s var(--ease);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 0.15rem;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  display: block;
  padding: 0.55rem 0.55rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--red);
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.75rem;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang button,
.lang a {
  border: 0;
  background: transparent;
  padding: 0.4rem 0.42rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--steel);
  text-decoration: none;
}

.lang button[aria-pressed="true"],
.lang a[aria-current="true"] {
  background: var(--yellow);
  color: var(--ink-on-yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn:hover {
  text-decoration: none;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--ink-on-yellow);
  border-color: var(--yellow);
}

.btn--yellow:hover {
  background: var(--yellow-deep);
  color: var(--ink-on-yellow);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: var(--yellow);
}

.btn--outline:hover {
  background: var(--yellow);
  color: var(--ink-on-yellow);
}

.btn--dark {
  background: var(--black);
  color: #fff;
}

.btn--dark:hover {
  background: var(--slate);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn--ghost:hover {
  background: var(--yellow);
  color: var(--ink-on-yellow);
}

.btn--cta {
  background: var(--yellow);
  color: var(--ink-on-yellow);
  border: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 1.35rem;
  padding-right: 1.15rem;
  min-height: 48px;
  font-size: 0.82rem;
}

.btn--cta:hover {
  background: var(--yellow-deep);
  color: var(--ink-on-yellow);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--asphalt);
}

.hero__media {
  position: absolute;
  inset: -14% 0;
  will-change: transform;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  transform-origin: center center;
}

.hero__media video {
  position: absolute;
  inset: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.62) 42%, rgba(5, 5, 6, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.82) 0%, rgba(5, 5, 6, 0.2) 48%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 38rem;
  margin-inline: 0;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--yellow);
}

.hero__lead {
  margin: 0 0 1.6rem;
  font-size: 1.125rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__proof {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__proof strong {
  color: #fff;
  font-weight: 700;
}

.hero__langs {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--yellow);
}

.hero__langs li + li::before {
  content: "·";
  margin: 0 0.7rem;
  color: rgba(215, 220, 227, 0.5);
}

/* ——— Promo strips ——— */
.promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}

.promo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem 1.75rem;
  color: #fff;
  text-decoration: none;
  border: 0;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.promo--dark {
  background: var(--asphalt);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.promo--dark:hover,
.promo--dark:focus-visible {
  background: #2a303a;
  color: #fff;
  box-shadow: inset 4px 0 0 var(--yellow);
}

.promo--yellow {
  background: var(--yellow);
  color: var(--ink-on-yellow);
}

.promo.promo--yellow:hover,
.promo.promo--yellow:focus-visible {
  background: #f3f5f8;
  color: var(--ink-on-yellow);
  box-shadow: inset 4px 0 0 var(--red);
}

.promo--yellow p {
  color: rgba(5, 5, 6, 0.78);
}

.promo.promo--yellow:hover p,
.promo.promo--yellow:focus-visible p {
  color: rgba(5, 5, 6, 0.82);
}

.promo--yellow .promo__go {
  color: var(--ink-on-yellow);
}

.promo--yellow .promo__icon {
  background: var(--ink-on-yellow);
  color: var(--yellow);
}

.promo__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink-on-yellow);
  border-radius: 50%;
}

.promo__icon svg {
  width: 26px;
  height: 26px;
}

.promo h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  line-height: 1;
}

.promo p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.promo--yellow p {
  color: rgba(5, 5, 6, 0.8);
}

.promo__go {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  font-size: 0.8rem;
  color: var(--yellow);
  transition: transform 0.28s var(--ease), letter-spacing 0.28s var(--ease);
}

.promo:hover .promo__go,
.promo:focus-visible .promo__go {
  transform: translateX(6px);
  letter-spacing: 0.12em;
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 0;
}

.section--mist {
  background: var(--mist);
}

.section--dark {
  background: var(--asphalt);
  color: #fff;
}

.section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}

.section--dark .section__head h2 {
  color: #fff;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section--dark .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

.section__rule {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 0.9rem auto 0;
  border: 0;
}

/* ——— Service tiles ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem 1.35rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.service-tile:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  color: var(--text);
}

.service-tile__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: var(--yellow-deep);
}

.service-tile__icon svg,
.service-row__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  stroke-width: 1;
}

.service-tile__icon :is(path, circle, rect, line, polyline),
.service-row__icon :is(path, circle, rect, line, polyline) {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.service-tile h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  line-height: 1.1;
}

.service-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.services-more {
  margin-top: 2rem;
  text-align: center;
}

/* ——— Split / tabs panel ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.split__media {
  min-height: 420px;
  background: var(--black);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__body {
  padding: 2.25rem 2rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.tabs button {
  border: 0;
  background: transparent;
  padding: 0.7rem 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.tabs button[aria-selected="true"] {
  color: #fff;
  border-bottom-color: var(--yellow);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
}

.tab-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink-on-yellow);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.section--dark .step p {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark .step h3 {
  color: #fff;
}

/* ——— Why / pillars ——— */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border-top: 3px solid var(--yellow);
}

.pillar h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
}

.pillar p {
  margin: 0;
  color: var(--muted);
}

/* ——— Languages strip ——— */
.langs-strip {
  background: var(--yellow);
  color: var(--ink-on-yellow);
  padding: 1.25rem 0;
}

.langs-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.langs-strip strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.langs-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.langs-strip li {
  background: var(--ink-on-yellow);
  color: #fff;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ——— FAQ ——— */
.faq {
  max-width: 46rem;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.15rem 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2rem 1.1rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  padding-right: 1.5rem;
}

/* ——— CTA band ——— */
.cta-band {
      background:
        linear-gradient(105deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.62)),
        url("../stock/hero.jpg") center / cover;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.cta-band__phone {
  display: block;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: var(--display-tracking);
}

.cta-band__phone:hover {
  color: #fff;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ——— Titlebar (inner pages) ——— */
.titlebar {
  --gear-lg-size: 176px;
  --gear-sm-size: 96px;
  --gear-pitch-lg: calc(var(--gear-lg-size) * 25 / 64);
  --gear-pitch-sm: calc(var(--gear-sm-size) * 16 / 64);
  --gear-mesh-dist: calc(var(--gear-pitch-lg) + var(--gear-pitch-sm));
  --gear-teeth-lg: 12;
  --gear-teeth-sm: 8;
  --gear-phase-lg: 105deg;
  --gear-spin-duration: 90s;

  background: var(--asphalt);
  color: #fff;
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.titlebar__gears {
  position: absolute;
  right: -1.75rem;
  bottom: 0.35rem;
  width: calc(var(--gear-lg-size) + var(--gear-mesh-dist));
  height: var(--gear-lg-size);
  pointer-events: none;
  z-index: 0;
}

.titlebar__gear {
  transform-origin: center center;
  background: center / contain no-repeat;
}

.titlebar__gear--lg {
  position: absolute;
  right: 0;
  top: 40px;
  width: var(--gear-lg-size);
  height: var(--gear-lg-size);
  background-image: url("../icons/gear-decor.svg");
  transform: rotate(var(--gear-phase-lg));
  z-index: 1;
}

.titlebar__gear-orbit {
  position: absolute;
  right: calc(var(--gear-lg-size) / 2);
  top: calc(var(--gear-lg-size) / 2);
  width: 0;
  height: 0;
  z-index: 2;
  transform: translate(calc(-1 * var(--gear-mesh-dist)), 0);
}

.titlebar__gear--sm {
  position: absolute;
  left: 0;
  top: 80px;
  width: var(--gear-sm-size);
  height: var(--gear-sm-size);
  background-image: url("../icons/gear-decor-sm.svg");
  transform: translate(-50%, -50%);
}

.titlebar h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.titlebar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

/* ——— Services list page ——— */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.service-row:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.service-row__icon {
  width: 52px;
  height: 52px;
  color: var(--yellow-deep);
}

.service-row__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  stroke-width: 1;
}

.service-row__icon :is(path, circle, rect, line, polyline) {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.service-row h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

/* ——— Courtesy car ——— */
.courtesy {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  grid-template-areas: "copy gallery";
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.courtesy__copy {
  grid-area: copy;
  padding: 2.5rem 2.25rem;
}

.courtesy__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
}

.courtesy__copy > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.courtesy__model {
  margin: -0.25rem 0 1.05rem;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.98rem;
}

.courtesy__copy .check-list {
  margin: 0 0 1.15rem;
}

.courtesy__note {
  margin: 0 0 1.35rem;
  color: var(--steel);
  font-size: 0.95rem;
}

.courtesy__gallery {
  grid-area: gallery;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  min-width: 0;
  background: var(--black);
}

.courtesy__media {
  position: relative;
  min-height: 220px;
  background: var(--black);
}

.courtesy__media picture,
.courtesy__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.courtesy__media img {
  object-fit: cover;
  display: block;
}

.courtesy__rate {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  align-content: center;
  text-align: left;
  background: var(--yellow);
  color: var(--ink-on-yellow);
  padding: 0.75rem 1.05rem 0.7rem;
  min-width: 9.5rem;
  min-height: 0;
}

.courtesy__rate-row {
  display: grid;
  gap: 0.2rem;
}

.courtesy__rate-row--hire {
  padding-top: 0.5rem;
  border-top: 1px solid color-mix(in srgb, var(--ink-on-yellow) 28%, transparent);
}

.courtesy__amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: var(--display-tracking);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.courtesy__period {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  font-size: 0.72rem;
}

.courtesy__shots {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.courtesy__shot {
  appearance: none;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--black);
  color: inherit;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.58;
}

.courtesy__shot:last-child {
  border-right: 0;
}

.courtesy__shot.is-active,
.courtesy__shot:hover {
  opacity: 1;
}

.courtesy__shot.is-active {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.courtesy__shot picture,
.courtesy__shot img {
  display: block;
  width: 100%;
  height: 100%;
}

.courtesy__shot img {
  object-fit: cover;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--mist);
  padding: 1.75rem;
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
}

.contact-card dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-card dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.2rem;
}

.contact-card dd {
  margin: 0;
  font-weight: 600;
}

.contact-card a {
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--red);
}

.map-frame {
  margin-top: 1.25rem;
  border: 0;
  width: 100%;
  min-height: 260px;
  filter: grayscale(0.2) contrast(1.05);
}

.form {
  position: relative;
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: var(--paper);
  color: var(--text);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--black);
  outline: 2px solid var(--yellow);
  outline-offset: 0;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form__error {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.eag-ilink {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.eag-ilink:hover {
  color: var(--red);
}

.section--dark .eag-ilink:hover,
.titlebar .eag-ilink:hover {
  color: var(--yellow);
}

.form__hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form__ok {
  display: none;
  margin: 0;
  color: #1a7f3c;
  font-size: 0.9rem;
  font-weight: 600;
}

.form.is-ok .form__ok {
  display: block;
}

.form.is-loading button[type="submit"] {
  opacity: 0.7;
  cursor: wait;
}

/* ——— About ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-grid h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
}

.about-grid p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.about-photo {
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* ——— Hours table ——— */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-table th {
  font-weight: 700;
  width: 42%;
}

.hours-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.25rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 0.85rem;
}

.site-footer .brand__tag {
  color: var(--yellow);
}

.site-footer .footer-contact {
  margin-top: 1rem;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 22rem;
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.site-footer .hours-table th,
.site-footer .hours-table td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .hours-note {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.35rem;
}

.footer-legal a[aria-current="page"] {
  color: var(--yellow);
}

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(11, 13, 16, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.blog-card:hover {
  border-color: rgba(215, 220, 227, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  background: var(--asphalt);
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 1.25rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-card__meta time {
  font-weight: 600;
}

.blog-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
  color: var(--text);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.blog-card__more {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.18);
  color: #f3c5cc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
}

.titlebar--blog {
  --gear-lg-size: 196px;
  --gear-sm-size: 107px;
}

.titlebar--blog .titlebar__gears {
  right: -2rem;
  bottom: 0.15rem;
}

/* ——— Article (single post) ——— */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.5rem;
  align-items: start;
}

.article {
  max-width: 42rem;
}

.article__head {
  margin-bottom: 1.75rem;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.article__meta time {
  font-weight: 600;
}

.article h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
  color: var(--text);
}

.article__lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.article__figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--asphalt);
}

.article__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.article__body {
  color: var(--muted);
  line-height: 1.7;
}

.article__body h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text);
}

.article__body p {
  margin: 0 0 1rem;
}

.article__body ul,
.article__body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.article__body li + li {
  margin-top: 0.35rem;
}

.article__body a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article__body a:hover {
  color: var(--red);
}

.article__cta {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.article__cta h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}

.article__cta p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.article__cta .btn {
  margin-right: 0.5rem;
}

.article__cta .btn--outline {
  color: var(--yellow);
}

.article-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.article-aside__box {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.article-aside__box h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
  color: var(--text);
}

.article-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-aside__list li + li {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--mist);
}

.article-aside__list a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
}

.article-aside__list a:hover {
  color: var(--red);
}

.article-aside__list time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
}

.article-back:hover {
  color: var(--red);
}

.article-back svg {
  width: 16px;
  height: 16px;
}

/* ——— Legal pages ——— */
.legal-doc {
  max-width: 42rem;
}

.legal-doc__updated {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-doc h2 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--text);
}

.legal-doc p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-doc a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-doc a:hover {
  color: var(--yellow-deep);
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(11, 13, 16, 0.28);
  text-decoration: none;
}

.wa-float:hover {
  color: #fff;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ——— Motion ——— */
@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    animation: rise 0.85s var(--ease) both;
  }

  .btn--cta {
    transition: background 0.25s var(--ease), clip-path 0.35s var(--ease);
  }

  .btn--cta:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .tab-panel {
    animation: panelIn 0.35s var(--ease) both;
  }

  .service-tile:hover .service-tile__icon :is(path, circle, rect, line, polyline),
  .service-row:hover .service-row__icon :is(path, circle, rect, line, polyline),
  .courtesy:hover .courtesy__icon :is(path, circle, rect, line, polyline) {
    animation: icon-draw 0.7s var(--ease) both;
  }

  .titlebar__gear--lg {
    animation: gear-lg-mesh var(--gear-spin-duration) linear infinite;
  }

  .titlebar__gear--sm {
    animation: gear-sm-mesh var(--gear-spin-duration) linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: none;
  }

  .hero__media {
    inset: 0;
    will-change: auto;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes icon-draw {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes gear-lg-mesh {
  from {
    transform: rotate(105deg);
  }
  to {
    transform: rotate(465deg);
  }
}

@keyframes gear-sm-mesh {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-540deg);
  }
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .services-grid,
  .steps,
  .pillars,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .blog-grid,
  .article-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .courtesy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "copy";
  }

  .courtesy__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .courtesy__rate {
    min-height: 0;
  }

  .split__media {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  /* Absolute under sticky header — fixed + topbar offset mis-aligned
     because sticky creates the containing block for fixed descendants. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 1rem 1.15rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    box-shadow: var(--shadow);
    max-height: min(70vh, calc(100dvh - var(--header-h)));
    overflow-y: auto;
    z-index: 60;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__list a {
    padding: 0.85rem 0.15rem;
    border-bottom: 1px solid var(--mist);
  }

  .nav__tools {
    margin: 0.85rem 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .nav__tools .lang {
    align-self: flex-start;
    flex-shrink: 0;
  }

  .lang button,
  .lang a {
    min-width: 2.5rem;
    padding: 0.5rem 0.7rem;
  }

  .btn--cta {
    clip-path: none;
    width: 100%;
  }

  .topbar__inner {
    gap: 0.35rem 1rem;
  }

  .promos {
    grid-template-columns: 1fr;
  }

  .promo--dark {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .promo:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar__meta {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .service-list,
  .steps,
  .pillars,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .blog-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .courtesy__copy {
    padding: 1.75rem 1.25rem;
  }

  .article-aside {
    position: static;
  }

  :root {
    --header-h: 72px;
  }

  .brand__mark {
    width: 112px;
    height: auto;
  }

  .brand__text {
    display: flex;
  }

  .topbar {
    font-size: 0.8rem;
  }

  .topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.85rem;
    padding: 0.45rem 0;
  }

  .topbar__meta {
    display: contents;
    font-size: inherit;
  }

  .topbar__meta .topbar__item:first-child {
    flex: 1 0 100%;
    min-width: 0;
  }

  .topbar__meta .topbar__item:last-child {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .topbar__hours {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__content {
    padding: 3.5rem 0 2.5rem;
  }

  .hero__actions {
    gap: 0.65rem;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 9.5rem);
  }

  .hero__langs {
    gap: 0.45rem 0;
    font-size: 0.95rem;
  }

  .hero__langs li + li::before {
    margin: 0 0.55rem;
  }

  .promo {
    grid-template-columns: auto 1fr;
    padding: 1.25rem 1.15rem;
    gap: 0.85rem;
  }

  .promo__go {
    display: none;
  }

  .promo h2 {
    font-size: 1.45rem;
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 3.25rem 0;
  }

  .wa-float {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}


/* ——— Elite dark chrome extras ——— */
::selection {
  background: var(--red);
  color: #fff;
}

html {
  scrollbar-color: var(--yellow) var(--asphalt);
}

.site-header {
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  background: transparent;
  border-color: var(--line);
}

.brand__mark {
  width: 132px;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.site-footer .brand__mark {
  width: 120px;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.9) 0%, rgba(5, 5, 6, 0.58) 46%, rgba(5, 5, 6, 0.32) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.78) 0%, transparent 52%);
}

.hero h1 span:last-child {
  color: var(--yellow);
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  min-height: 420px;
  background: var(--black);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.video-card img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 6, 0.55));
}

.video-card__play span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 6, 0.72);
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.video-card__play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.video-card:hover .video-card__play span {
  background: var(--yellow);
  color: var(--ink-on-yellow);
}

.ig-float {
  background: linear-gradient(135deg, var(--ig1), var(--ig2) 55%, var(--ig3));
}

.ig-embed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.ig-embed a,
.ig-embed button,
.ig-embed figure {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  background: var(--black);
  text-decoration: none;
  color: #fff;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.ig-embed figure {
  cursor: default;
}

.ig-embed img,
.ig-embed video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.ig-embed .is-video::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.6));
}

.form__copy {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: var(--mist);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  white-space: pre-wrap;
}

.hours-pending {
  color: var(--yellow);
  font-weight: 700;
}

.lightbox {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: min(1080px, calc(100vw - 1.5rem));
  width: 100%;
}

.lightbox::backdrop {
  background: rgba(5, 5, 6, 0.9);
}

.lightbox__panel {
  position: relative;
  background: var(--black);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox__video {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #000;
}

.lightbox__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.78);
  color: var(--yellow);
  cursor: pointer;
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--yellow);
  color: var(--ink-on-yellow);
  border-color: var(--yellow);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media video {
    display: none;
  }
}

@media (max-width: 960px) {
  .ig-embed {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ig-embed {
    grid-template-columns: 1fr;
  }
  .brand__mark {
    width: 96px;
    height: auto;
  }
  .video-card,
  .video-card img,
  .video-card video {
    min-height: 280px;
  }
}
