:root {
    --ink: #ffffff;
    --ink-soft: rgba(255, 255, 255, 0.78);
    --muted: rgba(255, 255, 255, 0.62);
    --navy: #06182f;
    --navy-2: #081f3f;
    --blue: #0788c9;
    --red: #ef1d27;
    --yellow: #ffd21f;
    --black: #05070b;
    --panel: #0b1525;
    --line: rgba(255, 255, 255, 0.14);
    --radius: 8px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --content-max: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--black);
    line-height: 1.55;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: 100%;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    touch-action: manipulation;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    padding: 14px 28px;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: blur(0);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease, min-height 220ms ease, transform 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
    min-height: 66px;
    background: rgba(5, 7, 11, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 178px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
    transition: width 220ms ease, height 220ms ease, filter 220ms ease, transform 220ms ease;
}

.site-header.scrolled .brand-logo,
.site-header.menu-active .brand-logo {
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.brand:hover .brand-logo {
    transform: rotate(-2deg) scale(1.04);
}

.brand-copy {
    display: grid;
    line-height: 1.05;
    text-transform: uppercase;
}

.brand-copy strong {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
}

.brand-copy span {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--yellow);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.site-nav a,
.language-switcher summary {
    position: relative;
    padding: 10px 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a::after,
.language-switcher summary::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-switcher summary:hover,
.language-switcher summary:focus-visible {
    color: var(--yellow);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.language-switcher summary:hover::after,
.language-switcher summary:focus-visible::after {
    transform: scaleX(1);
}

.language-switcher {
    position: relative;
}

.language-switcher summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    list-style: none;
    cursor: pointer;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher summary svg {
    width: 16px;
    height: 16px;
}

.language-switcher div {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 60;
    display: grid;
    min-width: 112px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 7, 11, 0.96);
    box-shadow: var(--shadow);
}

.language-switcher div a {
    padding: 9px 12px;
    border-radius: 5px;
}

.language-switcher div a::after {
    display: none;
}

.language-switcher div a[aria-current="page"] {
    color: var(--navy);
    background: var(--yellow);
}

.header-action,
.btn,
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.header-action {
    padding: 0 16px;
    color: #06182f;
    background: var(--yellow);
    box-shadow: 0 10px 24px rgba(255, 210, 31, 0.16);
    transition: box-shadow 220ms ease, transform 180ms ease;
}

.site-header.scrolled .header-action,
.site-header.menu-active .header-action {
    box-shadow: 0 12px 30px rgba(255, 210, 31, 0.3);
}

.header-action svg,
.btn svg,
.nav-toggle svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.nav-toggle {
    display: none;
    width: 46px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    padding: 90px 22px 34px;
    background: rgba(5, 7, 11, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(420px, 100%);
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: clamp(1.25rem, 6vw, 2.4rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 360ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
    color: var(--yellow);
    border-color: rgba(255, 210, 31, 0.34);
    background: rgba(255, 210, 31, 0.08);
}

.mobile-menu a:last-child {
    color: var(--yellow);
    font-size: clamp(1rem, 4vw, 1.2rem);
}

.mobile-service-bar {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 96vh;
    padding: 150px 28px 70px;
    overflow: hidden;
}

.page-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 68vh;
    padding: 150px 28px 70px;
    overflow: hidden;
    background: #05070b;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

.page-hero::after {
    background:
        linear-gradient(90deg, rgba(5, 7, 11, 0.78) 0%, rgba(5, 7, 11, 0.52) 48%, rgba(5, 7, 11, 0.16) 100%),
        linear-gradient(0deg, rgba(5, 7, 11, 0.76) 0%, rgba(5, 7, 11, 0.04) 60%);
}

.page-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.page-hero h1 {
    max-width: 980px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 1.12rem;
    font-weight: 650;
}

.breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--yellow);
}

.content-section,
.split-section,
.local-section {
    padding: 92px 28px;
}

.content-section {
    background: var(--navy);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 960px) minmax(360px, 480px);
    justify-content: center;
    gap: 34px;
    align-items: start;
    background: #070a10;
}

.local-section {
    background: linear-gradient(180deg, #05070b 0%, #071d39 100%);
}

.content-wrap,
.local-wrap {
    width: min(var(--content-max), 100%);
    margin: 0 auto;
}

.local-wrap h2 {
    max-width: 1100px;
    font-size: clamp(3rem, 5vw, 3.8rem);
}

.local-wrap p {
    max-width: 1120px;
}

.split-copy,
.side-panel {
    min-width: 0;
}

.lede {
    color: var(--ink-soft);
    font-size: 1.08rem;
    font-weight: 650;
}

.page-grid,
.benefit-grid,
.area-grid {
    display: grid;
    gap: 14px;
}

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

.benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.area-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
}

.info-card,
.side-panel,
.area-pill {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.info-card,
.side-panel {
    padding: 24px;
}

.info-card svg,
.side-panel svg {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    color: var(--yellow);
}

.info-card p,
.side-panel p,
.split-copy p,
.local-wrap p {
    color: var(--ink-soft);
}

.side-panel {
    position: sticky;
    top: 96px;
    border-top: 8px solid var(--red);
}

.side-panel .btn {
    width: 100%;
    margin-top: 10px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    color: var(--ink-soft);
    font-weight: 650;
}

.check-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: inset 0 0 0 5px var(--navy);
}

.area-pill {
    padding: 16px;
    color: var(--yellow);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.detail-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.detail-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}

.detail-item svg {
    width: 34px;
    height: 34px;
    color: var(--yellow);
}

.detail-item h3 {
    margin-bottom: 6px;
}

.detail-item p {
    margin: 0;
    color: var(--ink-soft);
}

.content-band {
    padding: 92px 28px;
    color: var(--navy);
    background: var(--yellow);
}

#bundle-discount {
    padding-top: 60px;
}

