/* Gold Coast Car Parts. Living Points design system adapted: DM Sans, editorial hairlines,
   large light numerals, no decorative icons, one accent. Four switchable colour themes. */
:root {
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Theme A: Trust (white + blue). Default. */
  --bg: #ffffff; --bg2: #f4f7fb; --ink: #0f1c33; --mut: #56627a; --hair: rgba(15,28,51,.14);
  --brand: #1d4ed8; --accent: #1d4ed8; --accent-ink: #ffffff; --accent-hover: #1e40af;
  --call: #15803d; --call-ink: #fff; --call-hover: #166534;
  --band: #0f1c33; --band-ink: #ffffff; --band-mut: rgba(255,255,255,.72); --band-hair: rgba(255,255,255,.18);
  --star: #f5a623; --ok: #15803d; --bad: #d1443c;
  --shadow: 0 18px 44px rgba(15,28,51,.12);
  --radius: 18px;
}
html[data-theme="ink"] {
  --bg: #0b1a3a; --bg2: #0f2149; --ink: #ffffff; --mut: rgba(255,255,255,.72); --hair: rgba(255,255,255,.16);
  --brand: #f5a623; --accent: #f5a623; --accent-ink: #0b1a3a; --accent-hover: #ffb63a;
  --call: #ffffff; --call-ink: #0b1a3a; --call-hover: #e9eef7;
  --band: #06122b; --band-ink: #ffffff; --band-mut: rgba(255,255,255,.7); --band-hair: rgba(255,255,255,.16);
  --shadow: 0 18px 44px rgba(0,0,0,.4);
}
html[data-theme="coast"] {
  --bg: #ffffff; --bg2: #f7f8fb; --ink: #0b1a3a; --mut: #5a6478; --hair: rgba(11,26,58,.14);
  --brand: #0b1a3a; --accent: #f5a623; --accent-ink: #0b1a3a; --accent-hover: #ffb63a;
  --call: #0b1a3a; --call-ink: #fff; --call-hover: #14275a;
  --band: #0b1a3a; --band-ink: #fff; --band-mut: rgba(255,255,255,.72); --band-hair: rgba(255,255,255,.18);
}
html[data-theme="sign"] {
  /* Taken from their shed sign: red lettering on white, dark red cladding */
  --bg: #ffffff; --bg2: #f6f4f3; --ink: #1c1c1e; --mut: #5c5f66; --hair: rgba(28,28,30,.14);
  --brand: #c8202b; --accent: #c8202b; --accent-ink: #ffffff; --accent-hover: #a8161f;
  --call: #1c1c1e; --call-ink: #fff; --call-hover: #333;
  --band: #4a1f21; --band-ink: #fff; --band-mut: rgba(255,255,255,.72); --band-hair: rgba(255,255,255,.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--ink); line-height: 1.55; font-size: 16px; overflow-x: clip; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.03em; line-height: 1.06; font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 4.2vw + .8rem, 4.2rem); }
h2 { font-size: clamp(1.75rem, 2.6vw + .6rem, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1vw + .8rem, 1.45rem); letter-spacing: -.02em; }
p { margin: 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }
.sec { padding: clamp(4rem, 9vh, 7rem) 0; }
.sec--tight { padding: clamp(2.6rem, 6vh, 4rem) 0; }
.sec--alt { background: var(--bg2); }
.kicker { font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mut); margin: 0 0 1rem; }
.lead { color: var(--mut); font-size: clamp(1rem, .4vw + .92rem, 1.12rem); line-height: 1.7; max-width: 46em; }
.lead strong, .body strong { color: var(--ink); font-weight: 600; }
.body { color: var(--mut); line-height: 1.7; max-width: 46em; }
.body + .body { margin-top: 1rem; }
.num { font-weight: 300; letter-spacing: -.02em; color: var(--brand); line-height: 1; }
.hair { border-top: 1px solid var(--hair); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 50px; padding: .85em 1.7em; border-radius: 999px; font: 600 1rem/1 var(--font); letter-spacing: -.01em; text-decoration: none; cursor: pointer; border: 1px solid transparent; white-space: nowrap; transition: transform .22s cubic-bezier(.16,1,.3,1), background-color .2s, border-color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { background: var(--accent-hover); box-shadow: var(--shadow); }
.btn--call { background: var(--call); color: var(--call-ink); }
.btn--call:hover { background: var(--call-hover); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn--line:hover { border-color: var(--ink); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--big { min-height: 58px; font-size: 1.08rem; padding: 1em 2.1em; }
.btn__sub { font-weight: 400; opacity: .8; font-size: .85em; }
.ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
@media (max-width: 560px) { .ctas .btn { width: 100%; } }

/* Rise entrance */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.rise > * { opacity: 0; animation: rise .9s cubic-bezier(.16,1,.3,1) forwards; }
.rise > *:nth-child(1) { animation-delay: .1s } .rise > *:nth-child(2) { animation-delay: .22s } .rise > *:nth-child(3) { animation-delay: .34s }
.rise > *:nth-child(4) { animation-delay: .46s } .rise > *:nth-child(5) { animation-delay: .58s } .rise > *:nth-child(6) { animation-delay: .7s }
/* Scroll reveals */
.r { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.r.is-in { opacity: 1; transform: none; }
.r-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.r-stagger.is-in > * { opacity: 1; transform: none; }
.r-stagger.is-in > *:nth-child(2) { transition-delay: .08s } .r-stagger.is-in > *:nth-child(3) { transition-delay: .16s }
.r-stagger.is-in > *:nth-child(4) { transition-delay: .24s } .r-stagger.is-in > *:nth-child(5) { transition-delay: .32s }
.r-stagger.is-in > *:nth-child(6) { transition-delay: .4s } .r-stagger.is-in > *:nth-child(7) { transition-delay: .48s } .r-stagger.is-in > *:nth-child(8) { transition-delay: .56s }
/* Karaoke read-in headline */
.karaoke .w { color: color-mix(in srgb, var(--ink) 16%, transparent); transition: color .55s ease; }
.karaoke.is-read .w { color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .r, .r-stagger > *, .rise > * { opacity: 1; transform: none; animation: none; transition: none; } .karaoke .w { color: var(--ink); } }

/* Trust band */
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hair); }
.trust__stat { padding: 1.6rem 1.2rem 1.6rem 0; border-bottom: 1px solid var(--hair); }
.trust__stat b { display: block; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.trust__stat b .stars { font-size: .5em; vertical-align: .25em; margin-left: .3rem; }
.trust__stat span { display: block; margin-top: .5rem; color: var(--mut); }
@media (max-width: 700px) { .trust__grid { grid-template-columns: 1fr; } }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(1.2rem, 3vw, 2.6rem); margin-top: 2.2rem; }
.review { padding: 1.3rem 0; border-top: 1px solid var(--hair); }
.review q { display: block; quotes: none; font-size: 1.02rem; line-height: 1.6; }
.review q::before { content: "\201C"; color: var(--accent); font-size: 2.2rem; line-height: 0; vertical-align: -.5em; margin-right: .2rem; font-weight: 300; }
.review footer { margin-top: .8rem; display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--mut); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }
.gbtn { display: inline-flex; align-items: center; gap: .6rem; }
.gbtn svg { width: 1.2rem; height: 1.2rem; }

/* Film section */
.film { position: relative; width: 100vw; margin-left: calc(50% - 50vw); background: var(--band); color: var(--band-ink); overflow: hidden; }
.film__video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.film__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.4rem, 4vw, 3rem); background: linear-gradient(to top, rgba(4,10,24,.8), rgba(4,10,24,0)); color: #fff; }
.film__cap .kicker { color: rgba(255,255,255,.8); margin-bottom: .4rem; }
.film__cap h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 2.2rem); }
.film__ph { width: 100%; aspect-ratio: 16/9; display: grid; place-items: center; background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px); color: rgba(255,255,255,.55); font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; text-align: center; padding: 2rem; }
.ph { background: linear-gradient(135deg, color-mix(in srgb, var(--band) 88%, #fff), var(--band)); color: rgba(255,255,255,.6); display: grid; place-items: center; text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; padding: 1rem; }

/* Index rows (parts, makes, steps) */
.rows { border-top: 1px solid var(--hair); }
.row { display: grid; grid-template-columns: minmax(3rem, 4.5rem) 1fr auto; gap: 1.2rem; align-items: center; padding: clamp(1.2rem, 2.6vh, 1.7rem) 0; border-bottom: 1px solid var(--hair); text-decoration: none; color: inherit; transition: background-color .2s; }
a.row:hover { background: color-mix(in srgb, var(--bg2) 60%, transparent); }
.row .num { font-size: clamp(1.3rem, 2vw, 1.9rem); }
.row h3 { margin-bottom: .3rem; }
.row p { color: var(--mut); font-size: .97rem; max-width: 44em; }
.row__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hair); display: grid; place-items: center; font-size: 1.1rem; transition: background-color .2s, color .2s, border-color .2s; }
a.row:hover .row__arrow { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
@media (max-width: 560px) { .row { grid-template-columns: 2.6rem 1fr; } .row__arrow { display: none; } }
.row--photo { grid-template-columns: minmax(3rem, 4.5rem) 1fr auto 44px; }
.row--photo .row__img { width: 150px; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: var(--bg2); }
.row--photo .row__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
a.row--photo:hover .row__img img { transform: scale(1.05); }
@media (max-width: 700px) { .row--photo { grid-template-columns: 2.6rem 1fr; } .row--photo .row__img { grid-column: 2; width: 100%; max-width: 320px; } }

/* Part tiles grid */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; margin-top: 2rem; }
.tile { display: block; text-decoration: none; color: inherit; border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; background: var(--bg); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.tile__img { aspect-ratio: 4/3; background: var(--bg2); overflow: hidden; }
.tile__img img { width: 100%; height: 100%; object-fit: cover; }
.tile__body { padding: 1rem 1.1rem 1.2rem; }
.tile__body .num { font-size: .95rem; font-weight: 600; letter-spacing: .1em; }
.tile__body h3 { font-size: 1.1rem; margin-top: .35rem; }
.tile__body p { color: var(--mut); font-size: .9rem; margin-top: .35rem; }

/* Split section */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg2); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.checks { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .8rem; align-items: flex-start; color: var(--mut); }
.checks li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: .55em; }
.checks li strong { color: var(--ink); font-weight: 600; }

