:root {
    --bg: #121212;
    --bg2: #222222;
    --panel: rgba(18, 18, 18, .82);
    --panel-solid: #222222;
    --text: #ffffff;
    --muted: rgba(255,255,255,.55);
    --soft: #e5e5e5;
    --line: rgba(255,255,255,.10);
    --primary: #E9021E;
    --primary-rgb: 233, 2, 30;
    --red: #E9021E;
    --dark3: #333333;
    --accent-2: #ff263d;
    --container-width: 1180px;
    --nav-height: 78px;
    --radius: 8px;
    --section-padding: 74px;
    --hero-min-height: 720px;
    --hero-title-min: 48px;
    --hero-title-max: 104px;
    --hero-text-width: 560px;
    --hero-text-align: left;
    --hero-align-y: end;
    --hero-align-x: start;
    --hero-bottom-padding: 124px;
    --hero-overlay-dark: .80;
    --hero-image-zoom: 1.02;
    --story-size: 58px;
    --story-top: 78px;
    --showcase-ratio: 4 / 5;
    --showcase-gap: 48px;
    --vehicle-image-width: 980px;
    --vehicle-stage-padding: 64px;
    --compare-height: 420px;
    --reel-card-height: 520px;
    --reel-card-fr: 1fr;
    --motion-speed: 1;
    --parallax-strength: 42;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.no-scroll { overflow: hidden; }
img, video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container-width), calc(100% - 40px)); margin: 0 auto; }

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    filter: saturate(.82);
    transition:
        opacity .75s ease,
        transform .85s cubic-bezier(.2, .8, .2, 1),
        filter .75s ease;
    will-change: opacity, transform;
}
[data-reveal="zoom"] { transform: translate3d(0, 24px, 0) scale(.96); }
[data-reveal="slide-left"] { transform: translate3d(38px, 0, 0); }
[data-reveal="slide-right"] { transform: translate3d(-38px, 0, 0); }
[data-reveal="none"] {
    opacity: 1;
    transform: none;
    filter: none;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 300;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(18,18,18,.78);
    backdrop-filter: blur(18px);
}
.topbar { display: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.topbar-inner div { display: flex; gap: 20px; }
.nav {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-logo { width: auto; height: 50px; object-fit: contain; }
.brand-text strong { display: block; font-size: 19px; line-height: 1; letter-spacing: .5px; }
.brand-text span {
    display: block;
    margin-top: 5px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}
.menu { display: flex; align-items: center; gap: 2px; }
.menu a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #e7e7e7;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}
.menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 9px; }
.nav-icon, .offer-btn, .mobile-toggle {
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 950;
}
.nav-icon { width: 44px; color: var(--primary); }
.offer-btn {
    padding: 0 17px;
    background: var(--primary);
    color: #ffffff;
    border-color: rgba(255,255,255,.22);
}
.mobile-toggle { display: none; width: 44px; padding: 0; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 19px; height: 2px; background: #fff; }
.mobile-panel {
    display: none;
    position: fixed;
    top: 117px;
    left: 12px;
    right: 12px;
    z-index: 320;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18,18,18,.98);
}
.mobile-panel.active { display: grid; gap: 4px; }
.mobile-panel a { padding: 13px 12px; border-radius: 8px; color: #f2f2f2; font-weight: 850; }
.mobile-panel a:hover { background: rgba(255,255,255,.08); }

.story-strip {
    position: absolute;
    top: var(--story-top);
    left: 0;
    right: 0;
    z-index: 250;
    padding: 10px 0 8px;
    background: linear-gradient(180deg, rgba(18,18,18,.78), rgba(18,18,18,.36));
    border-block: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}
.story-row { display: flex; align-items: center; justify-content: center; gap: 18px; }
.story-label { min-width: 150px; }
.story-label span, .subtitle {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(var(--primary-rgb), .45);
    border-radius: 8px;
    background: rgba(var(--primary-rgb), .12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}
.story-label strong { display: block; margin-top: 7px; font-size: 18px; }
.story-scroll {
    min-width: 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 3px 2px 6px;
    scroll-snap-type: x mandatory;
}
.story-scroll::-webkit-scrollbar { height: 4px; }
.story-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 99px; }
.story-bubble {
    flex: 0 0 64px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
}
.story-ring {
    width: var(--story-size);
    height: var(--story-size);
    display: block;
    margin: 0 auto;
    padding: 2px;
    border-radius: 50%;
    background: conic-gradient(from 170deg, #ffffff, var(--primary), #333333, var(--primary), #ffffff);
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
    transition: transform .22s ease, box-shadow .22s ease;
}
.story-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #121212;
    border-radius: 50%;
}
.story-bubble:hover .story-ring {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.38), 0 0 0 2px rgba(var(--primary-rgb), .22);
}

.hero-stage {
    position: relative;
    height: 100svh;
    min-height: var(--hero-min-height);
    overflow: hidden;
    isolation: isolate;
    background: #121212;
}
.hero-media-track, .hero-media-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-media-slide {
    object-fit: cover;
    opacity: 0;
    animation: heroFade var(--slide-duration, 18s) infinite;
}
.hero-image-slide {
    background: #080808;
    transform: none;
}
.hero-image-slide::before,
.hero-image-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
}
.hero-image-slide::before {
    background-size: cover;
    filter: blur(18px) brightness(.72) saturate(1.32);
    transform: scale(1.06);
}
.hero-image-slide::after {
    background-size: cover;
    filter: brightness(.98) saturate(1.26) contrast(1.06);
    transform: scale(var(--hero-image-zoom));
    animation: heroImageMotion calc(var(--slide-duration, 18s) * var(--motion-speed)) ease-in-out infinite;
    animation-delay: inherit;
}
.hero-media-track .hero-media-slide:first-child { opacity: 1; }
.hero-media-slide:is(video, iframe) { filter: brightness(.98) saturate(1.18) contrast(1.06); }
.hero-youtube { pointer-events: none; border: 0; background: #080808; }
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0,0,0,var(--hero-overlay-dark)), rgba(0,0,0,.42) 46%, rgba(0,0,0,.12)),
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.44) 54%, rgba(0,0,0,.78)),
        linear-gradient(135deg, rgba(var(--primary-rgb), .18), transparent 34%);
}
.hero-inner {
    position: relative;
    z-index: 4;
    min-height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: var(--hero-align-y);
    justify-items: var(--hero-align-x);
    padding: 96px 0 var(--hero-bottom-padding);
    text-align: var(--hero-text-align);
}
.hero-copy-track {
    display: grid;
    max-width: 960px;
    min-height: clamp(280px, 46svh, 420px);
}
.hero-copy {
    grid-area: 1 / 1;
    max-width: 960px;
    opacity: 0;
    animation: heroCopyFade var(--slide-duration, 18s) infinite;
}
.hero-copy-track .hero-copy:first-child { opacity: 1; }
.hero-item { margin-block: 0; }
.hero-item + .hero-item { margin-top: 18px; }
.hero-item-buttons { margin-top: 24px; }
.hero h1 {
    max-width: min(960px, 100%);
    margin: 14px 0 18px;
    font-size: clamp(42px, min(7.2vw, 9svh), 88px);
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 14px 50px rgba(0,0,0,.56);
    text-wrap: balance;
}
.hero h1 span {
    color: var(--primary);
    text-shadow: 0 10px 34px rgba(var(--primary-rgb), .35);
}
.hero p {
    max-width: var(--hero-text-width);
    margin: 0 0 24px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hero-inline-stats {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(12,12,12,.56);
    backdrop-filter: blur(12px);
}
.hero-inline-stats div {
    min-height: 74px;
    display: grid;
    align-content: center;
    padding: 15px 17px;
    border-right: 1px solid rgba(255,255,255,.10);
}
.hero-inline-stats div:last-child { border-right: 0; }
.hero-inline-stats b {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1;
}
.hero-inline-stats span {
    margin-top: 6px;
    color: rgba(255,255,255,.54);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 950;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    color: #ffffff;
    border-color: rgba(255,255,255,.24);
    box-shadow: 0 18px 44px rgba(var(--primary-rgb), .28);
}
.btn-dark { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(14px); }
.hero .btn-dark { display: none; }
.btn:hover { transform: translateY(-2px); }
.hero-card {
    display: none;
}
.hero-card span { color: var(--primary); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: 1.2px; }
.hero-card strong { display: block; margin: 10px 0; font-size: 22px; line-height: 1.15; }
.hero-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.hero-bottom,
.legacy-hero-bottom {
    display: none;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 5;
    width: min(var(--container-width), calc(100% - 40px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.14);
    border-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    background: rgba(12,12,12,.70);
    backdrop-filter: blur(16px);
}
.hero-bottom div { padding: 18px; border-right: 1px solid rgba(255,255,255,.10); }
.hero-bottom div:last-child { border-right: 0; }
.hero-bottom b { display: block; margin-bottom: 5px; color: #fff; font-size: 20px; }
.hero-bottom span { display: none; }

.visual-showcase {
    --showcase-accent: var(--primary);
    --parallax-y: 0px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #121212, #080808 54%, #121212);
}
.visual-intro {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    gap: var(--showcase-gap);
    align-items: center;
    padding: 76px 0 58px;
}
.visual-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.visual-stack img {
    width: 100%;
    aspect-ratio: var(--showcase-ratio);
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    filter: brightness(.90) saturate(1.22) contrast(1.04);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
    animation: visualDrift calc(8s * var(--motion-speed)) ease-in-out infinite;
}
.visual-stack img:nth-child(2) {
    margin-top: 46px;
    animation-delay: -3s;
}
.visual-copy h2,
.compare-grid h2 {
    max-width: 760px;
    margin: 16px 0 12px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: .94;
    text-transform: uppercase;
}
.visual-copy p,
.compare-grid p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-weight: 750;
}
.visual-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 24px;
}
.visual-stats div {
    min-height: 92px;
    display: grid;
    align-content: center;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
}
.visual-stats strong {
    color: var(--showcase-accent);
    font-size: 34px;
    line-height: .95;
}
.visual-stats span {
    margin-top: 6px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.vehicle-stage {
    position: relative;
    padding: var(--vehicle-stage-padding) 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.72)),
        var(--vehicle-bg) center calc(50% + var(--parallax-y)) / 112% auto no-repeat;
}
.vehicle-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .18), transparent 42%),
        linear-gradient(0deg, rgba(0,0,0,.22), transparent 55%);
}
.vehicle-stage::after {
    content: "";
    position: absolute;
    inset: auto -10% 18% -10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), var(--showcase-accent), transparent);
    opacity: .56;
    transform: translateX(-25%);
    animation: stageScan 5.6s ease-in-out infinite;
}
.vehicle-stage .container { position: relative; z-index: 1; }
.vehicle-card {
    display: grid;
    gap: 16px;
    justify-items: center;
}
.vehicle-card span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(var(--primary-rgb), .45);
    border-radius: 8px;
    background: rgba(var(--primary-rgb), .12);
    color: var(--showcase-accent);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.vehicle-card img {
    width: min(100%, var(--vehicle-image-width));
    filter: drop-shadow(0 34px 58px rgba(0,0,0,.58)) saturate(1.18);
    animation: vehicleFloat calc(6s * var(--motion-speed)) ease-in-out infinite;
}
.compare-grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 76px 0 84px;
}
.compare-slider {
    --compare-pos: 50%;
    position: relative;
    min-height: var(--compare-height);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: #111;
    box-shadow: 0 28px 80px rgba(0,0,0,.38);
}
.compare-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.92) saturate(1.20) contrast(1.04);
}
.compare-after { clip-path: inset(0 0 0 var(--compare-pos)); }
.compare-slider input {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    cursor: ew-resize;
}
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-pos);
    z-index: 2;
    width: 3px;
    transform: translateX(-50%);
    background: var(--showcase-accent);
    box-shadow: 0 0 26px rgba(var(--primary-rgb), .72);
}
.compare-handle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--showcase-accent);
    box-shadow: 0 18px 36px rgba(0,0,0,.38);
    animation: handlePulse 2.8s ease-in-out infinite;
}