.content-band .content-wrap > h2 {
    max-width: 1080px;
}

.content-band .content-wrap,
.content-band h2,
.content-band h3,
.content-band p,
.content-band .eyebrow {
    color: var(--navy);
}

.content-band .page-grid {
    margin-top: 24px;
}

.content-band .info-card {
    border-color: rgba(6, 24, 47, 0.18);
    background: rgba(6, 24, 47, 0.08);
}

.content-band .info-card p {
    color: rgba(6, 24, 47, 0.78);
}

.content-band .info-card svg {
    color: var(--red);
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.bundle-offer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 34px;
    align-items: center;
    margin-top: 18px;
    padding: 32px 34px;
    border: 1px solid rgba(6, 24, 47, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.bundle-offer h2 {
    max-width: 760px;
}

.bundle-offer h3 {
    max-width: 760px;
    margin-top: 18px;
    color: var(--navy);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: clamp(2.35rem, 4vw, 3.1rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
}

.bundle-offer p {
    max-width: 760px;
    margin-top: 14px;
    color: rgba(6, 24, 47, 0.82);
    font-weight: 750;
}

.bundle-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.bundle-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid rgba(6, 24, 47, 0.18);
    border-radius: 6px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.28);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.bundle-item-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--red);
    stroke-width: 2.45;
}

.bundle-ticket {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 24px 26px;
    color: var(--ink);
    background: var(--navy);
    border-left: 10px solid var(--red);
    border-radius: var(--radius);
    box-shadow: 0 22px 44px rgba(6, 24, 47, 0.18);
}

.bundle-ticket-icon {
    width: 34px;
    height: 34px;
    color: var(--yellow);
    stroke-width: 2.1;
}

.bundle-ticket strong {
    color: var(--yellow);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 0.85;
}

.bundle-ticket span {
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 850;
    max-width: 620px;
}

.bundle-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 6px;
}

.bundle-actions .btn {
    width: 100%;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 0;
}

.coupon-card {
    display: grid;
    align-content: space-between;
    gap: 16px;
    min-height: 320px;
    padding: 26px;
    border: 2px dashed rgba(255, 210, 31, 0.54);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.coupon-card strong {
    color: var(--yellow);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 4.8rem;
    font-weight: 400;
    line-height: 0.82;
    text-transform: uppercase;
}

.coupon-card p {
    color: var(--ink-soft);
    font-weight: 700;
}

.fluid-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
}

.fluid-list li {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 178px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 900;
    text-align: left;
}

.fluid-card-icon {
    display: grid;
    width: 34px;
    height: 34px;
    color: var(--yellow);
    stroke-width: 2.25;
}

