:root {
    --black: #0b0b0d;
    --gold: #ffc400;
    --gold-deep: #b88400;
    --yellow: #ffc400;
    --yellow-soft: #ffe071;
    --white: #ffffff;
    --dark-gray: #202125;
    --light-gray: #f4f4f2;
    --text: #161719;
    --muted: #60636b;
    --line: rgba(255, 255, 255, 0.16);
    --line-dark: rgba(17, 17, 17, 0.12);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.34);
    --radius: 8px;
    --container: 1180px;
    --font-sans: "Aptos", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Arial Black", "Aptos Display", "Segoe UI Black", Impact, var(--font-sans);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 196, 0, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f4 58%, #ffffff 100%);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

img,
iframe {
    max-width: 100%;
    display: block;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 2000;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(100% - 36px, var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 78px 0;
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 196, 0, 0.1), transparent 30%),
        linear-gradient(135deg, #08080a, #151518 54%, #1f1a08);
}

.section-soft {
    background:
        radial-gradient(circle at 8% 16%, rgba(255, 196, 0, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f7f4, #eeeeea);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.hero h1,
.location h2 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.section-heading h2 {
    max-width: 900px;
    font-size: clamp(2rem, 6.4vw, 4.35rem);
    text-wrap: balance;
}

.section-heading p {
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.14rem);
    max-width: 680px;
}

.section-dark .section-heading p,
.section-dark .section-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.section-kicker,
.eyebrow {
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.section-kicker::before,
.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    display: inline-block;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yellow), var(--gold-deep));
}

.hero .eyebrow {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-shadow: 0 0 18px rgba(255, 196, 0, 0.28);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
    transform: translateX(-130%);
    transition: transform 520ms ease;
}

.btn:hover::after {
    transform: translateX(130%);
}

.btn-primary {
    color: var(--black);
    background: linear-gradient(135deg, #ffb800 0%, var(--yellow-soft) 44%, #ff9d00 100%);
    box-shadow: 0 18px 42px rgba(255, 196, 0, 0.32), inset 0 -2px 0 rgba(0, 0, 0, 0.16);
    animation: buttonGlow 2600ms ease-in-out infinite;
}

.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 196, 0, 0.42);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
}

.btn-small {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.78rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 10, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand img {
    width: 124px;
    filter: drop-shadow(0 8px 20px rgba(255, 196, 0, 0.1));
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    color: var(--white);
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 180ms ease;
}

.main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 850;
    color: rgba(255, 255, 255, 0.88);
    transition: color 180ms ease, background 180ms ease;
}

.main-nav a:not(.btn):hover {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    min-height: 700px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.46) 72%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.72) 100%),
        url("../imagens/banner-hero.png"),
        linear-gradient(120deg, #050505 0%, #111111 48%, #1e1a08 100%);
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 48%, rgba(255, 196, 0, 0.14), transparent 26%),
        linear-gradient(116deg, transparent 0 46%, rgba(255, 196, 0, 0.06) 46% 47%, transparent 47% 58%, rgba(255, 196, 0, 0.1) 58% 59%, transparent 59%);
    pointer-events: none;
    animation: lightSweep 8400ms ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -18% -12%;
    background:
        radial-gradient(circle at 20% 72%, rgba(255, 196, 0, 0.16), transparent 18%),
        radial-gradient(circle at 78% 24%, rgba(255, 196, 0, 0.16), transparent 22%),
        repeating-linear-gradient(118deg, transparent 0 52px, rgba(255, 196, 0, 0.045) 53px 55px, transparent 56px 116px);
    mix-blend-mode: screen;
    opacity: 0.82;
    pointer-events: none;
    animation: futuristicDrift 11500ms linear infinite;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
    padding: 84px 0 62px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 18px 0;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.45rem, 7.6vw, 5.05rem);
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
}

.hero-text {
    max-width: 560px;
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.02rem, 2.2vw, 1.2rem);
    line-height: 1.68;
}

.date-chips {
    display: grid;
    gap: 12px;
    margin: 24px 0 26px;
    max-width: 520px;
}

.date-chips span {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 12px;
    padding: 0 0 0 18px;
    color: var(--white);
    text-transform: uppercase;
}

.date-chips span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.24em;
    width: 4px;
    height: 2.65em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--yellow), var(--gold-deep));
    box-shadow: 0 0 22px rgba(255, 196, 0, 0.45);
}