/* Makes ticker */
.ticker { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 1.2rem 0; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.ticker__track { display: flex; gap: clamp(2rem, 4vw, 3.5rem); width: max-content; animation: tick 46s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track a { text-decoration: none; font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.7rem); letter-spacing: -.02em; color: var(--mut); white-space: nowrap; transition: color .2s; }
.ticker__track a:hover { color: var(--ink); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* Map */
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair); background: var(--bg2); aspect-ratio: 16/10; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.hours { list-style: none; margin: 1.2rem 0 0; padding: 0; border-top: 1px solid var(--hair); }
.hours li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--hair); color: var(--mut); font-size: .95rem; }
.hours li b { color: var(--ink); font-weight: 600; }
.hours li.is-today { color: var(--ink); }
.hours li.is-today b::after { content: "Today"; margin-left: .5rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.areas { columns: 3; column-gap: 2rem; margin-top: 1rem; color: var(--mut); font-size: .95rem; }
.areas span { display: block; padding: .25rem 0; break-inside: avoid; }
.areas span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: .6rem; vertical-align: .15em; }
@media (max-width: 700px) { .areas { columns: 2; } }

/* FAQ */
.faq details { border-bottom: 1px solid var(--hair); }
.faq details:first-of-type { border-top: 1px solid var(--hair); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem .2rem; font-weight: 700; font-size: 1.05rem; letter-spacing: -.015em; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 9px; height: 9px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform .25s; }
.faq details[open] summary i { transform: rotate(-135deg); }
.faq details p { color: var(--mut); padding: 0 .2rem 1.2rem; max-width: 46em; line-height: 1.65; }