.fluid-list h3 {
    margin: 0;
    color: var(--yellow);
    font-size: 1rem;
    line-height: 1.12;
    text-transform: uppercase;
}

.fluid-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
}

.spanish-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 8px solid var(--yellow);
    border-radius: var(--radius);
    background: rgba(255, 210, 31, 0.11);
    color: var(--ink);
    font-weight: 800;
}

.hero-slideshow,
.hero-slide,
.hero-slide-media,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-media {
    object-fit: cover;
    object-position: center;
}

.hero-slide[data-orientation="portrait"] .hero-slide-media {
    object-position: 50% 46%;
}

.hero-slide img.hero-slide-media {
    animation: heroZoom 9s ease-in-out infinite alternate;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(5, 7, 11, 0.78) 0%, rgba(5, 7, 11, 0.52) 42%, rgba(5, 7, 11, 0.14) 78%),
        linear-gradient(0deg, rgba(5, 7, 11, 0.78) 0%, rgba(5, 7, 11, 0.04) 54%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(820px, 100%);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 22px;
    font-size: 6.6rem;
}

h2 {
    margin-bottom: 18px;
    font-size: 4.2rem;
}

h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.18;
}

.hero-copy {
    width: min(620px, 100%);
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: 1.13rem;
    font-weight: 600;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-width: 180px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-size: 0.91rem;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy);
    background: var(--yellow);
    box-shadow: 0 16px 36px rgba(255, 210, 31, 0.24);
}

.btn-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-bundle {
    border-color: rgba(255, 210, 31, 0.58);
    background: rgba(255, 210, 31, 0.14);
}

.btn-dark {
    color: var(--ink);
    background: var(--navy-2);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-ticket {
    position: absolute;
    right: 28px;
    bottom: 34px;
    z-index: 3;
    display: grid;
    width: min(360px, calc(100% - 56px));
    padding: 18px;
    color: var(--navy);
    background: var(--yellow);
    border-left: 10px solid var(--red);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-ticket span,
.hero-ticket small {
    font-weight: 900;
    text-transform: uppercase;
}

.hero-ticket strong {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.07); }
}

.marquee-wrap {
    position: relative;
    z-index: 8;
    width: 108%;
    max-width: 100vw;
    margin: -20px -4% -10px;
    padding: 13px 0;
    overflow: hidden;
    contain: layout paint;
    background: var(--yellow);
    box-shadow: 0 14px 36px rgba(255, 210, 31, 0.2), 0 2px 0 rgba(0, 0, 0, 0.45);
    transform: rotate(-1deg) translateY(-4px);
}