@keyframes visualDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -8px, 0) scale(1.015); }
}

@keyframes vehicleFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes stageScan {
    0%, 100% { transform: translateX(-28%); opacity: .22; }
    50% { transform: translateX(28%); opacity: .68; }
}

@keyframes handlePulse {
    0%, 100% { box-shadow: 0 18px 36px rgba(0,0,0,.38), 0 0 0 rgba(255,255,255,0); }
    50% { box-shadow: 0 18px 36px rgba(0,0,0,.38), 0 0 0 8px rgba(255,255,255,.10); }
}

.about-band, .section { padding: var(--section-padding) 0; background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
.about-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}
.about-media img:nth-child(2) { margin-top: 58px; }
.about-copy h2, .section-head h2, .cta h2 {
    margin: 16px 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .98;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 12px 40px rgba(0,0,0,.34);
}
.about-copy p, .section-head p, .cta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}
.section-head p { display: none; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 26px;
}
.about-stats div {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
}
.about-stats strong { display: block; color: var(--primary); font-size: 24px; }
.about-stats span { color: #dcdcdc; font-size: 12px; font-weight: 850; text-transform: uppercase; }

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
}
.services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.service {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-solid);
}
.service-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}
.service img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.78) saturate(1.24) contrast(1.04);
    transition: transform .45s ease;
}
.service:hover img { transform: scale(1.06); }
.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.70)),
        linear-gradient(135deg, rgba(var(--primary-rgb), .22), transparent 42%);
}
.service-body {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
}
.icon {
    width: 40px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 950;
}
.service h3 { margin: 0 0 10px; font-size: 24px; }
.service p { display: none; }

