/* Addept Automotive — shared system for the static service pages.
   Values ported VERBATIM from the cinematic homepage (embed.js) so the type,
   colour, buttons, FAQ and effects match exactly. The homepage itself is
   untouched; these pages funnel into it (/#booking, /). */

:root {
  --bg: #000;
  --fg: #fff;
  --amber: #ffb84d;
  --font-display: 'Space Grotesk', Inter, sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --max: 1100px;
}

* { box-sizing: border-box; }
html { background: #000; }
body {
  margin: 0; background: transparent; color: #fff;
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Cinematic video backdrop — exact mirror of embed.js #alp-bookbg / #alp-bgvid / #alp-bookshade ── */
.site-bg { position: fixed; inset: 0; z-index: -3; background: radial-gradient(ellipse 90% 70% at 50% 30%, #16161a 0%, #0a0a0c 55%, #050505 100%); }
.site-bgvid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s ease; }
.site-bgvid.on { opacity: 1; }
.site-bgshade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,.9) 0%, rgba(5,5,5,.82) 26%, rgba(5,5,5,.84) 72%, rgba(5,5,5,.93) 100%); }

/* ── Typography — verbatim from .alp-giant / .alp-heroh / .alp-lead ── */
h1, .giant { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: .005em; text-transform: uppercase; font-size: clamp(2.6rem, 6.2vw, 5rem); margin: 0; }
h2, .heroh { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: .005em; text-transform: uppercase; font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 0; }
h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: .01em; text-transform: uppercase; margin: 0; }
p { margin: 0 0 1rem; }
strong { color: #fff; font-weight: 600; }

.eyebrow { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; padding: 4px 11px; border-radius: 6px; border: 1px solid rgba(255,255,255,.14); background: rgba(5,5,5,.85); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.eyebrow::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.8); animation: alp-pdot 2.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes alp-pdot { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.lead { margin-top: 18px; color: rgba(255,255,255,.58); line-height: 1.65; font-size: clamp(.98rem, 1.8vw, 1.2rem); max-width: 34em; }
.lead a { color: #fff; text-decoration: none; background: linear-gradient(currentColor, currentColor) no-repeat 100% 100% / 0 1px; transition: background-size .35s cubic-bezier(.2,.8,.2,1); }
.lead a:hover { background-size: 100% 1px; background-position: 0 100%; }

/* ── Buttons — verbatim from .alp-btn / .alp-btn-light / .alp-btn-ghost ── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 99px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .14em; text-decoration: none; cursor: pointer; border: none; transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, box-shadow .3s; }
.btn svg { width: 15px; height: 15px; }
.btn-light { background: #fff; color: #000; box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.btn-light:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.btn-ghost { background: rgba(20,20,20,.55); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: #fff; color: #000; transform: translateY(-3px); }
.btnrow { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* nav call pill — mirrors #alp-nav .alp-call */
.call { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 99px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8); line-height: 1; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .14em; text-decoration: none; background: rgba(10,10,10,.45); transition: background .25s, color .25s, border-color .3s, transform .35s cubic-bezier(.2,.8,.2,1); white-space: nowrap; }
.call:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.call svg { width: 14px; height: 14px; }
.call .call-ic { display: none; } /* desktop: text only, like the cinematic nav */

/* meta chips — verbatim from .alp-meta / .alp-chip */
.meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.meta .chip { padding: 3px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; color: rgba(255,255,255,.7); }

/* ── Top bar ── */
.bar { position: sticky; top: 0; z-index: 50; background: rgba(5,5,5,.55); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid rgba(255,255,255,.08); }
.bar .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.bar .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.bar .brand img { width: 26px; height: 26px; }
.bar .brand b { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 14px; color: #fff; }
.bar .btn { padding: 10px 20px; }

/* ── Hero ── */
.hero { position: relative; padding: clamp(60px, 10vh, 112px) 0 clamp(38px, 6vh, 68px); }
.hero::before { content: ""; position: absolute; top: -8%; left: -6%; width: 56%; height: 72%; z-index: -1; background: radial-gradient(58% 58% at 32% 32%, rgba(255,154,61,.10), transparent 70%); pointer-events: none; }
.hero h1 { max-width: 16ch; }
.hero .lead { margin-bottom: 0; }

/* ── Sections ── */
section { padding: clamp(38px, 6vh, 64px) 0; border-top: 1px solid rgba(255,255,255,.08); }
.section-head { max-width: 64ch; margin-bottom: 26px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { margin-top: 0; max-width: 48em; }

.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card { position: relative; background: rgba(18,17,24,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 28px 24px; transition: border-color .35s, transform .35s, background .35s; }
.card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-4px); background: rgba(24,22,31,.7); }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 15px; color: rgba(255,255,255,.56); line-height: 1.6; }
.card .num { font-family: var(--font-mono); font-size: 11px; color: var(--amber); letter-spacing: .18em; display: block; margin-bottom: 14px; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: rgba(255,255,255,.8); padding: 11px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; background: rgba(255,255,255,.02); transition: border-color .3s, color .3s, background .3s; }
.pill:hover { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.05); }

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.checks li { position: relative; padding-left: 32px; color: rgba(255,255,255,.62); line-height: 1.6; }
.checks li::before { content: ""; position: absolute; left: 2px; top: .36em; width: 14px; height: 8px; border-left: 2px solid var(--amber); border-bottom: 2px solid var(--amber); transform: rotate(-45deg); }
.checks strong { color: #fff; }

/* ── FAQ — verbatim from .alp-qa ── */
.qa { border-top: 1px solid rgba(255,255,255,.14); }
.qa:last-of-type { border-bottom: 1px solid rgba(255,255,255,.14); }
.qa button { width: 100%; display: flex; align-items: baseline; gap: 18px; padding: 22px 6px; background: none; border: none; color: rgba(255,255,255,.88); font-size: 16px; font-weight: 600; font-family: inherit; text-align: left; cursor: pointer; transition: padding-left .35s cubic-bezier(.2,.8,.2,1), color .25s; }
.qa button .qn { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.35); min-width: 30px; }
.qa button .qt { flex: 1; }
.qa button .qarrow { margin-left: auto; color: rgba(255,255,255,.4); transition: transform .3s; font-size: 18px; line-height: 1; }
.qa button:hover { padding-left: 18px; color: #fff; }
.qa.open .qarrow { transform: rotate(45deg); }
.qa .a { overflow: hidden; transition: max-height .35s ease; }
.js .qa .a { max-height: 0; }
.qa .a p { padding: 0 6px 22px 48px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 620px; margin: 0; }

/* ── Banner CTA ── */
.banner { background: linear-gradient(135deg, rgba(20,18,27,.72), rgba(28,22,34,.72)); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: clamp(36px, 6vw, 60px); text-align: center; }
.banner h2 { margin-bottom: 14px; }
.banner .lead { margin: 0 auto 28px; max-width: 48em; }
.banner .btnrow { justify-content: center; margin-top: 0; }

/* ── Map + footer ── */
.map-frame { border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; height: 340px; background: #0a0a0c; margin-top: 14px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.5) invert(.92) hue-rotate(180deg) contrast(.9); }

footer { border-top: 1px solid rgba(255,255,255,.1); padding: 60px 0 44px; background: rgba(4,4,6,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 0 0 14px; }
footer a { color: rgba(255,255,255,.62); text-decoration: none; display: block; padding: 4px 0; transition: color .2s; }
footer a:hover { color: var(--amber); }
footer .nap { color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; }
footer .nap strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
footer .fine { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.4); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

/* ── Reveal on scroll ── */
.js .rise { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.js .rise.in { opacity: 1; transform: none; }

/* ── Single-screen splash layout (every service page funnels into the cinema) ── */
html, body { height: 100%; }
body.solo { height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; overflow: hidden; display: flex; flex-direction: column; }
/* top nav — exact mirror of #alp-nav */
.solo-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 32px; }
.solo-bar .brand { position: relative; font-size: 15px; line-height: normal; letter-spacing: .12em; text-transform: uppercase; color: #fff; text-decoration: none; white-space: nowrap; transition: opacity .25s; }
.solo-bar .brand:hover { opacity: .8; }
.solo-bar .brand b { font-weight: 800; }
.solo-bar .brand span { font-weight: 400; color: rgba(255,255,255,.75); }
.solo-bar .brand::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%; background: rgba(255,255,255,.8); transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.solo-bar .brand:hover::after { transform: scaleX(1); transform-origin: left; }
.solo-main { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; padding: 12px clamp(22px, 4vw, 54px); width: 100%; max-width: 1060px; margin: 0 auto; }
.solo-main h1 { max-width: 18ch; margin: 14px 0 0; font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
.solo-sub { margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: clamp(.98rem, 1.8vw, 1.2rem); line-height: 1.65; max-width: 42ch; }
.solo-kw { margin: 20px 0 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); line-height: 2; max-width: 56ch; }
.solo-main .btnrow { margin-top: 32px; }
/* bottom bar — minimalist copyright, laid over the video (no border, no background) */
.solo-foot { padding: 14px 24px 20px; text-align: center; color: rgba(255,255,255,.3); font-size: 11px; letter-spacing: .1em; border-top: 0; background: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
@media (max-height: 680px) { .solo-kw { display: none; } .solo-sub { margin-top: 16px; } .solo-main .btnrow { margin-top: 24px; } }
@media (max-width: 760px) {
  .solo-bar { padding: 14px 16px; }
  .solo-bar .brand { font-size: 13px; }
  .solo-bar .call { width: 42px; height: 42px; padding: 0; justify-content: center; }
  .solo-bar .call .call-txt { display: none; }
  .solo-bar .call .call-ic { display: inline-flex; align-items: center; justify-content: center; }
  .solo-bar .call .call-ic svg { width: 19px; height: 19px; stroke-width: 1.9; }
}
@media (max-width: 600px) { body.solo { overflow-y: auto; height: auto; } }
@media (max-width: 360px) {
  .solo-bar .brand span { display: none; }
  .solo-bar .call { width: 38px; height: 38px; }
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  footer .cols { grid-template-columns: 1fr; }
  .bar .btn { padding: 9px 15px; font-size: 11px; }
  .btnrow .btn { flex: 1 1 auto; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rise { transition: none; opacity: 1; transform: none; }
  .site-bgvid { display: none; }
}