.marquee-track {
    display: flex;
    overflow: hidden;
    width: 100%;
    contain: layout paint;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-content span {
    padding: 0 28px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.marquee-content .marquee-dot {
    padding: 0;
    color: rgba(6, 24, 47, 0.52);
    font-size: 0.7rem;
    letter-spacing: 0;
}

.marquee-outline {
    margin-top: 0;
    margin-bottom: 0;
    background: #05070b;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    box-shadow: inset 0 0 24px rgba(239, 29, 39, 0.08), 0 0 24px rgba(239, 29, 39, 0.12);
    transform: rotate(1deg) translateY(4px);
}

.marquee-outline .marquee-content span {
    color: var(--red);
}

.marquee-outline .marquee-content .marquee-dot {
    color: rgba(239, 29, 39, 0.42);
}

.marquee-reverse {
    animation: marqueeScrollReverse 32s linear infinite;
}

@media (min-width: 1101px) {
    .marquee-wrap {
        width: 100%;
        margin: 0;
        transform: none;
    }

    .marquee-outline {
        transform: none;
    }
}

@media (max-width: 720px) {
    .marquee-wrap {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .marquee-outline {
        padding: 10px 0;
        border-width: 1px;
        box-shadow: inset 0 0 18px rgba(239, 29, 39, 0.08);
        transform: none;
    }

    .marquee-outline .marquee-content span {
        padding: 0 18px;
        font-size: 0.68rem;
        letter-spacing: 1.4px;
    }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.intro-section,
.services-section,
.gallery-section,
.faq-section,
.visit-section,
.drive-section,
.offer-section {
    padding: 92px 28px;
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, 860px) minmax(360px, 580px);
    justify-content: center;
    gap: 40px;
    align-items: end;
    background: linear-gradient(180deg, #05070b 0%, #071d39 100%);
}

.section-copy,
.section-heading,
.drive-copy,
.offer-copy,
.visit-panel {
    width: min(var(--content-max), 100%);
}

.section-copy p:not(.eyebrow),
.drive-copy p,
.offer-copy p,
.service-card p,
.faq-list p {
    color: var(--ink-soft);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(var(--content-max), 100%);
    margin: 0 auto;
}

.stat-card,
.service-card,
.gallery-card,
.gallery-feature,
.faq-list details,
.visit-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.stat-card {
    min-height: 126px;
    padding: 18px;
}

.stat-card .stat-icon {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    color: var(--yellow);
    stroke-width: 2.3;
}

.stat-card--synthetic {
    border-color: rgba(255, 210, 31, 0.32);
}

.stat-card strong {
    display: block;
    color: var(--yellow);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 0.9;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.stat-card em {
    display: block;
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px dashed rgba(255, 210, 31, 0.35);
    color: rgba(255, 210, 31, 0.75);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.services-section {
    background: var(--navy);
}

.section-heading {
    margin-bottom: 30px;
}

.section-header .eyebrow,
.section-header h2,
.section-header p {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.visible .eyebrow,
.section-header.visible h2,
.section-header.visible p {
    opacity: 1;
    transform: translateY(0);
}

.section-header.visible .eyebrow { transition-delay: 0ms; }
.section-header.visible h2 { transition-delay: 90ms; }
.section-header.visible p { transition-delay: 170ms; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(var(--content-max), 100%);
    margin: 0 auto;
}

.service-card {
    min-height: 310px;
    padding: 28px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 210, 31, 0.52);
    background: rgba(255, 255, 255, 0.085);
}

.service-card svg {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    color: var(--yellow);
}

.drive-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    background: #070a10;
}

.drive-section .section-heading {
    margin: 0 auto 12px;
    text-align: center;
}

.drive-section .section-heading p:not(.eyebrow) {
    margin: 0 auto;
    max-width: 640px;
    color: var(--ink-soft);
}

.timeline {
    position: relative;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 30px 0 10px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 30px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-50%);
}

.timeline-line-fill {
    width: 100%;
    height: 0;
    background: var(--yellow);
    transition: height 0.05s linear;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 0 12px rgba(255, 210, 31, 0.4);
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 56px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #070a10;
    border: 3px solid rgba(255, 255, 255, 0.22);
    justify-self: center;
    z-index: 2;
    transition: border-color 360ms ease, background 360ms ease, box-shadow 360ms ease;
}

.timeline-step.in-view .timeline-dot {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 16px rgba(255, 210, 31, 0.55);
}

.timeline-content {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    transition: border-color 240ms ease, transform 240ms ease, background 240ms ease;
}

.timeline-step.in-view .timeline-content {
    border-color: rgba(255, 210, 31, 0.5);
}

.timeline-content h3 {
    margin-bottom: 8px;
    color: var(--yellow);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.timeline-content p {
    margin: 0;
    color: var(--ink-soft);
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(255, 210, 31, 0.12);
    color: var(--yellow);
}

.timeline-icon svg {
    width: 22px;
    height: 22px;
}

.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-image::before,
.timeline-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.timeline-image::before {
    top: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
}

.timeline-image::after {
    bottom: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 100%);
}

.timeline-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 600ms ease;
}

.timeline-step.in-view .timeline-image img {
    transform: scale(1.04);
}

.pricing-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 30px;
    width: min(var(--content-max), calc(100% - 56px));
    margin: 0 auto;
    background: linear-gradient(180deg, #06182f 0%, #05070b 100%);
    border-top: 2px solid rgba(255, 210, 31, 0.18);
    border-bottom: 2px solid rgba(255, 210, 31, 0.18);
}

.pricing-card {
    display: grid;
    gap: 4px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    text-align: left;
}

.pricing-card .pricing-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    color: var(--yellow);
    stroke-width: 2.2;
}

a.pricing-card {
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

a.pricing-card:hover,
a.pricing-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 210, 31, 0.72);
}

.pricing-card--offer {
    border-color: rgba(255, 210, 31, 0.54);
    background: linear-gradient(145deg, rgba(255, 210, 31, 0.18), rgba(239, 29, 39, 0.12));
    box-shadow: 0 16px 34px rgba(255, 210, 31, 0.1);
}

.pricing-card--bundle {
    border-color: rgba(239, 29, 39, 0.64);
    background: linear-gradient(145deg, rgba(239, 29, 39, 0.2), rgba(255, 210, 31, 0.16));
}

.pricing-card .pricing-label {
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.pricing-card strong {
    color: var(--ink);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.5px;
}

.pricing-card .pricing-note {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

.reviews-section {
    padding: 92px 28px;
    background: linear-gradient(180deg, #05070b 0%, #06182f 100%);
}

.reviews-section .section-heading {
    text-align: center;
    margin: 0 auto 36px;
}

.reviews-section .section-heading p:not(.eyebrow) {
    margin: 0 auto;
    max-width: 580px;
    color: var(--ink-soft);
}

.reviews-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.reviews-stars {
    display: inline-block;
    margin-right: 4px;
    color: var(--yellow);
    letter-spacing: 2px;
}

#reviews-splide,
#reviews-splide .splide__track {
    overflow: hidden;
}

#reviews-splide {
    width: min(var(--content-max), 100%);
    margin: 0 auto;
}

#reviews-splide .splide__slide {
    height: auto;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    min-height: 270px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.review-stars {
    color: var(--yellow);
    font-size: 1.05rem;
    letter-spacing: 3px;
}

.review-star-dim {
    color: rgba(255, 255, 255, 0.22);
}

.review-card p {
    flex-grow: 1;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}

.review-card footer {
    display: grid;
    gap: 2px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.review-card footer strong {
    color: var(--ink);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.review-card footer span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.review-card-cta {
    align-items: flex-start;
    background: linear-gradient(140deg, rgba(255, 210, 31, 0.16), rgba(255, 210, 31, 0.04));
    border-color: rgba(255, 210, 31, 0.36);
}

.review-card-cta .btn {
    width: auto;
    min-width: 200px;
}

.review-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-section {
    background: #091d35;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 300px;
    gap: 18px;
    width: min(var(--content-max), 100%);
    margin: 0 auto;
}

.gallery-grid .gallery-card--feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gallery-card::before,
.gallery-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.gallery-card::before {
    top: 0;
    height: 38%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0) 100%);
}

.gallery-card::after {
    bottom: 0;
    height: 50%;
    min-height: 110px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 55%, rgba(0, 0, 0, 0) 100%);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    object-fit: cover;
    transition: transform 600ms ease;
}

.gallery-card:hover img,
.gallery-card.in-view img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    box-sizing: border-box;
    width: 100%;
    padding: 14px 16px;
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    pointer-events: none;
}