.service-detail-page {
    background: #090909;
}
.service-detail-hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 160px 0 84px;
}
.service-detail-media {
    position: absolute;
    inset: 0;
}
.service-detail-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.42), rgba(0,0,0,.18)),
        linear-gradient(180deg, rgba(0,0,0,.18), #090909);
}
.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.82) saturate(1.18) contrast(1.04);
}
.service-detail-copy {
    position: relative;
    z-index: 1;
}
.service-detail-copy h1 {
    max-width: 820px;
    margin: 12px 0 18px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: .95;
}
.service-detail-copy p {
    max-width: 680px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.65;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: 28px;
    align-items: start;
}
.service-detail-grid article,
.service-detail-grid aside {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
    padding: 28px;
}
.service-detail-grid h2 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 4vw, 52px);
}
.service-detail-grid p,
.service-detail-grid li {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}
.service-detail-grid ul {
    margin: 16px 0 0;
    padding-left: 20px;
}

.reels-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .18), transparent 34%),
        linear-gradient(225deg, rgba(255,255,255,.07), transparent 30%),
        linear-gradient(180deg, #090909, #151515);
}
.reels-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}
.reels-section .container { position: relative; z-index: 1; }
.reels-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, var(--reel-card-fr)));
    gap: 18px;
}
.reel-card {
    position: relative;
    min-height: var(--reel-card-height);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: #080808;
    box-shadow: 0 26px 80px rgba(0,0,0,.44);
    cursor: pointer;
    transform: translateY(0);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.reel-card:nth-child(even) { margin-top: 34px; }
.reel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), .62);
    box-shadow: 0 32px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(var(--primary-rgb), .20);
}
.reel-card img, .reel-card video, .reel-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    filter: brightness(.86) saturate(1.22) contrast(1.05);
    transition: transform .45s ease, filter .45s ease;
}
.reel-card:hover img, .reel-card:hover video, .reel-card:hover iframe {
    transform: scale(1.05);
    filter: brightness(.96) saturate(1.30) contrast(1.06);
}
.reel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 40%, rgba(0,0,0,.90)),
        linear-gradient(90deg, rgba(var(--primary-rgb), .26), transparent 42%);
}
.reel-topline {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 66px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.reel-topline span,
.reel-topline small {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}
.reel-topline span { background: rgba(var(--primary-rgb), .92); border-color: rgba(var(--primary-rgb), .92); }
.reel-topline small { display: none; }
.reel-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
}
.reel-play {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 0;
    font-weight: 950;
    backdrop-filter: blur(12px);
}
.reel-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
}
.reel-overlay { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; }
.reel-overlay b { display: block; margin-bottom: 7px; font-size: 24px; line-height: 1.05; text-transform: uppercase; }
.reel-overlay span { display: none; }
.mobile-swipe-note { display: none; margin-top: 12px; color: var(--muted); text-align: center; font-size: 12px; font-weight: 850; }

.showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.work {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111;
}
.work.big { grid-column: span 2; grid-row: span 2; }
.work img, .work video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.82) saturate(1.22) contrast(1.05);
    transition: transform .45s ease;
}
.work:hover img, .work:hover video { transform: scale(1.06); }
.work::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.64)),
        linear-gradient(135deg, rgba(var(--primary-rgb), .18), transparent 46%);
}
.work-info { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; }
.work-info b { display: block; margin-bottom: 5px; font-size: 21px; }
.work-info small { display: none; }

.contact-section { background: #0e0e0e; }
.cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    padding: 42px;
    border: 1px solid rgba(var(--primary-rgb), .40);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.46), rgba(0,0,0,.78)),
        url("/assets/autodetail/images/background/2.webp") center / cover;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.contact-pill {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-weight: 850;
}
.custom-page-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .12), transparent 34%),
        var(--bg);
}
.custom-page-section[style*="--custom-bg"] {
    background:
        linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.78)),
        var(--custom-bg) center / cover no-repeat;
}
.custom-section-inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}
.custom-section-copy h2 {
    margin: 16px 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
    text-transform: uppercase;
}
.custom-section-copy p,
.custom-section-html {
    color: var(--muted);
    line-height: 1.7;
}
.custom-section-copy .btn {
    margin-top: 22px;
}
.custom-page-section-hero .custom-section-inner,
.custom-page-section-cta .custom-section-inner {
    min-height: 430px;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}