/* Band CTA */
.band { background: var(--band); color: var(--band-ink); }
.band .kicker { color: var(--band-mut); }
.band h2, .band h3 { color: var(--band-ink); }
.band .lead, .band .body { color: var(--band-mut); }
.band .btn--line { color: #fff; border-color: rgba(255,255,255,.4); }
.band .btn--line:hover { border-color: #fff; }
.band .hair { border-color: var(--band-hair); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.ccard { border: 1px solid var(--band-hair); border-radius: var(--radius); padding: 1.5rem; display: grid; gap: .6rem; align-content: start; }
.ccard .kicker { margin-bottom: .2rem; }
.ccard b { font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -.03em; font-weight: 700; word-break: break-word; }
.ccard p { color: var(--band-mut); font-size: .95rem; }
.ccard .btn { justify-self: start; margin-top: .4rem; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }
.copybtn.is-copied { background: var(--ok) !important; color: #fff !important; border-color: var(--ok) !important; }

/* Footer */
.ft { background: var(--band); color: var(--band-ink); padding: clamp(3rem, 7vh, 5rem) 0 2rem; border-top: 1px solid var(--band-hair); }
.ft__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem); }
.ft h3 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--band-mut); margin-bottom: .9rem; font-weight: 700; }
.ft ul { list-style: none; margin: 0; padding: 0; }
.ft li { margin-bottom: .5rem; }
.ft a { color: rgba(255,255,255,.88); text-decoration: none; font-size: .95rem; transition: color .2s; }
.ft a:hover { color: var(--accent); }
.ft__brand { font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.ft__about { color: var(--band-mut); font-size: .92rem; line-height: 1.65; max-width: 28em; margin-top: .8rem; }
.ft__legal { margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid var(--band-hair); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--band-mut); font-size: .8rem; }
.ft__legal a { font-size: .8rem; color: var(--band-mut); margin-left: 1rem; }
@media (max-width: 900px) { .ft__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft__grid { grid-template-columns: 1fr; } }