.gallery-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }
    .gallery-grid .gallery-card--feature {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: auto;
        gap: 12px;
    }
    .gallery-grid .gallery-card {
        grid-column: span 1;
        grid-row: span 1;
        height: clamp(176px, 58vw, 220px);
        aspect-ratio: auto;
    }
    .gallery-grid .gallery-card--feature {
        grid-column: span 1;
        grid-row: span 1;
        height: clamp(196px, 64vw, 240px);
    }
    .gallery-card figcaption {
        padding: 10px 12px 12px;
        font-size: 0.86rem;
        line-height: 1.25;
        white-space: normal;
        text-wrap: balance;
    }
    .gallery-card img {
        min-height: 0;
    }
    .gallery-card::after {
        height: 54%;
        min-height: 80px;
    }
    .gallery-badge {
        top: 8px;
        left: 8px;
        font-size: 0.58rem;
        padding: 0 7px;
        min-height: 22px;
        letter-spacing: 0.6px;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        gap: 10px;
    }
    .gallery-grid .gallery-card {
        height: clamp(168px, 56vw, 196px);
    }
    .gallery-grid .gallery-card--feature {
        height: clamp(184px, 62vw, 216px);
    }
    .gallery-card figcaption {
        padding: 9px 10px 10px;
        font-size: 0.8rem;
    }
    .gallery-card::after {
        height: 56%;
    }
    .gallery-badge {
        top: 6px;
        left: 6px;
        font-size: 0.54rem;
        padding: 0 6px;
        min-height: 20px;
        letter-spacing: 0.5px;
    }
}