.custom-page-section-cards .custom-section-html,
.custom-page-section-gallery .custom-section-html {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.custom-section-html :is(img, video, iframe) {
    width: 100%;
    border-radius: var(--radius);
}
.footer { padding: 32px 0; background: #121212; border-top: 1px solid rgba(255,255,255,.10); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 15px; color: var(--muted); font-size: 13px; }
.footer-inner strong { color: #fff; letter-spacing: 1px; }

.google-reviews-section {
    background:
        radial-gradient(circle at 18% 0%, rgba(233, 2, 30, .14), transparent 32%),
        linear-gradient(180deg, #0a0a0b 0%, #111 100%);
    border-top: 1px solid rgba(255,255,255,.08);
}
.google-reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.google-reviews-head h2 {
    margin: 8px 0 0;
    max-width: 720px;
    font-size: clamp(34px, 5vw, 72px);
    line-height: .98;
}
.google-rating-card {
    min-width: 190px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
}
.google-rating-card strong {
    font-size: 36px;
    line-height: 1;
}
.google-rating-card small {
    grid-column: 2;
    color: var(--muted);
    font-weight: 800;
}
.google-mark,
.google-mini {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(from 30deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
    color: #fff;
    font-weight: 950;
}
.google-reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.google-review-card {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    box-shadow: 0 20px 60px rgba(0,0,0,.24);
}
.google-review-top {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
}
.google-avatar {
    width: 46px;
    height: 46px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #202124;
    color: #fff;
    font-weight: 950;
}
.google-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.google-review-top b {
    display: block;
    color: #fff;
    font-size: 15px;
}
.google-review-top small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.google-mini {
    width: 24px;
    height: 24px;
    font-size: 12px;
}
.google-stars {
    color: rgba(255,255,255,.22);
    letter-spacing: 2px;
}
.google-stars .filled {
    color: #fbbc05;
}
.google-review-card p {
    margin: 0;
    color: rgba(255,255,255,.76);
    line-height: 1.7;
}
.google-review-link {
    margin-top: auto;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.floating-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 250;
    display: flex;
    gap: 8px;
}
.floating-contact a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(8,8,8,.82);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 950;
}
.floating-contact a:first-child { background: var(--primary); color: #ffffff; }

.story-modal, .reels-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background: rgba(0,0,0,.94);
    padding: 18px;
}
.story-modal.active { display: flex; align-items: center; justify-content: center; }
.story-phone {
    position: relative;
    width: min(430px, 100%);
    height: min(780px, calc(100vh - 36px));
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: #070707;
}
.story-progress { position: absolute; top: 12px; left: 12px; right: 12px; z-index: 8; display: flex; gap: 5px; }
.progress-item { flex: 1; height: 3px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.28); }
.progress-item span { display: block; width: 0; height: 100%; background: #fff; }
.story-head { position: absolute; top: 26px; left: 14px; right: 58px; z-index: 8; display: flex; align-items: center; gap: 10px; }
.story-head img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.72); }
.story-head b { font-size: 13px; }
.story-head small { display: block; margin-top: 2px; color: #ddd; font-size: 11px; }
.story-close, .reels-close, .reels-nav {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(12,12,12,.68);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(12px);
}
.story-close {
    position: absolute;
    top: 25px;
    right: 14px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 25px;
}
.story-media, .story-media img, .story-media video { width: 100%; height: 100%; object-fit: cover; background: #080808; }
.story-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    z-index: 8;
    padding: 16px;
    border-radius: 8px;
    background: rgba(0,0,0,.48);
}
.story-caption b { display: block; margin-bottom: 7px; font-size: 24px; }
.story-caption span { color: #f0f0f0; font-size: 14px; line-height: 1.48; }
.story-tap-left, .story-tap-right { position: absolute; top: 0; bottom: 0; z-index: 7; width: 50%; }
.story-tap-left { left: 0; }
.story-tap-right { right: 0; }

.reels-modal {
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), .17), transparent 36%),
        linear-gradient(180deg, rgba(0,0,0,.97), rgba(0,0,0,.94));
}
.reels-modal.active { display: grid; place-items: center; }
.reels-viewer {
    width: min(1180px, 100%);
    height: min(820px, calc(100vh - 36px));
    display: grid;
    grid-template-columns: minmax(340px, 560px) minmax(320px, 420px);
    gap: 16px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(10,10,10,.72);
    box-shadow: 0 36px 120px rgba(0,0,0,.68);
    backdrop-filter: blur(18px);
}
.reels-stage, .reels-panel {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: #090909;
}
.reels-stage {
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 24px 80px rgba(0,0,0,.42);
}
.reels-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,.10), transparent 42%, rgba(0,0,0,.28)),
        linear-gradient(90deg, rgba(var(--primary-rgb), .18), transparent 42%);
}
.reels-stage img, .reels-stage video, .reels-stage iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.reels-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        #101010;
}
.reels-panel-head {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.reels-panel h3 { margin: 12px 0 10px; font-size: 32px; line-height: .98; text-transform: uppercase; }
.reels-panel p { margin: 0; color: var(--muted); line-height: 1.55; }
.reels-like {
    min-height: 52px;
    border: 1px solid rgba(var(--primary-rgb), .40);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #ff243d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(var(--primary-rgb), .24);
}
.reels-comments-wrap {
    min-height: 0;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(0,0,0,.24);
}
.reels-comments-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.reels-comments-title span { font-weight: 950; }
.reels-comments-title small { color: var(--muted); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.reels-comments { display: grid; gap: 10px; overflow: auto; max-height: 210px; padding-right: 4px; }
.reels-comments::-webkit-scrollbar { width: 6px; }
.reels-comments::-webkit-scrollbar-thumb { background: rgba(255,255,255,.28); border-radius: 99px; }
.reels-comment {
    position: relative;
    padding: 13px 13px 13px 42px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.055);
}
.reels-comment::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffffff);
}
.reels-comment b { display: block; margin-bottom: 5px; font-size: 13px; text-transform: uppercase; }
.reels-comment span { color: #e4e4e4; font-size: 13px; line-height: 1.45; }
.reels-comment-form {
    display: grid;
    gap: 9px;
    margin-top: auto;
    padding-top: 13px;
    border-top: 1px solid rgba(255,255,255,.10);
}
.reels-comment-form strong { font-size: 14px; text-transform: uppercase; letter-spacing: .6px; }
input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 13px;
    background: rgba(255,255,255,.055);
    color: #fff;
    outline: none;
}
input:focus, textarea:focus { border-color: rgba(var(--primary-rgb), .55); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .14); }
textarea { resize: vertical; }
.reels-comment-form small { color: var(--muted); font-size: 12px; font-weight: 800; }
.reels-close { position: fixed; top: 16px; right: 16px; z-index: 1002; width: 44px; height: 44px; border-radius: 50%; font-size: 0; }
.reels-close::before, .reels-close::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    top: 21px;
    height: 2px;
    background: #fff;
}
.reels-close::before { transform: rotate(45deg); }
.reels-close::after { transform: rotate(-45deg); }
.reels-nav { position: fixed; right: 16px; z-index: 1002; width: 52px; height: 44px; border-radius: 999px; font-size: 11px; font-weight: 950; text-transform: uppercase; }
.reels-nav.up { top: 72px; }
.reels-nav.down { top: 124px; }

