/* OBD Auto Repair & Diagnostics — obdautorepair.com
   Brand: gold on charcoal. Dark hero/luxury sections for drama, light ivory
   sections (Services, Reviews) to break up the page. */

:root {
    color-scheme: dark;

    /* dark surfaces — lifted off near-black to charcoal */
    --bg: #11161d;
    --bg-2: #161d26;
    --bg-3: #1c2530;
    --bg-deep: #0c1116;

    --panel: rgba(255, 255, 255, .055);
    --panel-2: rgba(255, 255, 255, .085);
    --line: rgba(255, 255, 255, .13);
    --line-strong: rgba(232, 182, 84, .38);

    --fg: #f3f6fa;
    --muted: #aebdcd;
    --dim: #8b9caf;

    /* light surfaces */
    --lt-bg: #f5f1e8;
    --lt-surface: #fffefb;
    --lt-fg: #151a21;
    --lt-muted: #56626f;
    --lt-line: rgba(21, 26, 33, .12);

    --gold: #e8b654;
    --gold-hi: #ffd98a;
    --gold-dp: #a3711b;
    --gold-grad: linear-gradient(135deg, #ffd98a 0%, #e8b654 45%, #b8862c 100%);

    --radius: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --maxw: 1200px;
    --shadow: 0 18px 50px rgba(0, 0, 0, .5);
    --shadow-lt: 0 14px 40px rgba(21, 26, 33, .1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- shared type ---------- */

.eyebrow {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 .9rem;
}

h2.section-title {
    margin: 0 0 .6rem;
    font-size: clamp(1.95rem, 4.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -.025em;
    font-weight: 800;
}

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-lede {
    margin: 0 auto 3.25rem;
    max-width: 46rem;
    color: var(--muted);
    font-size: 1.06rem;
}

.section { padding: clamp(3.75rem, 8vw, 7rem) 0; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.center { text-align: center; }

/* ---------- light sections ---------- */

.section-light {
    background: var(--lt-bg);
    color: var(--lt-fg);
}

.section-light .section-title { color: var(--lt-fg); }
.section-light .section-lede { color: var(--lt-muted); }
.section-light .eyebrow { color: var(--gold-dp); }
.section-light .gold-text {
    background: linear-gradient(135deg, #c9922e 0%, #a3711b 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* soft transitions into and out of the light bands */
.section-light::before,
.section-light::after {
    content: "";
    display: block;
    height: 0;
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-gold {
    background: var(--gold-grad);
    color: #1a1206;
    box-shadow: 0 10px 30px rgba(232, 182, 84, .3);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(232, 182, 84, .42); }

.btn-ghost { border-color: var(--line-strong); color: var(--fg); background: rgba(255, 255, 255, .06); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(232, 182, 84, .14); transform: translateY(-2px); }

.section-light .btn-ghost { border-color: rgba(163, 113, 27, .45); color: var(--lt-fg); background: rgba(255, 255, 255, .7); }
.section-light .btn-ghost:hover { background: #fff; border-color: var(--gold-dp); }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

/* ---------- announcement ticker ---------- */

.ticker {
    position: relative;
    z-index: 61;
    background: linear-gradient(90deg, var(--bg-deep), #1a1305 55%, var(--bg-deep));
    border-bottom: 1px solid var(--line-strong);
    overflow: hidden;
}

.ticker > a {
    display: block;
    padding: .62rem 0;
    text-decoration: none;
    color: var(--fg);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 42s linear infinite;
}

/* let people stop the marquee to read it */
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track { animation-play-state: paused; }

.ticker-strip { display: flex; }

.ticker-item {
    flex: 0 0 auto;
    padding: 0 2.4rem;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .015em;
    white-space: nowrap;
    color: var(--muted);
}

.ticker-cta { color: var(--gold); font-weight: 700; }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(12, 17, 22, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { height: 46px; width: auto; }

.nav { display: flex; gap: 1.75rem; margin-left: auto; }

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    transition: color .16s ease;
}

.nav a:hover { color: var(--gold); }

.header-cta { flex: 0 0 auto; }

.nav-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line-strong);
    color: var(--gold);
    border-radius: 10px;
    padding: .5rem .7rem;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    isolation: isolate;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
    overflow: hidden;
}

/* the car reads much more strongly now: lighter scrim, and the scrim is
   angled so it only darkens behind the copy on the left */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url('/images/hero-bmw.webp');
    background-size: cover;
    background-position: center 58%;
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg, rgba(12, 17, 22, .95) 0%, rgba(12, 17, 22, .82) 38%, rgba(12, 17, 22, .32) 62%, rgba(12, 17, 22, .48) 100%),
        linear-gradient(180deg, rgba(12, 17, 22, .55) 0%, transparent 22%, transparent 72%, var(--bg) 100%),
        radial-gradient(760px 380px at 12% 18%, rgba(232, 182, 84, .2), transparent 68%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .42rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(232, 182, 84, .12);
    color: var(--gold-hi);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .22);
}

.hero h1 {
    margin: 1.4rem 0 0;
    font-size: clamp(2.4rem, 5.6vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -.035em;
    font-weight: 800;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}

.hero-sub {
    margin: 1.1rem 0 0;
    max-width: 32rem;
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    color: #cdd8e4;
}

.hero-specs {
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .9rem;
    font-size: .84rem;
    color: var(--gold-hi);
    font-weight: 600;
    letter-spacing: .04em;
}

.hero-specs .sep { color: rgba(232, 182, 84, .45); }

.hero-actions { margin: 2.1rem 0 0; display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-chips {
    margin: 2.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    padding: 0;
    list-style: none;
}

.hero-chips li {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: .82rem;
    font-weight: 600;
}

/* glass card filling the right side of the hero */
.hero-card {
    position: relative;
    padding: 1.9rem 1.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(165deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(150deg, rgba(255, 217, 138, .65), transparent 45%, rgba(232, 182, 84, .35));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card .rating { display: flex; align-items: center; gap: .6rem; }
.hero-card .rating .stars { color: var(--gold-hi); font-size: 1.05rem; letter-spacing: .1em; }
.hero-card .rating span { font-size: .84rem; color: #d6e0ea; font-weight: 600; }

.hero-card h3 {
    margin: 1.1rem 0 .5rem;
    font-size: 1.42rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 800;
}

.hero-card p { margin: 0; font-size: .93rem; color: #c6d2df; }

.hero-card ul {
    margin: 1.4rem 0 0;
    padding: 1.4rem 0 0;
    list-style: none;
    display: grid;
    gap: .7rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-card li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .9rem;
    color: #e4ebf3;
    font-weight: 500;
}

.hero-card li .tick {
    flex: 0 0 auto;
    width: 19px; height: 19px;
    margin-top: .15rem;
    border-radius: 50%;
    background: var(--gold-grad);
    color: #1a1206;
    font-size: .68rem;
    font-weight: 900;
    display: grid;
    place-items: center;
}

.hero-card .open-now {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .84rem;
    color: #c6d2df;
}

.hero-card .open-now strong { display: block; color: #fff; font-size: .95rem; }

/* ---------- mobile-site notice ---------- */

/* ---------- mobile service cross-promo ---------- */

.mobile-promo {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, var(--bg-3), var(--bg));
    border-top: 1px solid var(--line);
}

.mobile-promo::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(680px 300px at 88% 0%, rgba(232, 182, 84, .16), transparent 70%);
}

.mobile-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: center;
}

.mobile-lede { margin: 1rem 0 0; max-width: 36rem; color: var(--muted); }

.mobile-points {
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .6rem;
    max-width: 36rem;
}

.mobile-points li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-size: .95rem;
    color: var(--muted);
}

.mobile-actions {
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.mobile-card {
    padding: 2.2rem 2rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(232, 182, 84, .1), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow);
    text-align: center;
}

.mobile-stat {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 3.9rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.mobile-stat-label {
    margin: .7rem 0 0;
    font-size: .88rem;
    color: var(--muted);
}

.mobile-rule {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.mobile-note { margin: 0; font-size: .9rem; color: var(--dim); }
.mobile-note strong { color: var(--fg); }

.mobile-link {
    display: inline-block;
    margin: 1.1rem 0 0;
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
}

.mobile-link:hover { color: var(--gold-hi); }

/* ---------- cards ---------- */

.grid { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
    padding: 1.9rem 1.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, .02));
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    background: linear-gradient(180deg, var(--panel-2), rgba(255, 255, 255, .03));
}

.card-icon {
    display: grid;
    place-items: center;
    width: 54px; height: 54px;
    margin-bottom: 1.1rem;
    border-radius: 15px;
    background: rgba(232, 182, 84, .15);
    border: 1px solid var(--line-strong);
    font-size: 1.5rem;
}

.card h3 { margin: 0 0 .5rem; font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- services (light) ---------- */

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.35rem;
}

.svc {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.85rem;
    border-radius: var(--radius-xl);
    background: var(--lt-surface);
    border: 1px solid var(--lt-line);
    box-shadow: var(--shadow-lt);
    transition: transform .22s ease, box-shadow .22s ease;
}

.svc:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(21, 26, 33, .16); }

/* the full-repair card carries the most items — let it run wide */
.svc-wide { grid-column: span 2; }

.svc-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    align-self: flex-start;
    width: 56px; height: 56px;
    border-radius: 17px;
    background: linear-gradient(150deg, #fff4dc, #f3dfb2);
    border: 1px solid rgba(163, 113, 27, .25);
    font-size: 1.55rem;
    margin-bottom: 1.15rem;
}

.svc h3 {
    margin: 0;
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--lt-fg);
}

.svc .tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: .5rem;
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dp);
    font-weight: 800;
    border: 1px solid rgba(163, 113, 27, .35);
    background: rgba(232, 182, 84, .12);
    border-radius: 999px;
    padding: .2rem .7rem;
}

.svc ul {
    margin: 1.5rem 0 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid var(--lt-line);
    list-style: none;
    display: grid;
    gap: .7rem;
}

.svc-wide ul { grid-template-columns: 1fr 1fr; gap: .7rem 2rem; }

.svc li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .95rem;
    color: var(--lt-muted);
    line-height: 1.45;
}

.svc li .tick {
    flex: 0 0 auto;
    width: 20px; height: 20px;
    margin-top: .1rem;
    border-radius: 50%;
    background: linear-gradient(150deg, #ffd98a, #d9a13c);
    color: #3d2a05;
    font-size: .7rem;
    font-weight: 900;
    display: grid;
    place-items: center;
}

/* ---------- estimate band ---------- */

.band {
    position: relative;
    isolation: isolate;
    padding: clamp(3.25rem, 7vw, 5.25rem) 0;
    text-align: center;
    overflow: hidden;
}

.band::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(720px 320px at 50% 0%, rgba(232, 182, 84, .26), transparent 70%),
        linear-gradient(180deg, var(--bg-3), var(--bg-2));
}

.band h2 { margin: 0 0 1rem; font-size: clamp(1.8rem, 4.3vw, 2.7rem); font-weight: 800; letter-spacing: -.025em; }

/* the :not() keeps this from clobbering .band-marks' own margins */
.band p:not(.band-marks) { margin: 0 auto 2.5rem; max-width: 40rem; color: var(--muted); }

.band .band-marks {
    margin: 2.5rem 0 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 2rem;
    font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); font-weight: 700;
}

/* ---------- luxury ---------- */

.lux-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3rem; align-items: center; }

.brand-row { margin: 1.75rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }

.brand-row li {
    padding: .42rem 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    border-radius: 9px;
    font-size: .76rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c3d0dd;
}

.stats { margin: 2.25rem 0 0; display: flex; flex-wrap: wrap; gap: 2.5rem; }

.stat-num {
    display: block;
    font-size: clamp(2.1rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.stat-lbl { display: block; margin-top: .5rem; max-width: 15rem; font-size: .87rem; color: var(--muted); }

.lux-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.lux-photos figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .42);
}

.lux-photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .6s ease; }
.lux-photos figure:hover img { transform: scale(1.06); }
.lux-photos .span-2 { grid-column: span 2; }
.lux-photos .span-2 img { aspect-ratio: 16 / 8; }

/* ---------- reviews carousel (light) ---------- */

.rail-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.rail-nav { display: flex; gap: .6rem; flex: 0 0 auto; }

.rail-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid var(--lt-line);
    background: var(--lt-surface);
    color: var(--lt-fg);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(21, 26, 33, .1);
    transition: background .18s ease, transform .18s ease, opacity .18s ease, color .18s ease;
}