.offer-section {
    display: grid;
    grid-template-columns: minmax(0, 1120px) auto;
    justify-content: center;
    gap: 32px;
    align-items: center;
    color: var(--navy);
    background: var(--yellow);
}

.offer-section .eyebrow,
.offer-section h2,
.offer-section p {
    color: var(--navy);
}

.offer-section p {
    max-width: 920px;
    font-weight: 700;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1020px);
    justify-content: center;
    gap: 40px;
    align-items: start;
    background: linear-gradient(180deg, #05070b 0%, #07172c 100%);
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    width: 100%;
    margin: 0;
}

.faq-section .section-heading {
    width: 100%;
    margin: 0;
    padding-top: 4px;
}

.faq-section .section-heading h2 {
    font-size: clamp(3rem, 4.6vw, 4rem);
}

.faq-section .section-heading p:not(.eyebrow) {
    max-width: 400px;
    color: var(--ink-soft);
}

.faq-list details {
    position: relative;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-list details[open] {
    border-color: rgba(255, 210, 31, 0.42);
    background: rgba(255, 210, 31, 0.08);
}

.faq-list details:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.28);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 32px;
    gap: 14px;
    align-items: center;
    min-height: 74px;
    padding: 18px 20px;
    cursor: pointer;
    color: var(--yellow);
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.18;
    list-style: none;
    text-transform: uppercase;
}

.faq-list summary .faq-icon {
    grid-column: 1;
    grid-row: 1;
    width: 22px;
    height: 22px;
    color: var(--yellow);
    stroke-width: 2.35;
}

.faq-list summary span {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    grid-column: 3;
    grid-row: 1;
    content: "+";
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 0.98rem;
    line-height: 1.55;
}

.visit-section {
    display: grid;
    grid-template-columns: minmax(420px, 620px) minmax(480px, 828px);
    justify-content: center;
    gap: 28px;
    background: linear-gradient(180deg, #05070b, #081f3f);
}

.visit-panel {
    display: grid;
    align-content: center;
    min-height: 480px;
    padding: 38px;
    border-top: 8px solid var(--red);
}

.visit-panel h2 {
    font-size: 3.55rem;
}

.hours-list {
    margin: 22px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 6px;
    max-width: 360px;
}

.hours-list > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 0.98rem;
}

.hours-list dt {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.hours-list dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-variant-numeric: tabular-nums;
}

.map-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 210, 31, 0.12), rgba(7, 136, 201, 0.1)),
        url("../assets/images/instagram/shop-sign.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.map-card.reveal {
    opacity: 1;
    transform: none;
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.12), rgba(5, 7, 11, 0.56));
    pointer-events: none;
}

.map-frame {
    width: 100%;
    min-height: 480px;
    border: 0;
    border-radius: var(--radius);
    filter: saturate(0.85) contrast(1.02);
    opacity: 0.92;
}

.map-card .map-frame {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    border-radius: 0;
}

.map-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    gap: 4px;
    max-width: 380px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 8px solid var(--yellow);
    border-radius: var(--radius);
    background: rgba(5, 7, 11, 0.86);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
}

.map-overlay strong {
    color: var(--yellow);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.map-overlay span {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 750;
}

.qr-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 44px;
    align-items: center;
    min-height: 78vh;
    padding: 150px 28px 76px;
    background:
        linear-gradient(90deg, rgba(5, 7, 11, 0.9), rgba(6, 24, 47, 0.82)),
        url("../assets/images/instagram/shop-sign.jpg") center / cover no-repeat;
}

.qr-copy,
.qr-panel,
.qr-link-grid {
    width: min(var(--content-max), 100%);
}

.qr-copy h1 {
    max-width: 780px;
}

.qr-copy p:not(.eyebrow) {
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.45;
}

.qr-panel {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 210, 31, 0.32);
    border-left: 10px solid var(--red);
    border-radius: var(--radius);
    background: rgba(5, 7, 11, 0.88);
    box-shadow: var(--shadow);
}

.qr-code-image {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: #ffffff;
}

.qr-panel span {
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
}

.qr-panel strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.35;
}

.qr-links-section {
    padding: 76px 28px;
    background: var(--navy);
}

.qr-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto;
}