@keyframes heroFade {
    0%, 34% { opacity: 1; }
    43%, 91% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes heroImageMotion {
    0% { transform: scale(1.02) translate3d(0, 0, 0); }
    42% { transform: scale(1.07) translate3d(-1.4%, .8%, 0); }
    100% { transform: scale(1.02) translate3d(0, 0, 0); }
}

@keyframes heroCopyFade {
    0%, 31% { opacity: 1; transform: translateY(0); }
    41%, 91% { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .menu { display: none; }
    .mobile-toggle { display: inline-flex; }
    .hero-inner { grid-template-columns: 1fr; align-items: end; padding-top: 95px; }
    .visual-intro,
    .compare-grid { grid-template-columns: 1fr; }
    .visual-stats { grid-template-columns: repeat(2, 1fr); }
    .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .reels-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .google-reviews-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .container { width: min(100% - 24px, 1180px); }
    .topbar { display: none; }
    .nav { height: 72px; }
    .site-header { background: rgba(18,18,18,.94); }
    .brand-logo { height: 42px; }
    .brand-text strong { font-size: 15px; }
    .brand-text span { font-size: 10px; letter-spacing: .8px; }
    .nav-icon, .offer-btn { display: none; }
    .mobile-panel { top: 80px; }
    .story-strip { top: 72px; padding: 8px 0 7px; }
    .story-row { display: block; }
    .story-label { display: none; }
    .story-scroll { gap: 10px; }
    .story-bubble { flex-basis: 58px; }
    .story-ring { width: 52px; height: 52px; }
    .hero-stage { height: 100svh; min-height: 620px; }
    .hero-youtube { display: none; }
    .hero-inner { min-height: 100%; padding: 72px 0 122px; gap: 18px; }
    .hero-copy-track { min-height: 300px; }
    .hero h1 { font-size: clamp(34px, 11vw, 54px); line-height: .96; }
    .hero p { max-width: 92%; font-size: 14px; line-height: 1.5; }
    .actions { display: grid; grid-template-columns: 1fr; }
    .hero-inline-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-inline-stats div { min-height: 62px; padding: 12px; }
    .hero-inline-stats b { font-size: 16px; }
    .hero-bottom { display: none; grid-template-columns: repeat(2, 1fr); width: calc(100% - 24px); }
    .hero-bottom div { padding: 12px; }
    .hero-bottom b { font-size: 16px; }
    .service-detail-hero { min-height: 640px; padding: 128px 0 56px; }
    .service-detail-copy p { max-width: 100%; font-size: 15px; }
    .service-detail-grid article,
    .service-detail-grid aside { padding: 20px; }
    .visual-intro { padding: 54px 0 42px; gap: 26px; }
    .visual-stack { gap: 10px; }
    .visual-stack img:nth-child(2) { margin-top: 26px; }
    .visual-stats { grid-template-columns: repeat(2, 1fr); }
    .vehicle-stage { padding: 44px 0; background-size: cover; }
    .vehicle-card img { width: 112%; max-width: none; }
    .compare-grid { padding: 54px 0 58px; gap: 24px; }
    .compare-slider { min-height: 310px; }
    .about-band, .section { padding: 58px 0; }
    .about-grid, .section-head, .cta { grid-template-columns: 1fr; gap: 20px; }
    .about-media { gap: 10px; }
    .about-media img:nth-child(2) { margin-top: 32px; }
    .about-copy h2, .section-head h2, .cta h2 { font-size: 34px; }
    .about-stats { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr; }
    .service { min-height: 300px; }
    .reels-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    .reel-card { flex: 0 0 78%; min-height: 430px; scroll-snap-align: start; }
    .reel-card:nth-child(even) { margin-top: 0; }
    .mobile-swipe-note { display: block; }
    .google-reviews-head {
        align-items: stretch;
        flex-direction: column;
    }
    .google-rating-card {
        min-width: 0;
    }
    .google-reviews-track {
        grid-template-columns: 1fr;
    }
    .showcase { display: grid; grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .work.big { grid-column: auto; grid-row: span 1; }
    .cta { padding: 26px; }
    .custom-section-inner,
    .custom-page-section-cards .custom-section-html,
    .custom-page-section-gallery .custom-section-html {
        grid-template-columns: 1fr;
    }
    .contact-actions { display: grid; }
    .footer-inner { display: grid; text-align: center; }
    .floating-contact { left: 12px; right: 12px; bottom: 10px; display: grid; grid-template-columns: 1fr 1fr; }
    .reels-modal { padding: 10px; }
    .reels-viewer {
        height: calc(100vh - 20px);
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
    }
    .reels-stage { min-height: 54vh; border-radius: 14px; }
    .reels-panel { max-height: 39vh; overflow: auto; padding: 14px; border-radius: 14px; }
    .reels-panel h3 { font-size: 25px; }
    .reels-comments-wrap { padding: 11px; }
    .reels-comments { max-height: 150px; }
    .reels-nav { display: none; }
    .story-modal { padding: 10px; }
}

@media (max-width: 390px) {
    .hero-bottom span { font-size: 10px; }
    .reel-card { flex-basis: 86%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