.rail-btn:hover:not(:disabled) { background: var(--gold-grad); color: #1a1206; transform: translateY(-2px); }
.rail-btn:disabled { opacity: .35; cursor: default; }

.rail-viewport { position: relative; margin: 0 -1.25rem; padding: 0 1.25rem; }

/* fade the edges so cards look like they run off the page */
.rail-viewport::before,
.rail-viewport::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.rail-viewport::before { left: 0;  background: linear-gradient(90deg, var(--lt-bg), transparent); }
.rail-viewport::after  { right: 0; background: linear-gradient(270deg, var(--lt-bg), transparent); }

.rail {
    display: flex;
    gap: 1.35rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .6rem .25rem 1.75rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rail::-webkit-scrollbar { display: none; }

.review {
    position: relative;
    flex: 0 0 clamp(285px, 33vw, 385px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 2.1rem 1.9rem 1.8rem;
    border-radius: var(--radius-xl);
    background: var(--lt-surface);
    border: 1px solid var(--lt-line);
    box-shadow: var(--shadow-lt);
    transition: transform .22s ease, box-shadow .22s ease;
}

.review:hover { transform: translateY(-5px); box-shadow: 0 26px 58px rgba(21, 26, 33, .16); }

.review .quote-mark {
    position: absolute;
    top: 1rem; right: 1.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(232, 182, 84, .35);
    pointer-events: none;
}

.review .stars { color: #d9a13c; font-size: .98rem; letter-spacing: .12em; }

.review blockquote {
    margin: 0;
    font-size: .98rem;
    color: var(--lt-fg);
    line-height: 1.62;
}

.review figcaption {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--lt-line);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.review .avatar {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, #ffd98a, #c9922e);
    color: #3d2a05;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .02em;
}

.review .who strong { display: block; color: var(--lt-fg); font-size: .95rem; font-weight: 700; }
.review .who span { font-size: .82rem; color: var(--lt-muted); }

.rail-hint { margin: 0; text-align: center; font-size: .82rem; color: var(--lt-muted); }

/* ---------- location / contact ---------- */

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.15rem; }

.info {
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.info h4 {
    margin: 0 0 .6rem;
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
}

.info p { margin: 0; font-size: .95rem; color: var(--muted); }
.info a { color: var(--fg); text-decoration: none; font-weight: 600; }
.info a:hover { color: var(--gold); }

/* ---------- call CTA ---------- */

.call-cta { background: linear-gradient(180deg, var(--bg-2), var(--bg-deep)); }

.call-grid {
    margin: 2.75rem auto 0;
    max-width: 62rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.call-card {
    padding: 2.4rem 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, .02));
    text-align: center;
}

.call-card-primary {
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(232, 182, 84, .12), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow);
}

.call-label {
    margin: 0;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
}

.call-number {
    display: inline-block;
    margin: .7rem 0 .3rem;
    font-size: clamp(1.75rem, 4.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--fg);
    text-decoration: none;
}

.call-number:hover { color: var(--gold-hi); }

.call-meta { margin: 0 0 1.5rem; font-size: .88rem; color: var(--muted); }
.call-meta strong { color: var(--fg); }

.call-card .btn { width: 100%; }

.call-note { margin: 1.1rem 0 0; font-size: .85rem; line-height: 1.6; color: var(--dim); }

.call-points {
    margin: 2.5rem auto 0;
    padding: 0;
    max-width: 62rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7rem 2.25rem;
}

.call-points li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--muted);
}