/* Sticky mobile call bar */
.stick { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--bg) 92%, transparent); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-top: 1px solid var(--hair); }
.stick .btn { flex: 1; min-height: 50px; }
@media (max-width: 900px) { .stick { display: flex; } body { padding-bottom: 76px; } }

/* Theme picker (preview only) */
.tp { position: fixed; right: 1rem; bottom: 1rem; z-index: 70; display: flex; gap: .4rem; padding: .45rem; border-radius: 999px; background: rgba(15,28,51,.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); }
.tp button { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; padding: 0; }
.tp button.is-on { border-color: #fff; }
.tp button[data-t="trust"] { background: linear-gradient(135deg, #fff 50%, #1d4ed8 50%); }
.tp button[data-t="ink"] { background: linear-gradient(135deg, #0b1a3a 50%, #f5a623 50%); }
.tp button[data-t="coast"] { background: linear-gradient(135deg, #fff 50%, #f5a623 50%); }
.tp button[data-t="sign"] { background: linear-gradient(135deg, #fff 50%, #c8202b 50%); }
.tp span { color: #fff; font-size: .72rem; align-self: center; padding: 0 .4rem 0 .2rem; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 900px) { .tp { bottom: 84px; } }

/* Page hero (inner pages) */
.phero { padding: clamp(3.5rem, 9vh, 6rem) 0 clamp(2.5rem, 6vh, 4rem); border-bottom: 1px solid var(--hair); }
.phero .lead { margin-top: 1.1rem; }
.crumbs { font-size: .82rem; color: var(--mut); margin-bottom: 1.2rem; }
.crumbs a { color: var(--mut); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.pill { display: inline-flex; align-items: center; min-height: 40px; padding: .5em 1em; border-radius: 999px; border: 1px solid var(--hair); text-decoration: none; font-size: .9rem; font-weight: 500; color: var(--ink); transition: border-color .2s, background-color .2s; }
.pill:hover { border-color: var(--ink); }
.pill.is-on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
@media (max-width: 860px) { .two { grid-template-columns: 1fr; } }
.partlist { columns: 2; column-gap: 2rem; list-style: none; margin: 1rem 0 0; padding: 0; color: var(--mut); }
.partlist li { break-inside: avoid; padding: .35rem 0; border-bottom: 1px solid var(--hair); }
.cta-inline { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal p, .legal li { color: var(--mut); line-height: 1.7; max-width: 48em; }
.legal ul { padding-left: 1.2rem; }
.legal p { margin-top: .8rem; }

/* Film overlay captions (timed by main.js from data-overlays) */
.film__ov { position: absolute; left: 0; right: 0; top: 0; bottom: 0; pointer-events: none; display: grid; place-items: center; }
.film__ov span { position: absolute; color: #fff; font-weight: 700; font-size: clamp(1.6rem, 4.6vw, 4rem); letter-spacing: -.03em; text-shadow: 0 2px 30px rgba(4,10,24,.7), 0 1px 3px rgba(4,10,24,.6); opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .6s cubic-bezier(.16,1,.3,1); text-align: center; padding: 0 1rem; }
.film__ov span.is-on { opacity: 1; transform: none; }



/* ---------- Header v2: ticker strip + lockup ---------- */
.tick { background: var(--band); color: var(--band-mut); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; overflow: hidden; height: 34px; transition: height .3s; }
.tick__track { display: flex; gap: 4.5rem; width: max-content; padding: 0 1.5rem; line-height: 34px; animation: tick 60s linear infinite; }
body.is-scrolled .tick { height: 0; }
.hd { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 82%, transparent); -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--hair); transition: box-shadow .3s; }
body.is-scrolled .hd { box-shadow: 0 10px 30px rgba(15,28,51,.08); }
.hd__in { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 84px; transition: min-height .3s; }
body.is-scrolled .hd__in { min-height: 68px; }
.hd__logo { display: grid; grid-template-columns: auto; text-decoration: none; line-height: 1; color: var(--ink); }
.hd__l1 { font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--mut); }
.hd__l2 { font-size: 1.55rem; font-weight: 800; letter-spacing: -.035em; margin-top: .15rem; position: relative; display: inline-block; }
.hd__l2::after { content: ""; display: block; height: 3px; width: 2.2rem; background: var(--accent); margin-top: .3rem; border-radius: 2px; }
.hd__l3 { font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); margin-top: .35rem; }
.hd__nav { display: flex; gap: .2rem; }
.hd__nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--mut); padding: .55rem .9rem; border-radius: 999px; white-space: nowrap; transition: background-color .2s, color .2s; }
.hd__nav a:hover { color: var(--ink); background: var(--bg2); }
.hd__nav a.is-here { color: var(--ink); background: var(--bg2); }
.hd__act { display: flex; align-items: center; gap: .9rem; }
.hd__tel { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.05; color: var(--ink); }
.hd__tel b { font-size: 1.35rem; letter-spacing: -.02em; font-weight: 800; }
.hd__tel small { font-size: .66rem; color: var(--mut); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .25rem; }
.hd .btn { min-height: 46px; padding: .75em 1.4em; font-size: .95rem; }
.hd__burger { display: none; width: 46px; height: 46px; border: 1px solid var(--hair); border-radius: 12px; background: transparent; cursor: pointer; position: relative; }
.hd__burger i, .hd__burger::before, .hd__burger::after { content: ""; position: absolute; left: 13px; right: 13px; height: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.hd__burger::before { top: 15px; } .hd__burger i { top: 22px; } .hd__burger::after { top: 29px; }
.hd.is-open .hd__burger::before { transform: translateY(7px) rotate(45deg); }
.hd.is-open .hd__burger i { opacity: 0; }
.hd.is-open .hd__burger::after { transform: translateY(-7px) rotate(-45deg); }
.hd__menu { display: none; }
@media (max-width: 1180px) { .hd__tel small { display: none; } .hd__tel b { font-size: 1.1rem; } .hd__nav a { padding: .5rem .6rem; font-size: .9rem; } }
@media (max-width: 980px) { .hd__tel { display: none; } }
@media (max-width: 900px) {
  .hd__nav, .hd__act .btn { display: none; }
  .hd__burger { display: block; }
  .hd__in { min-height: 72px; }
  .hd.is-open .hd__menu { display: block; border-top: 1px solid var(--hair); padding: 1rem 0 1.4rem; }
  .hd__menu a { display: block; padding: .8rem 0; text-decoration: none; font-weight: 600; font-size: 1.15rem; border-bottom: 1px solid var(--hair); }
  .hd__menu .btn { margin-top: .8rem; width: 100%; border: 0; }
  .tick { font-size: .66rem; }
}

/* ---------- Hero v2: full-bleed film, darkened panel bottom-left ---------- */
.hero { position: relative; min-height: calc(100vh - 118px); display: flex; align-items: flex-end; background: var(--band); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero__veil { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(to top, rgba(4,10,24,.55) 0%, rgba(4,10,24,.15) 45%, rgba(4,10,24,0) 75%), linear-gradient(100deg, rgba(4,10,24,.35) 0%, rgba(4,10,24,0) 55%); }
.hero__in { position: relative; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-top: clamp(4rem, 10vh, 7rem); padding-bottom: clamp(1.6rem, 5vh, 3.2rem); }
.hero__panel { max-width: 40em; padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.6rem); border-radius: 22px; background: rgba(4,10,24,.56); border: 1px solid rgba(255,255,255,.14); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); box-shadow: 0 30px 80px rgba(4,10,24,.35); }
.hero h1 { color: #fff; font-size: clamp(2rem, 3.4vw + .8rem, 3.6rem); }
.hero__sub { margin-top: .7rem; font-size: clamp(1.15rem, 1.2vw + .8rem, 1.6rem); font-weight: 500; color: rgba(255,255,255,.92); letter-spacing: -.02em; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .7rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.9); }
.hero .ctas { margin-top: 1.3rem; }
.hero__badge { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; border-radius: 14px; background: rgba(4,10,24,.5); border: 1px solid rgba(255,255,255,.2); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); text-decoration: none; color: #fff; flex: none; }
.hero__badge b { font-size: 1.05rem; display: flex; align-items: center; gap: .4rem; }
.hero__badge small { display: block; font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,.75); }
.hero__badge svg { width: 1.6rem; height: 1.6rem; }
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero__media { position: relative; height: auto; aspect-ratio: 16 / 10; z-index: 0; }
  .hero__veil { display: none; }
  .hero__in { flex-direction: column; align-items: stretch; padding-top: 0; margin-top: -2.5rem; }
  .hero__panel { max-width: none; box-shadow: 0 20px 50px rgba(4,10,24,.35); }
  .hero__badge { align-self: flex-start; margin-top: 1rem; }
}
@media (max-width: 900px) and (orientation: portrait) { .hero__media { aspect-ratio: 4 / 3; } }

/* ---------- Review ticker ---------- */
.rticker { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; margin-top: 2.4rem; padding: .4rem 0 1.2rem; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.rticker__track { display: flex; gap: 1rem; width: max-content; animation: tick 110s linear infinite; }
.rticker:hover .rticker__track { animation-play-state: paused; }
.rticker .review { width: 380px; flex: none; padding: 1.2rem 1.3rem; border: 1px solid var(--hair); border-radius: 16px; background: var(--bg); }
.rticker .review q { font-size: .98rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 600px) { .rticker .review { width: 300px; } .rticker__track { animation-duration: 80s; } }
@media (prefers-reduced-motion: reduce) { .rticker__track, .tick__track { animation: none; } }
.reviews { display: none; }

/* ---------- Two more dark themes ---------- */
html[data-theme="coal"] {
  --bg: #141517; --bg2: #1c1d20; --ink: #f4f4f2; --mut: rgba(244,244,242,.68); --hair: rgba(255,255,255,.14);
  --brand: #e2352f; --accent: #e2352f; --accent-ink: #ffffff; --accent-hover: #c62a25;
  --call: #ffffff; --call-ink: #141517; --call-hover: #e8e8e6;
  --band: #0c0c0d; --band-ink: #fff; --band-mut: rgba(255,255,255,.68); --band-hair: rgba(255,255,255,.14);
  --shadow: 0 18px 44px rgba(0,0,0,.5);
}
html[data-theme="night"] {
  --bg: #0a0f1e; --bg2: #101731; --ink: #f2f5fb; --mut: rgba(242,245,251,.68); --hair: rgba(255,255,255,.14);
  --brand: #3b82f6; --accent: #3b82f6; --accent-ink: #ffffff; --accent-hover: #2563eb;
  --call: #22c55e; --call-ink: #06121f; --call-hover: #16a34a;
  --band: #050914; --band-ink: #fff; --band-mut: rgba(255,255,255,.68); --band-hair: rgba(255,255,255,.14);
  --shadow: 0 18px 44px rgba(0,0,0,.5);
}
.tp button[data-t="coal"] { background: linear-gradient(135deg, #141517 50%, #e2352f 50%); }
.tp button[data-t="night"] { background: linear-gradient(135deg, #0a0f1e 50%, #3b82f6 50%); }
html[data-theme="ink"] .hd__nav a:hover, html[data-theme="coal"] .hd__nav a:hover, html[data-theme="night"] .hd__nav a:hover { background: rgba(255,255,255,.08); }

/* Film hold caption */
.film__ov span.is-hold { opacity: 1; transform: none; }

/* Restored star glyph sizing (lost with the old hero block) */
.stars { display: inline-flex; gap: .12rem; color: var(--star); }
.stars svg { width: .95em; height: .95em; fill: currentColor; }
/* Mobile hero: media is a block above the panel, not a flex sibling */
@media (max-width: 900px) {
  .hero { display: block; }
  .hero__media { position: relative; width: 100%; aspect-ratio: 16 / 10; }
  .hero__media img, .hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; }
}

/* Map fills its column (no blank space under it) */
.two { align-items: stretch; }
.map { aspect-ratio: auto; height: 100%; min-height: 460px; }
@media (max-width: 860px) { .map { height: auto; aspect-ratio: 16 / 10; min-height: 0; } }
/* Mobile hero v3: photo block, then panel, no overlap */
@media (max-width: 900px) {
  .hero__in { margin-top: 0; padding-top: 1.2rem; padding-bottom: 1.6rem; gap: 1rem; }
  .hero__panel { padding: 1.4rem 1.3rem; background: rgba(4,10,24,.35); border-color: rgba(255,255,255,.1); box-shadow: none; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero__badge { margin-top: 0; }
}
/* Call page */
.callpg { text-align: center; min-height: 70vh; display: grid; align-items: center; }
.callpg .crumbs { text-align: center; }
.callpg .lead { margin-left: auto; margin-right: auto; }
.callpg__btn { display: flex; width: min(100%, 26em); margin: 1.8rem auto 1rem; min-height: 68px; font-size: 1.3rem; }
.callpg__num { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem 1.2rem; }
.callpg .hours { margin: 2rem auto 0; text-align: left; }

/* No ticker, fixed header height, no hero resize on scroll (was making the video jump) */
.tick { display: none !important; }
.hd__in { min-height: 80px !important; transition: none !important; }
body.is-scrolled .hd__in { min-height: 80px !important; }
.hd { transition: none !important; }
.hero { min-height: calc(100svh - 80px); }
@supports not (height: 100svh) { .hero { min-height: calc(100vh - 80px); } }
.hero__media video { transform: translateZ(0); }
@media (max-width: 1280px) { .hd__quote { display: none; } }
@media (max-width: 900px) { .hero { min-height: 0; } }
.ft__legal p:last-child a:first-of-type { margin-left: 1.4rem; }

.ft__credit { margin-top: 2.5rem; padding: 1rem 1.2rem; border: 1px solid var(--band-hair); border-radius: 12px; color: var(--band-mut); font-size: .86rem; display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; }
.ft__credit a { font-size: .86rem; color: var(--band-ink); text-decoration: underline; text-underline-offset: 3px; margin: 0; }
.ft__legal p:last-child a:first-of-type { margin-left: 0; }