.date-chips span::after {
    content: "";
    height: 1px;
    align-self: center;
    background: linear-gradient(90deg, rgba(255, 196, 0, 0.52), transparent);
}

.date-chips strong {
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 3.15rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(255, 196, 0, 0.26);
}

.date-chips small {
    grid-column: 1;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.hero-actions {
    display: grid;
    gap: 12px;
}

.hero-vehicle {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: min(100%, 680px);
}

.hero-vehicle::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 5%;
    height: 24%;
    background: radial-gradient(ellipse, rgba(255, 196, 0, 0.24), rgba(255, 196, 0, 0.14) 44%, transparent 72%);
    filter: blur(16px);
    z-index: -1;
    animation: engineGlow 2200ms ease-in-out infinite;
}

.hero-vehicle img {
    width: 100%;
    transform: translateZ(0);
    filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.56));
    animation: vehicleFloat 5200ms ease-in-out infinite;
}

.countdown-section {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 196, 0, 0.12), transparent 32%),
        linear-gradient(135deg, #08080a, #17150d 54%, #282008);
    border-top: 1px solid rgba(255, 196, 0, 0.22);
    border-bottom: 1px solid rgba(255, 196, 0, 0.28);
    padding: 34px 0;
}

.countdown-wrap {
    display: grid;
    gap: 20px;
}

.countdown-wrap h2 {
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-display);
    line-height: 0.98;
    font-size: clamp(1.6rem, 5.5vw, 3.2rem);
}

.countdown-subtitle {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.countdown div {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 10px 4px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.countdown strong {
    color: var(--yellow);
    font-size: clamp(1.7rem, 8vw, 3.2rem);
    line-height: 1;
}

.countdown span {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.countdown .pulse strong {
    animation: pulse 450ms ease;
}

.stores-grid,
.sponsor-grid,
.faq-grid {
    display: grid;
    gap: 16px;
}

.store-card,
.sponsor-card,
.faq-item {
    border-radius: var(--radius);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 17, 17, 0.09);
    box-shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(10px);
}

.store-card:hover,
.sponsor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 196, 0, 0.55);
    box-shadow: var(--shadow);
}

.store-card h3 {
    margin: 0 0 8px;
    line-height: 1.15;
    text-transform: uppercase;
}

.sponsors {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 196, 0, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #f6f6f1);
}

.sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
}

.sponsor-card {
    min-height: 150px;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 242, 0.92));
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

.sponsor-card img {
    width: 100%;
    max-height: 116px;
    object-fit: contain;
}

.sponsor-card-rec img {
    max-height: 152px;
    transform: scale(1.18);
}

.stores-grid {
    grid-template-columns: repeat(2, 1fr);
}

.store-card {
    min-height: 178px;
    padding: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 246, 242, 0.9));
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
    text-align: center;
}

.store-card img {
    width: 100%;
    aspect-ratio: 1.73;
    object-fit: contain;
    border-radius: 6px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 196, 0, 0.14), transparent 34%),
        var(--light-gray);
}

.store-card h3 {
    margin: 12px 0 4px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #202124;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 20px;
    border: 0;
    color: #1b1c20;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 244, 0.92));
    text-align: left;
    font-weight: 900;
    line-height: 1.2;
}

.faq-item button span {
    width: 22px;
    height: 22px;
    position: relative;
    flex: 0 0 22px;
}

.faq-item button span::before,
.faq-item button span::after {
    content: "";
    position: absolute;
    inset: 10px 2px auto;
    height: 2px;
    background: var(--gold);
}

.faq-item button span::after {
    transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 22px;
    color: var(--muted);
}

.location {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 196, 0, 0.18), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(255, 196, 0, 0.18), transparent 28%),
        linear-gradient(135deg, #070709, #121216 52%, #211b08);
}

.location::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(255, 196, 0, 0.09) 43% 44%, transparent 45% 57%, rgba(255, 196, 0, 0.12) 58% 59%, transparent 60%),
        radial-gradient(circle at 70% 28%, rgba(255, 196, 0, 0.13), transparent 24%);
    pointer-events: none;
    opacity: 0.78;
    animation: futuristicDrift 14000ms linear infinite;
}

.location-grid {
    position: relative;
    z-index: 1;
}

.location-grid {
    display: grid;
    gap: 28px;
}

.location-copy {
    max-width: 640px;
}

