/* ==========================================================================
   Royal Truck Repair — styles
   Industrial-premium: navy/near-black base, gold signature, red = urgency.
   Oswald (condensed headings) + Inter (body). Design tokens preserved.
   ========================================================================== */
:root {
  --navy: #0f1b2d;
  --navy-2: #16263d;
  --steel: #1f3654;
  --gold: #f5b301;
  --gold-dk: #d49a00;
  --red: #e23b2e;
  --red-dk: #c22e22;
  --ink: #11161d;
  --muted: #6b7785;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 27, 45, .08);
  --shadow-lg: 0 24px 60px rgba(15, 27, 45, .18);
  --steel-tex:
    linear-gradient(rgba(15,27,45,.86), rgba(15,27,45,.94)),
    repeating-linear-gradient(135deg, #16263d 0 40px, #142037 40px 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Oswald', 'Arial Narrow', system-ui, sans-serif; letter-spacing: .5px; line-height: 1.08; margin: 0; }
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; clip: auto; background: var(--gold); color: var(--navy); padding: .6rem 1rem; border-radius: 8px; z-index: 200; font-weight: 700; }
.ico { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -.16em; fill: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---- Reveal on scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---- Top bar ---- */
.topbar { background: #0a1220; color: #cdd7e4; font-size: .82rem; }
.topbar__inner { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; padding: .55rem 0; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item a { color: var(--gold); font-weight: 700; }
.topbar__hours strong { color: #fff; }
.topbar .ico { color: var(--gold); }

/* ---- Header ---- */
.header { position: sticky; top: 0; z-index: 90; background: rgba(15,27,45,.94); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; color: #fff; }
.brand__crown { color: var(--gold); font-size: 1.8rem; line-height: 1; }
.brand__text { display: flex; flex-direction: column; line-height: 1; font-family: 'Oswald', sans-serif; }
.brand__text strong { font-size: 1.25rem; letter-spacing: 2px; }
.brand__text span { font-size: .66rem; letter-spacing: 3px; color: var(--gold); }
.nav { display: flex; gap: 1.4rem; }
.nav a { color: #d7dee8; font-weight: 500; font-size: .94rem; transition: color .2s; }
.nav a:hover { color: var(--gold); }
.header__actions { display: flex; align-items: center; gap: .6rem; }
.lang { display: flex; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; overflow: hidden; }
.lang__btn { background: transparent; color: #c6d0dc; border: 0; padding: .35rem .5rem; font-size: .78rem; font-weight: 700; cursor: pointer; letter-spacing: .5px; }
.lang__btn.is-active { background: var(--gold); color: var(--navy); }
.header__road { display: inline-flex; }
.cart-btn { position: relative; background: var(--gold); color: var(--navy); border: 0; font-weight: 700; padding: .45rem .6rem; border-radius: 9px; cursor: pointer; display: inline-flex; align-items: center; }
.cart-btn .ico { width: 1.35em; height: 1.35em; color: var(--navy); }
.cart-btn__count { position: absolute; top: -8px; right: -8px; background: var(--red); color: #fff; font-size: .7rem; min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center; padding: 0 5px; font-weight: 700; }
.nav-toggle { display: none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; font-size: 1.3rem; padding: .1rem .5rem; cursor: pointer; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 700; padding: .8rem 1.5rem; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: transform .15s, background .2s, color .2s, box-shadow .2s; font-size: 1rem; font-family: inherit; line-height: 1.2; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-dk); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #ffc21f; }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(226,59,46,.28); }
.btn--red:hover { background: var(--red-dk); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--steel); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost-dark { background: transparent; color: var(--steel); border-color: var(--line); }
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold-dk); }
.btn--block { width: 100%; }
.btn--sm { padding: .5rem .9rem; font-size: .88rem; }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn--xl { padding: 1.15rem 2.2rem; font-size: 1.2rem; }

/* ---- Hero ---- */
.hero { position: relative; color: #fff; background: var(--steel-tex); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 85% 10%, rgba(245,179,1,.14), transparent 55%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 6px; background: repeating-linear-gradient(90deg, var(--gold) 0 40px, var(--navy) 40px 80px); }
.hero__inner { padding: 5rem 0 5.5rem; position: relative; }
.hero__content { max-width: 680px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: .82rem; margin: 0 0 1.1rem; text-transform: uppercase; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(226,59,46,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(226,59,46,0); } 100% { box-shadow: 0 0 0 0 rgba(226,59,46,0); } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); text-transform: uppercase; font-weight: 700; }
.hero h1 span { color: var(--gold); }
.hero__lead { font-size: 1.15rem; color: #c6d0dc; margin: 1.2rem 0 2rem; max-width: 560px; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; align-items: center; }
.hero__stars { display: inline-flex; align-items: center; gap: .5rem; }
.hero__stars .stars { color: var(--gold); }
.hero__stars strong { font-family: 'Oswald'; font-size: 1.5rem; }
.hero__reviews { color: #aebac9; font-size: .9rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 0; padding: 0; }
.hero__badges li { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: #dbe3ee; }
.hero__badges .ico { color: var(--gold); }
.stars { letter-spacing: 1px; }
.stars svg { width: 1em; height: 1em; }

/* ---- Roadside band ---- */
.roadside { background: linear-gradient(120deg, #7a1a13, var(--red) 55%, #a52318); color: #fff; position: relative; overflow: hidden; }
.roadside::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 22px, transparent 22px 44px); }
.roadside__inner { position: relative; display: grid; grid-template-columns: 1.2fr .9fr; gap: 2.5rem; align-items: center; padding: 3.2rem 0; }
.roadside h2 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin: .3rem 0 .7rem; }
.roadside__copy p { color: #ffe3e0; max-width: 40ch; }
.roadside__call { margin: 1.4rem 0 .7rem; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.roadside__note { font-size: .85rem; color: #ffd9d5; }
.roadside__form { background: rgba(255,255,255,.97); color: var(--ink); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-lg); }
.roadside__form h3 { text-transform: uppercase; font-size: 1.3rem; margin-bottom: 1rem; color: var(--navy); }
.field__geo { display: flex; gap: .5rem; }
.field__geo input { flex: 1; }
.eyebrow--light { color: var(--gold); }

/* ---- Sections ---- */
.section { padding: 4.6rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--steel-tex); color: #fff; }
.section--dark .section__sub, .section--dark .book__intro p { color: #c6d0dc; }
.section__head { text-align: center; margin-bottom: 2.6rem; max-width: 720px; margin-inline: auto; }
.eyebrow { color: var(--gold-dk); font-weight: 700; letter-spacing: 3px; font-size: .78rem; margin: 0 0 .5rem; text-transform: uppercase; }
.section h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-transform: uppercase; }
.section__sub { color: var(--muted); margin: .6rem 0 0; }

/* ---- Filters / chips ---- */
.filters { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1.1rem; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .15s; color: var(--steel); }
.chip:hover { border-color: var(--gold); }
.chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.section--alt .chip { background: #fff; }

/* ---- Grids ---- */
.grid { display: grid; gap: 1.5rem; }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--parts { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* service card */
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; text-align: left; cursor: pointer; display: flex; flex-direction: column; }
.service::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleX(1); }
.service__icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, #16263d, #24466e); color: var(--gold); display: grid; place-items: center; }
.service__icon .ico { width: 26px; height: 26px; }
.service h3 { font-size: 1.25rem; margin: 1rem 0 .5rem; text-transform: uppercase; }
.service p { color: var(--muted); font-size: .93rem; margin: 0 0 1rem; flex: 1; }
.service__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.service__price { font-family: 'Oswald'; font-size: 1.05rem; color: var(--steel); }
.service__more { color: var(--gold-dk); font-weight: 700; font-size: .85rem; }

/* ---- Pricing ---- */
.pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.card h3 { text-transform: uppercase; font-size: 1.3rem; margin-bottom: 1.1rem; color: var(--navy); }
.labor .tier { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.labor .tier:last-child { border-bottom: 0; }
.tier__name { font-weight: 700; }
.tier__note { color: var(--muted); font-size: .82rem; display: block; font-weight: 400; }
.tier__rate { font-family: 'Oswald'; font-size: 1.5rem; color: var(--gold-dk); white-space: nowrap; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { text-align: right; font-family: 'Oswald'; font-size: 1.15rem; color: var(--navy); white-space: nowrap; }
.fineprint { color: var(--muted); font-size: .78rem; margin: 1rem 0 0; }
.tire-select { width: 100%; padding: .75rem .8rem; border: 1px solid var(--line); border-radius: 9px; font-family: inherit; font-size: .95rem; background: #fbfcfe; margin-bottom: 1rem; }
.tire-result { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 1.1rem; text-align: center; margin-bottom: 1rem; }
.tire-result strong { font-family: 'Oswald'; font-size: 2rem; color: var(--navy); display: block; }
.tire-result span { color: var(--muted); font-size: .85rem; }
.finance { background: linear-gradient(135deg, var(--navy), var(--steel)); color: #fff; border: 0; }
.finance h3 { color: #fff; }
.finance p { color: #c6d0dc; font-size: .95rem; margin: 0 0 1.2rem; }
.finance__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(245,179,1,.15); color: var(--gold); display: grid; place-items: center; margin-bottom: .9rem; }
.finance__icon .ico { width: 26px; height: 26px; }

/* ---- Labor price guide ---- */
.laborguide { margin-top: 1.5rem; }
.laborguide__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.laborguide__sub { color: var(--muted); font-size: .9rem; margin: .3rem 0 0; max-width: 56ch; }
.laborguide__legend { display: flex; gap: 1rem; font-size: .82rem; color: var(--steel); white-space: nowrap; }
.laborguide__legend span { display: inline-flex; align-items: center; gap: .35rem; }
.lg-badge { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; font-size: .72rem; font-weight: 700; font-style: normal; }
.lg-badge--g { background: #e7f0fa; color: #1d4e89; }
.lg-badge--e { background: #fdf3dc; color: #8a6d00; }
.lg-badge--w { background: #fde7e4; color: #a02c20; }
.laborguide__bar { display: flex; gap: .7rem; margin-bottom: 1rem; flex-wrap: wrap; }
.laborguide__bar input { flex: 2 1 220px; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 9px; font-family: inherit; font-size: .95rem; background: #fbfcfe; }
.laborguide__bar input:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,179,1,.2); }
.laborguide__bar select { flex: 1 1 180px; padding: .65rem .7rem; border: 1px solid var(--line); border-radius: 9px; font-family: inherit; font-size: .9rem; background: #fbfcfe; }
.laborguide__scroll { max-height: 420px; overflow: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.laborguide__table { min-width: 480px; width: 100%; }
.laborguide__table { border-collapse: separate; border-spacing: 0; }
.laborguide__table thead th { position: sticky; top: 0; background: var(--navy); color: #fff; text-align: left; padding: .6rem .8rem; font-family: 'Oswald'; font-weight: 600; letter-spacing: .5px; font-size: .85rem; z-index: 1; }
.laborguide__table td { padding: .55rem .8rem; border-bottom: 1px solid var(--line); font-size: .9rem; }
.laborguide__table td:last-child { text-align: right; font-family: 'Oswald'; font-size: 1.05rem; color: var(--navy); white-space: nowrap; }
.laborguide__table td:nth-child(3) { color: var(--muted); white-space: nowrap; }

.estimate { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: center; margin-top: 2.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.estimate__intro h3 { font-size: 1.8rem; text-transform: uppercase; margin: .3rem 0 .7rem; }
.estimate__intro p { color: var(--muted); }

/* ---- Inspections ---- */
.insp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.insp__card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.insp__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #16263d, #24466e); color: var(--gold); display: grid; place-items: center; margin-bottom: 1rem; }
.insp__icon .ico { width: 28px; height: 28px; }
.insp__card h3 { text-transform: uppercase; font-size: 1.4rem; margin-bottom: .6rem; }
.insp__card p { color: var(--muted); margin: 0 0 1rem; }
.link-arrow { color: var(--gold-dk); font-weight: 700; font-size: .92rem; }

/* ---- Parts ---- */
.parts__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.parts__bar .filters { margin: 0; justify-content: flex-start; }
.parts__search { padding: .6rem .9rem; border: 1px solid var(--line); border-radius: 999px; font-family: inherit; font-size: .9rem; min-width: 200px; background: #fff; }
.part { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.part:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.part__img { aspect-ratio: 4/3; display: grid; place-items: center; color: var(--steel); background: linear-gradient(135deg, #eef2f7, #dde5ef); position: relative; }
.part__img .ico { width: 64px; height: 64px; opacity: .6; }
.part__tag { position: absolute; top: .7rem; left: .7rem; background: var(--red); color: #fff; font-size: .68rem; font-weight: 700; padding: .25rem .55rem; border-radius: 6px; letter-spacing: .5px; }
.part__body { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.part__cat { font-size: .7rem; color: var(--gold-dk); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.part__name { font-weight: 700; margin: .3rem 0 .2rem; font-size: 1rem; }
.part__desc { color: var(--muted); font-size: .84rem; margin: 0 0 1rem; flex: 1; }
.part__row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.part__price { font-family: 'Oswald'; font-size: 1.4rem; color: var(--navy); }
.parts__empty { text-align: center; color: var(--muted); grid-column: 1/-1; padding: 2rem; }

/* ---- Trust ---- */
.trust__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.6rem; text-align: center; }
.trust__stats div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1rem; box-shadow: var(--shadow); }
.trust__stats strong { font-family: 'Oswald'; font-size: 2.2rem; color: var(--gold-dk); display: block; }
.trust__stats span { color: var(--muted); font-size: .84rem; }
.reviews { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .3rem .3rem 1rem; scrollbar-width: none; }
.reviews::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: center; flex: 0 0 min(420px, 85%); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.review__stars { color: var(--gold); margin-bottom: .6rem; }
.review__text { font-size: 1.02rem; margin: 0 0 1rem; }
.review__who { display: flex; align-items: center; gap: .7rem; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--steel)); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-family: 'Oswald'; }
.review__name { font-weight: 700; font-size: .9rem; }
.review__src { color: var(--muted); font-size: .78rem; }
.reviews__dots { display: flex; gap: .4rem; justify-content: center; margin-top: .4rem; }
.reviews__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; }
.reviews__dots button.is-active { background: var(--gold-dk); }
.reviews__cta { text-align: center; margin: 1rem 0 0; }
.reviews__cta a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-dk); font-weight: 700; font-size: .95rem; }
.reviews__cta .ico { color: var(--gold); }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; padding: 0; margin: 2.4rem 0 1.4rem; }
.badges li { display: inline-flex; align-items: center; gap: .55rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; font-weight: 600; font-size: .86rem; color: var(--steel); box-shadow: var(--shadow); }
.badges .ico { color: var(--gold-dk); width: 1.25em; height: 1.25em; }
.guarantee { text-align: center; color: var(--steel); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.guarantee .ico { color: var(--gold-dk); }

/* ---- Book ---- */
.book { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.book__intro h2 { font-size: 2.6rem; text-transform: uppercase; margin: .3rem 0 1rem; }
.book__list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.book__list li { padding: .4rem 0; font-weight: 600; color: #e6ecf4; display: flex; align-items: center; gap: .6rem; }
.book__list .ico { color: var(--gold); }
.book__form { background: #fff; color: var(--ink); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .35rem; color: var(--steel); }
.field input, .field select, .field textarea { width: 100%; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: 9px; font-family: inherit; font-size: .95rem; background: #fbfcfe; transition: border .15s, box-shadow .15s; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,179,1,.2); }
.field input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,59,46,.18); background: #fff7f6; }
.field textarea { resize: vertical; }
.slots { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot { border: 1px solid var(--line); background: #fbfcfe; border-radius: 8px; padding: .5rem .9rem; font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--steel); }
.slot.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.check { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--steel); margin-bottom: 1rem; font-weight: 500; }
.check input { width: 16px; height: 16px; accent-color: var(--gold-dk); }
.form__status { font-weight: 600; margin: 1rem 0 0; padding: .7rem .9rem; border-radius: 9px; font-size: .9rem; }
.form__status.ok { color: #0f6b2e; background: #e7f6ec; }
.form__status.err { color: #9a2820; background: #fdecea; }

/* ---- Contact ---- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: stretch; }
.contact__line { margin: 0 0 1.1rem; display: flex; gap: .7rem; align-items: flex-start; }
.contact__line .ico { color: var(--gold-dk); width: 1.4em; height: 1.4em; margin-top: .15em; flex-shrink: 0; }
.contact__line a { color: var(--gold-dk); font-weight: 700; }
.contact__line strong { text-transform: uppercase; font-family: 'Oswald'; font-size: .95rem; letter-spacing: .5px; }
.contact__socials { display: flex; gap: 1rem; }
.contact__socials a { color: var(--gold-dk); font-weight: 700; }
.contact__lang { color: var(--muted); font-size: .86rem; margin-top: 1rem; }
.contact__map { width: 100%; min-height: 340px; height: 100%; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---- Footer ---- */
.footer { background: #0a1220; color: #aebac9; padding: 3rem 0 2rem; }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { font-size: .92rem; max-width: 42ch; margin: 1rem 0 0; }
.brand--footer { color: #fff; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links h4 { color: #fff; text-transform: uppercase; font-size: .95rem; letter-spacing: 1px; margin-bottom: .3rem; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.5rem; font-size: .85rem; }
.footer__small { opacity: .8; }

/* ---- Mobile bottom bar ---- */
.mobilebar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 85; background: rgba(15,27,45,.98); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.12); }
.mobilebar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .55rem 0 max(.55rem, env(safe-area-inset-bottom)); color: #dbe3ee; font-size: .72rem; font-weight: 600; }
.mobilebar .ico { width: 1.4em; height: 1.4em; color: var(--gold); }
.mobilebar__road { background: var(--red); color: #fff !important; }
.mobilebar__road .ico { color: #fff; }

/* ---- Service modal ---- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(15,27,45,.6); backdrop-filter: blur(2px); }
.modal__panel { position: relative; background: #fff; border-radius: var(--radius); max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: pop .2s ease; }
@keyframes pop { from { transform: translateY(12px) scale(.98); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .modal__panel { animation: none; } }
.modal__close { position: absolute; top: .8rem; right: .8rem; background: rgba(255,255,255,.9); border: 1px solid var(--line); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; z-index: 2; }
.modal__hero { background: linear-gradient(135deg, var(--navy), var(--steel)); color: var(--gold); padding: 2rem; display: flex; align-items: center; gap: 1rem; }
.modal__hero .ico { width: 40px; height: 40px; }
.modal__hero h3 { color: #fff; text-transform: uppercase; font-size: 1.5rem; }
.modal__hero span { color: var(--gold); font-family: 'Oswald'; font-size: .95rem; }
.modal__content { padding: 1.6rem 2rem 2rem; }
.modal__meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.modal__meta div { font-size: .85rem; color: var(--muted); }
.modal__meta strong { display: block; font-family: 'Oswald'; font-size: 1.2rem; color: var(--navy); }
.modal__content h4 { text-transform: uppercase; font-size: .95rem; letter-spacing: .5px; margin-bottom: .6rem; color: var(--steel); }
.modal__includes { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.modal__includes li { padding: .35rem 0; padding-left: 1.6rem; position: relative; color: var(--ink); }
.modal__includes li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dk); font-weight: 700; }

/* ---- Cart drawer ---- */
.cart-overlay { position: fixed; inset: 0; background: rgba(15,27,45,.55); opacity: 0; visibility: hidden; transition: .25s; z-index: 110; }
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart { position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 90%); background: #fff; z-index: 115; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.cart.is-open { transform: translateX(0); }
.cart__head { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-size: 1.4rem; text-transform: uppercase; }
.cart__close { background: transparent; border: 0; font-size: 1.3rem; cursor: pointer; color: var(--muted); }
.cart__items { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; }
.cart__empty { color: var(--muted); text-align: center; margin-top: 2rem; }
.cart-item { display: flex; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.cart-item__img { width: 52px; height: 52px; border-radius: 9px; background: linear-gradient(135deg,#eef2f7,#dde5ef); display: grid; place-items: center; color: var(--steel); flex-shrink: 0; }
.cart-item__img .ico { width: 26px; height: 26px; }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 600; font-size: .9rem; }
.cart-item__price { color: var(--muted); font-size: .84rem; }
.cart-item__qty { display: flex; align-items: center; gap: .5rem; margin-top: .35rem; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--line); background: #f4f6f9; border-radius: 7px; cursor: pointer; font-weight: 700; font-size: 1rem; line-height: 1; }
.cart-item__remove { background: transparent; border: 0; color: var(--red); cursor: pointer; font-size: .8rem; align-self: flex-start; }
.cart__foot { padding: 1.3rem; border-top: 1px solid var(--line); }
.cart__total { display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: 1rem; }
.cart__total strong { font-family: 'Oswald'; font-size: 1.5rem; }

/* ---- Offer banner ---- */
.offer { position: fixed; left: 50%; transform: translateX(-50%); bottom: 1.2rem; z-index: 88; background: var(--navy); color: #fff; border: 1px solid rgba(245,179,1,.4); border-radius: 14px; padding: .8rem 1rem .8rem 1.3rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-lg); width: min(560px, 92%); }
.offer[hidden] { display: none; }
.offer p { margin: 0; font-size: .88rem; flex: 1; line-height: 1.4; }
.offer strong { color: var(--gold); }
.offer .btn { flex-shrink: 0; }
.offer__close { background: transparent; border: 0; color: #aebac9; cursor: pointer; font-size: 1rem; flex-shrink: 0; line-height: 1; }

/* ---- Brand logo mark ---- */
.brand__logo { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; object-fit: contain; }
.brand--footer .brand__logo { width: 52px; height: 52px; }

/* ---- Hero watermark ---- */
.hero__inner { z-index: 2; }
.hero__watermark { position: absolute; right: -4%; top: 50%; transform: translateY(-50%); width: min(500px, 46%); opacity: .07; pointer-events: none; z-index: 0; }

/* ---- Finance estimator ---- */
.finance__calc { margin: 0 0 1.1rem; }
.finance__calc > label { display: block; font-size: .8rem; color: #c6d0dc; margin-bottom: .35rem; font-weight: 600; }
.finance__amtrow { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 0 .7rem; margin-bottom: .8rem; }
.finance__amtrow span { color: var(--gold); font-family: 'Oswald'; font-size: 1.2rem; }
.finance__amtrow input { flex: 1; background: transparent; border: 0; color: #fff; font-size: 1.15rem; font-family: 'Oswald'; padding: .55rem 0; outline: none; -moz-appearance: textfield; }
.finance__amtrow input::-webkit-outer-spin-button, .finance__amtrow input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.finance__terms { display: flex; gap: .5rem; margin-bottom: .9rem; }
.finance__terms button { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2); color: #dbe3ee; border-radius: 8px; padding: .5rem; font-weight: 700; cursor: pointer; font-size: .85rem; font-family: inherit; }
.finance__terms button.is-active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.finance__out { text-align: center; padding: .3rem 0 0; }
.finance__out strong { font-family: 'Oswald'; font-size: 2rem; color: var(--gold); display: block; line-height: 1.1; }
.finance__out span { color: #aebac9; font-size: .8rem; }
.finance__fine { color: #8ea0b6; font-size: .7rem; margin: .9rem 0 0; line-height: 1.45; }

/* ---- Roadside map link ---- */
.road__maplink { display: inline-flex; align-items: center; gap: .4rem; margin-top: .55rem; color: var(--gold-dk); font-weight: 700; font-size: .85rem; }
.road__maplink[hidden] { display: none; }
.road__maplink .ico { color: var(--gold-dk); }

/* ---- Brand strip ---- */
.brandstrip { background: var(--steel-tex); color: #fff; padding: 3.6rem 0; text-align: center; }
.brandstrip h2 { text-transform: uppercase; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 2rem; }
.brandstrip__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-bottom: 2rem; }
.brandmark { margin: 0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.4rem; transition: transform .2s, border-color .2s; display: flex; flex-direction: column; justify-content: center; }
.brandmark:hover { transform: translateY(-4px); border-color: rgba(245,179,1,.4); }
.brandmark img { width: 100%; max-width: 140px; margin: 0 auto .8rem; height: auto; object-fit: contain; aspect-ratio: 1; }
.brandmark--dark { background: #000; }
.brandmark--mascot img { max-width: 78px; }
.brandmark figcaption { color: #c6d0dc; font-size: .82rem; font-weight: 600; letter-spacing: .5px; }
.brandstrip__meta { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; max-width: 660px; margin: 0 auto; }
.brandstrip__meta p { color: #aebac9; font-size: .9rem; margin: 0; text-align: left; }
.swatches { display: flex; gap: .5rem; }
.swatches span { width: 26px; height: 26px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); display: block; }

/* ---- AI assistant chat ---- */
.chat-fab { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 95; display: inline-flex; align-items: center; gap: .5rem; background: var(--navy); color: #fff; border: 2px solid var(--gold); border-radius: 999px; padding: .5rem 1.1rem .5rem .5rem; cursor: pointer; box-shadow: var(--shadow-lg); font-weight: 700; font-family: inherit; }
.chat-fab img { width: 34px; height: 34px; object-fit: contain; }
.chat-fab__label { font-size: .92rem; }
.chat-fab:hover { background: var(--steel); }
.chat-fab.is-hidden { display: none; }

.chatbox { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 96; width: min(380px, 92vw); height: min(560px, 72vh); background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); animation: pop .2s ease; }
.chatbox[hidden] { display: none; }
.chatbox__head { display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; background: var(--steel-tex); color: #fff; }
.chatbox__avatar { width: 40px; height: 40px; object-fit: contain; background: #000; border-radius: 10px; padding: 2px; }
.chatbox__id { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.chatbox__id strong { font-family: 'Oswald'; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .5px; }
.chatbox__id span { font-size: .72rem; color: #aebac9; }
.chatbox__close { background: transparent; border: 0; color: #fff; font-size: 1.1rem; cursor: pointer; }
.chatbox__log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; background: var(--bg-alt); }
.msg { max-width: 85%; padding: .6rem .85rem; border-radius: 14px; font-size: .92rem; line-height: 1.45; white-space: pre-wrap; word-wrap: break-word; }
.msg--bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg--user { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg--sys { align-self: center; background: transparent; color: var(--muted); font-size: .8rem; text-align: center; }
.msg a { color: var(--gold-dk); font-weight: 700; text-decoration: underline; }
.msg--user a { color: var(--gold); }
.chat-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: .7rem .9rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite both; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .chat-typing span { animation: none; } }
.chat-chips { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 1rem .6rem; background: var(--bg-alt); }
.chat-chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .35rem .8rem; font-size: .8rem; font-weight: 600; color: var(--steel); cursor: pointer; }
.chat-chip:hover { border-color: var(--gold); }
.chatbox__form { display: flex; gap: .5rem; padding: .7rem; border-top: 1px solid var(--line); background: #fff; }
.chatbox__form input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: .6rem .9rem; font-family: inherit; font-size: .92rem; outline: none; }
.chatbox__form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,179,1,.2); }
.chatbox__form button { background: var(--gold); color: var(--navy); border: 0; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; }
.chatbox__form button .ico { width: 20px; height: 20px; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .estimate, .roadside__inner { grid-template-columns: 1fr; }
  .insp__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .brandstrip__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1rem; gap: 0; display: none; border-bottom: 3px solid var(--gold); }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .header__road { display: none; }
  .book, .contact { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .trust__stats { grid-template-columns: repeat(2, 1fr); }
  .brandstrip__grid { grid-template-columns: repeat(2, 1fr); }
  .brandstrip__meta { flex-direction: column; }
  .brandstrip__meta p { text-align: center; }
  .mobilebar { display: flex; }
  main { /* room so mobile bar never covers content */ }
  body { padding-bottom: 62px; }
  .offer { bottom: 74px; }
  .chat-fab { bottom: 74px; right: 1rem; padding: .45rem .9rem .45rem .45rem; }
  .chat-fab__label { display: none; }
  .chatbox { right: 0; left: 0; bottom: 0; width: 100%; height: 82vh; border-radius: 16px 16px 0 0; }
  .topbar__inner { gap: .8rem 1.2rem; font-size: .76rem; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
  .hero__inner { padding: 3.5rem 0 4rem; }
  .lang { display: none; }
}