.qr-link-card {
    display: grid;
    gap: 9px;
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.qr-link-card svg {
    width: 28px;
    height: 28px;
    color: var(--yellow);
}

.qr-link-card span {
    color: var(--yellow);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.qr-link-card strong {
    color: var(--ink);
    font-size: 1.08rem;
}

.contact-qr-page {
    min-height: 100vh;
    background: #05070b;
}

.contact-qr-main {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 26px;
}

.contact-qr-card {
    width: min(520px, 100%);
    padding: 26px;
    border: 1px solid var(--line);
    border-top: 8px solid var(--yellow);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #06182f 0%, #05070b 100%);
    box-shadow: var(--shadow);
}

.contact-qr-logo {
    display: block;
    width: 82px;
    height: auto;
    margin-bottom: 18px;
}

.contact-qr-card h1 {
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 9vw, 4.9rem);
}

.contact-qr-image {
    display: block;
    width: min(320px, 100%);
    margin: 0 auto 22px;
    padding: 14px;
    border-radius: 8px;
    background: #ffffff;
}

.qr-modal {
    width: min(420px, calc(100% - 34px));
    padding: 24px;
    border: 1px solid var(--line);
    border-top: 8px solid var(--yellow);
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(180deg, #06182f 0%, #05070b 100%);
    box-shadow: var(--shadow);
}

.qr-modal::backdrop {
    background: rgba(5, 7, 11, 0.78);
    backdrop-filter: blur(8px);
}

.qr-modal-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.qr-modal-close svg {
    width: 20px;
    height: 20px;
}

.qr-modal h2 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 2.6rem;
}

.qr-modal p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-weight: 750;
    line-height: 1.45;
}