.location h2 {
    max-width: 620px;
    font-size: clamp(2rem, 6.2vw, 4.15rem);
    line-height: 1;
    text-wrap: balance;
}

address {
    display: grid;
    gap: 4px;
    margin: 20px 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    font-style: normal;
    color: rgba(255, 255, 255, 0.84);
}

address strong {
    color: var(--yellow);
    font-size: 1.08rem;
}

.event-list {
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.event-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 750;
}

.event-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 9px;
    height: 9px;
    background: var(--yellow);
    transform: rotate(45deg);
}

.map-frame {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255, 196, 0, 0.24);
    border-radius: var(--radius);
    background: var(--dark-gray);
    box-shadow: var(--shadow-strong);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.site-footer {
    padding: 62px 0 116px;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(180deg, #09090a, #050505);
    border-top: 1px solid rgba(255, 196, 0, 0.18);
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.site-footer img {
    width: 144px;
    margin-bottom: 12px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 12px;
    color: var(--white);
    text-transform: uppercase;
}

.site-footer nav {
    display: grid;
    gap: 8px;
}

.site-footer a:hover {
    color: var(--yellow);
}

.site-footer a {
    width: max-content;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
    transform: translateX(3px);
}

.legal {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.86rem;
}

.back-to-top {
    position: fixed;
    right: 16px;
    z-index: 980;
    border: 0;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.back-to-top {
    bottom: 96px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: linear-gradient(135deg, var(--yellow), #ff9900);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 970;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(8, 8, 10, 0.94);
    border-top: 1px solid rgba(255, 196, 0, 0.22);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease;
}

.mobile-action-bar .btn {
    min-height: 46px;
    padding-inline: 8px;
    font-size: 0.76rem;
}

.mobile-action-bar.is-hidden {
    transform: translateY(110%);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes lightSweep {
    0% {
        opacity: 0.58;
        transform: translate3d(-1.5%, 0, 0) scale(1);
    }
    100% {
        opacity: 0.95;
        transform: translate3d(1.5%, -1%, 0) scale(1.03);
    }
}

@keyframes futuristicDrift {
    0% {
        transform: translate3d(-4%, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(4%, -2%, 0) rotate(0.001deg);
    }
}

@keyframes engineGlow {
    0%,
    100% {
        opacity: 0.62;
        transform: scaleX(0.96);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.06);
    }
}

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

@keyframes buttonGlow {
    0%,
    100% {
        box-shadow: 0 18px 42px rgba(255, 196, 0, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.16);
    }
    50% {
        box-shadow: 0 22px 54px rgba(255, 196, 0, 0.46), 0 0 22px rgba(255, 196, 0, 0.18), inset 0 -2px 0 rgba(0, 0, 0, 0.16);
    }
}

@media (min-width: 576px) {
    .hero-actions {
        grid-template-columns: repeat(2, max-content);
    }

    .date-chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 640px;
        gap: 18px;
    }

    .date-chips span::after {
        display: none;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 92px 0;
    }

    .countdown-wrap,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .location-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        align-items: center;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsor-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .site-footer {
        padding-bottom: 56px;
    }

    .back-to-top {
        bottom: 24px;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-nav a {
        font-size: 0.86rem;
    }

    .hero-actions {
        display: none;
    }

    .mobile-action-bar {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
        align-items: center;
        gap: 18px;
    }

    .hero h1 {
        max-width: 700px;
        font-size: clamp(3.15rem, 4.8vw, 4.95rem);
    }

    .location h2 {
        max-width: 560px;
        font-size: clamp(3rem, 4.45vw, 4.45rem);
    }

    .hero-vehicle {
        width: min(55vw, 760px);
        margin-left: -54px;
        margin-top: 22px;
    }

    .stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (min-width: 1200px) {
    .hero {
        background-size: cover, cover, 100% auto, cover;
    }

    .hero-vehicle {
        width: min(52vw, 820px);
        margin-left: -82px;
    }

    .stores-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 575px) {
    .btn {
        width: 100%;
    }

    .hero {
        min-height: 660px;
        background-size: cover, cover, auto 100%, cover;
        background-position: center, center, 58% center, center;
    }

    .hero-grid {
        padding-top: 58px;
        padding-bottom: 44px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .hero-vehicle {
        width: min(112%, 520px);
        margin-top: -4px;
        margin-left: -6%;
    }

    .countdown {
        gap: 6px;
    }

    .countdown div {
        min-height: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