.call-directions { margin: 2.25rem 0 0; font-size: .92rem; color: var(--muted); }
.call-directions a { color: var(--gold); font-weight: 700; text-decoration: none; }
.call-directions a:hover { color: var(--gold-hi); text-decoration: underline; }

/* ---------- footer ---------- */

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
    padding: 3.25rem 0 2rem;
}

.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
.site-footer img.flogo { height: 58px; width: auto; margin-bottom: 1rem; }
.site-footer p { margin: 0; color: var(--muted); font-size: .92rem; max-width: 30rem; }

.footer-col h5 {
    margin: 0 0 .9rem;
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
}

.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.footer-col a, .footer-col li { color: var(--muted); text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    margin-top: 2.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
    justify-content: space-between;
    font-size: .84rem; color: var(--dim);
}

/* ---------- sticky mobile call bar ---------- */

.callbar { display: none; }

/* ---------- responsive ---------- */

@media (max-width: 1120px) {
    .svc-wide { grid-column: span 1; }
    .svc-wide ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1050px) {
    .nav {
        /* anchored to the header, not the viewport, so the ticker above it
           can't knock the dropdown out of alignment */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: .5rem 1.25rem 1.25rem;
        background: rgba(12, 17, 22, .98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        display: none;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav.open { display: flex; }
    .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .nav-toggle { display: block; }
    .header-cta { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-card { max-width: 520px; }

    body { padding-bottom: 70px; }

    .callbar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--line);
        border-top: 1px solid var(--line);
    }

    .callbar a {
        padding: .95rem .5rem;
        background: var(--bg-2);
        text-align: center;
        text-decoration: none;
        font-size: .88rem;
        font-weight: 700;
        color: var(--fg);
    }

    .callbar a.primary { background: var(--gold-grad); color: #1a1206; }
}

@media (max-width: 980px) {
    .lux-grid { grid-template-columns: 1fr; gap: 2.25rem; }
    .call-grid { grid-template-columns: 1fr; }
    .mobile-grid { grid-template-columns: 1fr; gap: 2.25rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }

    .brand img { height: 38px; }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(12, 17, 22, .82) 0%, rgba(12, 17, 22, .68) 45%, rgba(12, 17, 22, .9) 82%, var(--bg) 100%),
            radial-gradient(600px 300px at 20% 12%, rgba(232, 182, 84, .2), transparent 70%);
    }

    .svc-wide ul { grid-template-columns: 1fr; }
    .hero-actions .btn { flex: 1 1 100%; }
    .mobile-actions .btn { flex: 1 1 100%; }
    .stats { gap: 1.75rem; }
    .rail-head { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .lux-photos .span-2 img { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; width: 100%; justify-content: center; }
    .ticker-strip:not(:first-child) { display: none; }
    .ticker-strip .ticker-item:not(:first-child) { display: none; }
    .ticker-item { white-space: normal; text-align: center; }

    html { scroll-behavior: auto; }
    .rail { scroll-behavior: auto; }
    * { transition: none !important; animation: none !important; }
}
