/* =========================================================
   Genesis Auto Repair — Stylesheet
   Brand: black + gold + chrome, blue accent (from logo)
   ========================================================= */

:root {
  --black: #0c0d11;
  --panel: #14161d;
  --panel-2: #1b1e27;
  --gold: #f5b301;
  --gold-bright: #ffc400;
  --chrome: #c9cdd4;
  --blue: #2ba6ff;
  --white: #ffffff;
  --muted: #aeb4c0;
  --line: rgba(255, 255, 255, 0.08);
  --maxw: 1200px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-head: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* guard against any element bleed on small screens */
  -webkit-tap-highlight-color: rgba(245, 179, 1, 0.25);
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #000; padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.gold { color: var(--gold); }
.kicker {
  font-family: var(--font-head);
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: var(--chrome); margin: 0 0 8px;
  font-size: 0.95rem;
}
.kicker.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-head);
  font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  font-size: 1.05rem; padding: 14px 26px; border-radius: 10px;
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #181203; box-shadow: 0 10px 24px rgba(245, 179, 1, 0.3); }
.btn--gold:hover { color: #181203; box-shadow: 0 14px 30px rgba(245, 179, 1, 0.45); }
.btn--ghost { background: transparent; border-color: var(--chrome); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: #07080b; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.topbar__inner { display: flex; gap: 26px; align-items: center; padding: 8px 0; flex-wrap: wrap; justify-content: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.topbar__item a { color: var(--muted); }
.topbar__item a:hover { color: var(--gold); }
.topbar svg { width: 15px; height: 15px; fill: var(--gold); flex: none; }
@media (max-width: 720px) { .topbar__hours { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 13, 17, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
/* Logo art sits on a near-black field; `lighten` lets that field dissolve into
   the dark header so the badge reads as part of the background, not a box. */
.brand img { height: 50px; width: auto; object-fit: contain; mix-blend-mode: lighten; }
.brand__text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-head); }
.brand__text strong { font-size: 1.5rem; letter-spacing: 1px; color: var(--gold); }
.brand__text em { font-style: normal; font-size: 0.8rem; letter-spacing: 3px; color: var(--chrome); }

.nav { margin-left: auto; }
.nav__menu { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav__menu a { color: var(--white); font-weight: 600; font-size: 0.98rem; }
.nav__menu a:hover { color: var(--gold); }
.header__cta { padding: 11px 20px; font-size: 0.95rem; }

.nav__toggle { display: none; background: none; border: 0; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav__toggle span { height: 3px; width: 26px; background: var(--gold); border-radius: 3px; transition: .25s; }

@media (max-width: 940px) {
  .nav { margin-left: auto; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--panel);
    border-bottom: 1px solid var(--line); padding: 8px 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__menu.open { max-height: 420px; }
  .nav__menu li { border-top: 1px solid var(--line); }
  .nav__menu a { display: block; padding: 14px 6%; }
  .header__cta { display: none; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: #07080b; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.breadcrumb .container { padding: 10px 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

/* ---------- Steps (how it works) ---------- */
.steps__list { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.steps__item { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.steps__num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #181203; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 12px; }
.steps__item h3 { font-family: var(--font-head); font-size: 1.35rem; text-transform: uppercase; margin: 0 0 8px; }
.steps__item p { color: var(--muted); margin: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(43,166,255,0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(245,179,1,0.10), transparent 55%),
    linear-gradient(180deg, #0c0d11, #0a0b0e);
  padding: 70px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero__eyebrow { color: var(--blue); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; margin: 0 0 14px; }
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 0.98; margin: 0 0 22px; text-transform: uppercase; }
.hero__lead { color: var(--muted); font-size: 1.08rem; max-width: 540px; margin: 0 0 22px; }
.hero__points { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__points li { position: relative; padding-left: 26px; font-weight: 600; color: var(--white); }
.hero__points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.hero__card img { border-radius: 14px; width: 100%; }
.hero__badge {
  position: absolute; top: -18px; right: -10px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #181203;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; text-transform: uppercase;
  padding: 12px 18px; border-radius: 12px; text-align: center; line-height: 1; box-shadow: var(--shadow); transform: rotate(4deg);
}
.hero__badge span { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; margin-top: 4px; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; margin: 10px auto 0; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--gold); color: #161106; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 22px 14px; text-align: center; border-right: 1px solid rgba(0,0,0,0.12); }
.trust__item:last-child { border-right: 0; }
.trust__item strong { display: block; font-family: var(--font-head); font-size: 1.8rem; line-height: 1; text-transform: uppercase; }
.trust__item span { font-weight: 600; font-size: 0.92rem; }
@media (max-width: 620px) { .trust__inner { grid-template-columns: repeat(2, 1fr); } .trust__item:nth-child(2) { border-right: 0; } }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section__head h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3rem); text-transform: uppercase; margin: 0 0 10px; }
.section__sub { color: var(--muted); margin: 0; }
h2 { line-height: 1.05; }

/* ---------- About ---------- */
.about { background: var(--panel); border-block: 1px solid var(--line); }
.about__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: center; }
.about__media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.about__copy h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); text-transform: uppercase; margin: 0 0 16px; }
.about__copy p { color: var(--muted); }
.about__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 26px; }
.about__highlights div { font-weight: 600; font-size: 0.96rem; }
.about__highlights .gold { margin-right: 6px; font-weight: 800; }
@media (max-width: 860px) { .about__inner { grid-template-columns: 1fr; } .about__highlights { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.cards { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.card__icon { color: var(--gold); margin-bottom: 14px; line-height: 0; }
.card__icon .svg-icon { width: 44px; height: 44px; }
.svg-icon { display: inline-block; vertical-align: middle; }
.card h3 { font-family: var(--font-head); font-size: 1.4rem; text-transform: uppercase; margin: 0 0 8px; letter-spacing: 0.5px; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.card--feature { border-color: rgba(245, 179, 1, 0.4); }
.card__link { display: inline-block; margin-top: 14px; font-weight: 700; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; }
.services__cta { text-align: center; margin-top: 40px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.services__cta p { color: var(--muted); margin: 0; }

/* ---------- Offer ---------- */
.offer { background: linear-gradient(120deg, #0a0b0e, #15171f); border-block: 1px solid var(--line); }
.offer__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.offer__main h2 { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 12px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.offer__big { color: var(--gold); font-size: clamp(3rem, 9vw, 5.5rem); line-height: 0.9; }
.offer__note { color: var(--muted); max-width: 420px; margin: 0 0 22px; }
.offer__perks { list-style: none; padding: 26px; margin: 0; background: var(--panel); border: 1px solid var(--gold); border-radius: var(--radius); display: grid; gap: 14px; box-shadow: var(--shadow); }
.offer__perks li { font-family: var(--font-head); font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 760px) { .offer__inner { grid-template-columns: 1fr; } }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.why__item { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 28px 24px; }
.why__item h3 { font-family: var(--font-head); font-size: 1.45rem; text-transform: uppercase; margin: 0 0 10px; }
.why__item p { color: var(--muted); margin: 0; }

/* ---------- Quote form ---------- */
.quote { background: var(--panel); border-block: 1px solid var(--line); }
.quote__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.quote__copy h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); text-transform: uppercase; margin: 0 0 14px; }
.quote__copy p { color: var(--muted); }
.quote__contactlist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.quote__contactlist strong { color: var(--white); }
.quote__form { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 9px; border: 1px solid var(--line);
  background: #0e1015; color: var(--white); font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.field textarea { resize: vertical; }
.form__status { margin: 12px 0 0; font-weight: 600; min-height: 1.2em; }
.form__status.error { color: #ff6b6b; }
.form__status.ok { color: #46d57e; }
@media (max-width: 860px) { .quote__inner { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 4px 20px; }
.faq__item summary { cursor: pointer; font-family: var(--font-head); font-size: 1.25rem; text-transform: uppercase; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; line-height: 1; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { color: var(--muted); margin: 0 0 18px; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, #0a0b0e, #101218); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.contact__info h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); text-transform: uppercase; margin: 0 0 22px; }
.contact__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 18px; }
.contact__label { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-size: 0.95rem; }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact__map { min-height: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact__map iframe { display: block; height: 100%; min-height: 360px; }
@media (max-width: 860px) { .contact__inner { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: #07080b; border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.footer__brand img { width: auto; height: 90px; object-fit: contain; mix-blend-mode: lighten; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; }
.footer__col h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.2rem; color: var(--gold); margin: 0 0 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__col a { color: var(--muted); }
.footer__col a:hover { color: var(--gold); }
.footer__contact li { color: var(--muted); font-size: 0.95rem; }
.footer__bar { border-top: 1px solid var(--line); padding: 18px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 0.9rem; }
.footer__bar a { color: var(--muted); }
.footer__bar a:hover { color: var(--gold); }
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 640px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
    border-top: 1px solid var(--line);
  }
  .callbar a { padding: 15px; text-align: center; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; }
  .callbar__call { background: var(--gold); color: #181203; }
  .callbar__quote { background: var(--panel-2); color: var(--white); }
  body { padding-bottom: 54px; }
}

/* ---------- Generated-page components ---------- */
.topbar__lang svg { width: 15px; height: 15px; }
.footer__trust { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-top: 8px; }
.hero__title--sm { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.hero__card--icon { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; min-height: 220px; }
.hero__card--icon p { margin: 0; color: var(--chrome); font-weight: 600; }
.service-emoji { color: var(--gold); line-height: 0; }
.service-emoji .svg-icon { width: 92px; height: 92px; }
.container.narrow { width: min(840px, 92%); }
.narrow h2 { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 14px; }
.narrow p { color: var(--muted); }
.inline-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.estimator { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); max-width: 560px; margin: 0 auto; text-align: center; }
.estimator label { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.estimator select { width: 100%; max-width: 380px; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--line); background: #0e1015; color: var(--white); font: inherit; text-align: center; }
.estimator select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.estimator__result { margin: 24px auto 14px; padding: 28px 20px; border-radius: 12px; background: #0e1015; border: 1px solid var(--line); min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.estimator__price { font-family: var(--font-head); font-size: 3rem; color: var(--gold); line-height: 1; letter-spacing: 0.5px; }
.estimator__note { color: var(--muted); margin: 0; }
.estimator__hint { color: var(--muted); }
.estimator__disclaimer { color: var(--muted); font-size: 0.85rem; margin: 0 0 6px; }

/* ---------- Photo service cards (Addison-style: photo on top) ---------- */
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--photo .card__img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s ease; }
.card--photo:hover .card__img { transform: scale(1.06); }
.card__body { padding: 24px 22px 26px; }
.card__body h3 { margin-top: 0; }

/* ---------- Shop gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .35s ease; filter: brightness(1.06) contrast(1.03); }
.gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 760px) { .gallery__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials (Google-style) ---------- */
.g-word { font-family: "Inter", system-ui, sans-serif; font-weight: 500; letter-spacing: -1px; line-height: 1; display: inline-block; }
.g-stars { color: #fbbc05; letter-spacing: 2px; line-height: 1; }

.gbadge { display: flex; flex-direction: column; align-items: center; gap: 7px; margin: 0 auto 40px; }
.gbadge .g-word { font-size: 1.95rem; }
.gbadge__sub { color: var(--muted); font-size: 0.92rem; letter-spacing: 0.3px; }
.gbadge .g-stars { font-size: 1.3rem; }

/* equal-size boxes: auto-fill columns are equal width; grid-auto-rows:1fr makes
   every row the same height, and flex:1 on the text pushes the name to a
   consistent bottom edge across all cards. */
.tcards { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; grid-auto-rows: 1fr; }
.tcard { margin: 0; background: #ffffff; color: #202124; border-radius: 14px; padding: 24px 24px 26px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 12px; height: 100%; }
.tcard .g-word { font-size: 1.25rem; }
.tcard .g-stars { font-size: 1.05rem; }
.tcard__text { margin: 0; color: #3c4043; line-height: 1.65; font-style: normal; font-size: 1rem; flex: 1 0 auto; }
.tcard__name { font-weight: 700; color: #202124; font-size: 0.98rem; margin-top: 4px; }

.tactions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ---------- Legal / Warranty ---------- */
.legal h1 { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 12px; }
.legal__lead { color: var(--chrome); font-size: 1.1rem; margin: 0 0 10px; }
.narrow h3 { font-family: var(--font-head); text-transform: uppercase; color: var(--gold); font-size: 1.25rem; margin: 28px 0 10px; }
.legal__list { color: var(--muted); margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.legal__list li { line-height: 1.6; }
.legal__contact { margin-top: 28px; color: var(--white); }

/* ---------- Small-screen tuning ---------- */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 32px; }
  .hero { padding: 48px 0 56px; }
  .hero__badge { right: 6px; top: -14px; font-size: 1.05rem; padding: 10px 14px; }
  .hero__actions .btn, .contact__actions .btn { flex: 1 1 auto; text-align: center; }
  .btn { padding: 14px 20px; }
  .brand__text strong { font-size: 1.25rem; }
  .cards { grid-template-columns: 1fr; }
  .topbar__inner { gap: 6px 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