.contact-qr-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.contact-qr-list div {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-qr-list dt {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.contact-qr-list dt svg {
    width: 17px;
    height: 17px;
}

.contact-qr-list dd {
    margin: 0;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.4;
}

.contact-qr-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.site-footer {
    display: grid;
    gap: 28px;
    padding: 46px 28px 28px;
    color: var(--ink-soft);
    background: linear-gradient(180deg, #06182f 0%, #05070b 100%);
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(180px, 0.75fr));
    gap: 30px;
    width: min(var(--content-max), 100%);
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.footer-logo img {
    width: 52px;
    height: auto;
}

.footer-logo strong,
.footer-logo span span {
    display: block;
    font-family: "Bebas Neue", Impact, sans-serif;
    line-height: 0.9;
    text-transform: uppercase;
}

.footer-logo strong {
    color: var(--ink);
    font-size: 2rem;
    font-weight: 400;
}

.footer-logo span span {
    color: var(--yellow);
    font-size: 1.15rem;
}

.footer-summary {
    max-width: 360px;
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.5;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-badges span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 210, 31, 0.26);
    border-radius: 6px;
    color: var(--yellow);
    background: rgba(255, 210, 31, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-col h2 {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-contact-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.35;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--yellow);
}

.footer-links,
.footer-actions-col {
    display: grid;
    gap: 10px;
}

.site-footer a {
    font-weight: 800;
}

.footer-links a {
    color: var(--ink-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--yellow);
}

.footer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.055);
    text-transform: uppercase;
}

.footer-action-primary {
    color: var(--navy);
    background: var(--yellow);
    border-color: var(--yellow);
}

.footer-action svg {
    width: 17px;
    height: 17px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(var(--content-max), 100%);
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.8rem;
    font-weight: 750;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--stagger, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .section-header .eyebrow,
    .section-header h2,
    .section-header p {
        opacity: 1;
        transform: none;
    }

    .marquee-content,
    .marquee-reverse {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .site-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .header-action {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    h1 {
        font-size: 5.4rem;
    }

    h2 {
        font-size: 3.35rem;
    }

    .intro-section,
    .drive-section,
    .visit-section,
    .offer-section,
    .split-section,
    .qr-hero {
        grid-template-columns: 1fr;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .faq-section .section-heading p:not(.eyebrow) {
        max-width: 680px;
    }

    .page-grid,
    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bundle-offer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .coupon-grid,
    .fluid-list {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qr-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-strip {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 24px;
    }

    .timeline-step {
        grid-template-columns: 48px 1fr;
        gap: 18px;
    }

    .timeline-step > .timeline-image {
        display: none;
    }

    .timeline-step .timeline-content {
        grid-column: 2;
    }

    .timeline-dot {
        grid-column: 1;
        justify-self: start;
        margin-left: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #projects-gallery-slider .splide__arrows {
        position: static;
        justify-content: flex-end;
        margin: -12px 0 18px;
    }

    .hero {
        padding-bottom: 56px;
    }

    .hero-ticket {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(420px, 100%);
        margin-top: 28px;
    }
}

@media (max-width: 720px) {
    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 64px;
        padding: 10px 14px;
        gap: 10px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 1.42rem;
    }

    .brand-copy span {
        font-size: 0.66rem;
    }

    .header-action {
        display: none;
    }

    .hero {
        min-height: 92vh;
        padding: 112px 18px 164px;
    }

    .hero-slide-media {
        object-position: 62% center;
    }

    .hero-slide[data-orientation="portrait"] .hero-slide-media {
        object-position: 50% 38%;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(5, 7, 11, 0.66), rgba(5, 7, 11, 0.34)),
            linear-gradient(0deg, rgba(5, 7, 11, 0.74), rgba(5, 7, 11, 0.03));
    }

    .page-hero::after {
        background:
            linear-gradient(90deg, rgba(5, 7, 11, 0.64), rgba(5, 7, 11, 0.32)),
            linear-gradient(0deg, rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0.03));
    }

    h1 {
        font-size: 4.25rem;
    }

    h2,
    .visit-panel h2 {
        font-size: 2.72rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-ticket {
        display: none;
    }

    .mobile-service-bar {
        position: fixed;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 12px;
        z-index: 55;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 8px 10px;
        color: var(--ink);
        background: rgba(5, 7, 11, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 10px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(10px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 18px));
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .mobile-service-bar.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-service-bar p {
        display: grid;
        gap: 1px;
        margin: 0;
        line-height: 1.1;
    }

    .mobile-service-bar strong {
        color: var(--yellow);
        font-family: "Bebas Neue", Impact, sans-serif;
        font-size: 1.2rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .mobile-service-bar span {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.6rem;
        font-weight: 900;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .mobile-service-bar a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 36px;
        padding: 0 11px;
        color: var(--navy);
        background: var(--yellow);
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .mobile-service-bar a svg {
        width: 14px;
        height: 14px;
    }

    main {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .intro-section,
    .services-section,
    .gallery-section,
    .faq-section,
    .visit-section,
    .drive-section,
    .offer-section,
    .reviews-section,
    .page-hero,
    .content-section,
    .split-section,
    .local-section,
    .content-band,
    .qr-links-section {
        padding: 62px 18px;
    }

    .qr-hero {
        min-height: auto;
        padding: 122px 18px 62px;
    }

    .page-hero {
        min-height: 62vh;
        padding-top: 112px;
    }

    .pricing-strip {
        padding: 22px 18px;
    }

    .pricing-card strong {
        font-size: 2.1rem;
    }

    .service-card {
        min-height: 240px;
        padding: 22px;
    }

    .review-card {
        min-height: 230px;
    }

    .stat-row,
    .services-grid,
    .faq-list,
    .page-grid,
    .benefit-grid,
    .area-grid,
    .bundle-list {
        grid-template-columns: 1fr;
    }

    .bundle-offer {
        gap: 20px;
        margin-top: 14px;
        padding: 20px;
    }

    .bundle-offer h3 {
        font-size: 2.45rem;
    }

    .bundle-list li {
        min-height: 46px;
    }

    .bundle-ticket strong {
        font-size: 3.5rem;
    }

    .coupon-card strong {
        font-size: 3.7rem;
    }

    .gallery-card img {
        height: 100%;
        min-height: 0;
    }

    .gallery-card {
        min-height: 0;
    }

    .steps-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .visit-panel,
    .map-card {
        min-height: 360px;
    }

    .site-footer {
        display: grid;
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .qr-link-grid {
        grid-template-columns: 1fr;
    }

    .qr-panel {
        padding: 18px;
    }

    .contact-qr-main {
        padding: 16px;
    }

    .contact-qr-card {
        padding: 20px;
    }

    .contact-qr-actions {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 3.55rem;
    }

    h2,
    .visit-panel h2 {
        font-size: 2.35rem;
    }

    .brand-copy strong {
        font-size: 1.24rem;
    }

    .hero-ticket strong {
        font-size: 1.85rem;
    }

    .detail-item {
        grid-template-columns: 1fr;
    }
}
