/* ═══════════════════════════════════════════
   MR. DISCOUNT WAREHOUSE — Luxury Theme
   ═══════════════════════════════════════════ */

:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --navy-mid: #1a2d5a;
    --gold: #f5c518;
    --gold-light: #ffd84d;
    --gold-dark: #c9a000;
    --sky: #4da6ff;
    --sky-light: #7ec8ff;
    --maroon: #8b1a2b;
    --maroon-light: #c42d42;
    --white: #ffffff;
    --gray-100: #f0f4f8;
    --gray-300: #94a3b8;
    --gray-500: #64748b;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-gold: 0 8px 32px rgba(245, 197, 24, 0.25);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Preloader ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: radial-gradient(ellipse at center, #132240 0%, var(--navy) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner { text-align: center; }

.preloader__logo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
}

.preloader__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--gold);
    border-right-color: rgba(245, 197, 24, 0.5);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0;
}

.preloader__logo-circle {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    overflow: hidden;
    background: #1a1030;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 2px rgba(245, 197, 24, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

.preloader__logo {
    width: 108%;
    height: 108%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    position: static;
    z-index: auto;
    animation: none;
    border-radius: 50%;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.preloader__text {
    font-size: 0.85rem;
    color: var(--gray-300);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ─── Cursor Glow ─── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 197, 24, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--outline {
    border: 2px solid var(--glass-border);
    color: var(--white);
    backdrop-filter: blur(10px);
    background: var(--glass);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 197, 24, 0.08);
}

/* ─── Section Utilities ─── */
.section { padding: 100px 0; position: relative; }
.section--dark { background: var(--navy-light); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.navbar__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.navbar__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.navbar__brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.navbar__brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.navbar__brand-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-300);
}

.navbar__nav {
    display: flex;
    gap: 8px;
}

.navbar__link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    border-radius: 50px;
    transition: var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--gold);
    background: rgba(245, 197, 24, 0.08);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__cta { display: flex; }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar__overlay,
.navbar__mobile-head,
.navbar__mobile-foot,
.navbar__mobile-links,
.navbar__link-num { display: none; }

.navbar__mobile-close { display: none; }

@media (min-width: 769px) {
    .navbar__mobile-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 0;
    }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 100px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    inset: -15%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}

.hero__bg-image--secondary {
    opacity: 0.15;
    mix-blend-mode: luminosity;
    animation-delay: -5s;
    z-index: 1;
}

@keyframes heroKenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(139, 26, 43, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 25%, rgba(26, 45, 90, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 100%, rgba(245, 197, 24, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 50%, rgba(245, 197, 24, 0.06) 0%, transparent 40%),
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.75) 50%, rgba(19, 34, 64, 0.88) 100%);
}

.hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 22, 40, 0.7) 100%);
    pointer-events: none;
}

.hero__rays {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: conic-gradient(
        from 220deg at 70% 45%,
        transparent 0deg,
        rgba(245, 197, 24, 0.04) 30deg,
        transparent 60deg,
        rgba(245, 197, 24, 0.03) 90deg,
        transparent 120deg
    );
    animation: raysRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes raysRotate {
    to { transform: rotate(360deg); }
}

.hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 4;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 75%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(245,197,24,0.6) 99px, rgba(245,197,24,0.6) 100px),
        repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(245,197,24,0.6) 99px, rgba(245,197,24,0.6) 100px);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: float 8s ease-in-out infinite;
    z-index: 4;
}

.hero__orb--1 {
    width: 550px; height: 550px;
    background: rgba(139, 26, 43, 0.25);
    top: -15%; right: -8%;
}

.hero__orb--2 {
    width: 450px; height: 450px;
    background: rgba(77, 166, 255, 0.18);
    bottom: 5%; left: -12%;
    animation-delay: -3s;
}

.hero__orb--3 {
    width: 350px; height: 350px;
    background: rgba(245, 197, 24, 0.15);
    top: 35%; left: 25%;
    animation-delay: -5s;
}

.hero__shimmer {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(245, 197, 24, 0.04) 45%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(245, 197, 24, 0.04) 55%,
        transparent 65%
    );
    background-size: 250% 100%;
    animation: shimmer 6s ease-in-out infinite;
}

.hero__sparkles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero__sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold), 0 0 12px rgba(245, 197, 24, 0.5);
    animation: sparkleFloat 4s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-20px) scale(1); }
}

/* Corner ornaments */
.hero__corner {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 6;
    pointer-events: none;
    opacity: 0.4;
}

.hero__corner--tl {
    top: 100px;
    left: 24px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.hero__corner--br {
    bottom: 40px;
    right: 24px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Staggered entrance */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.6s + var(--i, 0) * 0.12s);
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.hero__eyebrow-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.35);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(245, 197, 24, 0.1);
}

.hero__badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: blink 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero__title-line { display: block; }

.hero__title-line--gold {
    position: relative;
    display: inline-block;
}

.hero__title-gold-text {
    background: linear-gradient(135deg, #fff8dc 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, #fff8dc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    filter: drop-shadow(0 2px 20px rgba(245, 197, 24, 0.3));
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

.hero__desc {
    font-size: 1.12rem;
    color: var(--gray-300);
    line-height: 1.85;
    margin-bottom: 20px;
    max-width: 540px;
    font-weight: 300;
}

.hero__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero__location svg { stroke: var(--gold); flex-shrink: 0; }

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.35), 0 0 0 1px rgba(245, 197, 24, 0.2);
}

.hero__btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero__btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.hero__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

/* Glass stat cards */
.hero__stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    transition: var(--transition);
    min-width: 140px;
}

.hero__stat-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero__stat-card--gold {
    background: rgba(245, 197, 24, 0.08);
    border-color: rgba(245, 197, 24, 0.25);
}

.hero__stat-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-plus {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
}

.hero__stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Hero Visual — Luxury Showcase */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero__spotlight {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, rgba(245, 197, 24, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spotlightPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes spotlightPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero__pedestal {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(245, 197, 24, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: 1;
}

.hero__logo-frame {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero__logo-outer-ring {
    position: absolute;
    inset: -45px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 197, 24, 0.2);
    animation: ringRotate 40s linear infinite;
}

.hero__logo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.25) 0%, rgba(245, 197, 24, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.hero__logo-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1a1030 0%, #0a1628 100%);
    border: 3px solid rgba(245, 197, 24, 0.5);
    box-shadow:
        0 0 0 8px rgba(245, 197, 24, 0.08),
        0 0 60px rgba(245, 197, 24, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero__logo-img {
    width: 115%;
    height: 115%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.hero__logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringRotate 20s linear infinite;
}

.hero__logo-ring--1 {
    inset: -20px;
    border-color: rgba(245, 197, 24, 0.35);
}

.hero__logo-ring--2 {
    inset: -55px;
    border-color: rgba(77, 166, 255, 0.2);
    animation-direction: reverse;
    animation-duration: 28s;
}

.hero__logo-ring--3 {
    inset: -85px;
    border: 1px dotted rgba(245, 197, 24, 0.15);
    animation-duration: 45s;
}

/* Orbiting product thumbnails */
.hero__orbit {
    position: absolute;
    inset: 0;
    z-index: 4;
    animation: orbitSpin 30s linear infinite;
}

.hero__orbit-item {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(245, 197, 24, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(245, 197, 24, 0.15);
    background: var(--navy);
}

.hero__orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__orbit-item--1 {
    top: 8%;
    right: 12%;
    animation: orbitCounter 30s linear infinite;
}

.hero__orbit-item--2 {
    bottom: 28%;
    left: 2%;
    animation: orbitCounter 30s linear infinite;
}

.hero__orbit-item--3 {
    bottom: 8%;
    right: 18%;
    animation: orbitCounter 30s linear infinite;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitCounter { to { transform: rotate(-360deg); } }

.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10, 22, 40, 0.75);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(24px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    animation: cardFloat 5s ease-in-out infinite;
    z-index: 5;
    overflow: hidden;
}

.hero__float-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__float-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
}

.hero__float-card small {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.hero__float-icon { font-size: 1.5rem; }

.hero__float-card--1 { top: 2%; right: -8%; animation-delay: 0s; }
.hero__float-card--2 { bottom: 22%; left: -14%; animation-delay: -2s; }
.hero__float-card--3 { bottom: 2%; right: -4%; animation-delay: -4s; }

/* Luxury scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(245, 197, 24, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes ringRotate { to { transform: rotate(360deg); } }

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

@keyframes shimmer {
    0% { background-position: 250% 0; }
    100% { background-position: -250% 0; }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
    background: linear-gradient(90deg, var(--maroon), var(--maroon-light), var(--maroon));
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(245, 197, 24, 0.2);
    border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.marquee__track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee__item {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    flex-shrink: 0;
}

.marquee__dot {
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.6rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════ ABOUT ═══════════════ */
.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about__card {
    padding: 40px 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--sky));
    opacity: 0;
    transition: var(--transition);
}

.about__card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: var(--shadow-gold);
}

.about__card:hover::before { opacity: 1; }

.about__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.about__card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.about__card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.about__card-body { min-width: 0; }

.about__card-num {
    display: none;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 4px;
}

.about__cards-wrap { position: relative; }

.about__scroll-hint {
    display: none;
}

.about__card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about__banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about__banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.1), transparent);
    border-radius: 50%;
}

.about__banner h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.about__banner h3 span { color: var(--gold); }

.about__banner p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

/* ═══════════════ CATEGORIES ═══════════════ */
.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cat-card {
    position: relative;
    padding: 36px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.cat-card__glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0;
    filter: blur(80px);
    transition: var(--transition);
    border-radius: 50%;
}

.cat-card:hover .cat-card__glow { opacity: 0.15; }

.cat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cat-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.cat-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cat-card__desc {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.cat-card__arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent);
    transition: var(--transition);
}

.cat-card:hover .cat-card__arrow {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
}

/* ═══════════════ DAILY DEALS — luxury bento ═══════════════ */
.daily-deals {
    position: relative;
    background: linear-gradient(165deg, #070f1c 0%, #0f1f38 42%, #12102a 100%);
    color: var(--white);
    overflow: hidden;
}

.daily-deals__veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(245, 197, 24, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 100%, rgba(139, 26, 43, 0.14) 0%, transparent 40%);
}

.daily-deals__spark {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(245, 197, 24, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 197, 24, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
}

.daily-deals__head {
    margin-bottom: 56px;
}

.daily-deals .section-tag {
    color: var(--gold);
}

.daily-deals .section-title {
    color: var(--white);
}

.daily-deals .section-desc {
    color: rgba(255, 255, 255, 0.62);
}

.deals-luxe {
    display: grid;
    grid-template-columns: 1.12fr 1fr 1fr;
    grid-template-rows: 290px 250px;
    gap: 18px;
    margin-bottom: 28px;
}

.deals-luxe__item {
    min-height: 0;
}

.deals-luxe__item--hero {
    grid-row: 1 / 3;
    grid-column: 1;
}

.deals-luxe__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.deals-luxe__item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.deals-luxe__item--wide {
    grid-column: 2 / 4;
    grid-row: 2;
}

.deals-luxe__card {
    position: relative;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #0c1829;
    border: 1px solid rgba(245, 197, 24, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition), border-color 0.5s ease;
}

.deals-luxe__card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.5);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(245, 197, 24, 0.08);
}

.deals-luxe__corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(245, 197, 24, 0.75);
    border-style: solid;
    z-index: 4;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.deals-luxe__card:hover .deals-luxe__corner {
    border-color: var(--gold-light);
}

.deals-luxe__corner--tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.deals-luxe__corner--tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.deals-luxe__corner--bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.deals-luxe__corner--br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

.deals-luxe__shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.9s ease;
    pointer-events: none;
}

.deals-luxe__card:hover .deals-luxe__shine {
    transform: translateX(120%);
}

.deals-luxe__media {
    position: absolute;
    inset: 0;
}

.deals-luxe__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition), filter 0.5s ease;
    filter: saturate(0.92) brightness(0.88);
}

.deals-luxe__card:hover .deals-luxe__media img {
    transform: scale(1.07);
    filter: saturate(1) brightness(0.95);
}

.deals-luxe__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(7, 15, 28, 0.15) 0%,
        rgba(7, 15, 28, 0.35) 42%,
        rgba(7, 15, 28, 0.92) 100%
    );
}

.deals-luxe__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 26px 28px 28px;
}

.deals-luxe__item--hero .deals-luxe__content {
    padding: 32px 32px 34px;
}

.deals-luxe__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.deals-luxe__num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(245, 197, 24, 0.35);
    letter-spacing: 0.04em;
}

.deals-luxe__item--hero .deals-luxe__num {
    font-size: 2.8rem;
}

.deals-luxe__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.deals-luxe__content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 8px;
    line-height: 1.15;
}

.deals-luxe__item--hero .deals-luxe__content h3 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.deals-luxe__content p {
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36ch;
}

.deals-luxe__rule {
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 16px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.deals-luxe__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 32px;
    border: 1px solid rgba(245, 197, 24, 0.28);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-wrap: wrap;
}

.deals-luxe__foot-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.deals-luxe__foot-copy h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 8px;
}

.deals-luxe__foot-copy p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    max-width: 560px;
}

.deals-luxe__foot-btn {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .deals-luxe {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .deals-luxe__item--hero {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 320px;
    }

    .deals-luxe__item:nth-child(2),
    .deals-luxe__item:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }

    .deals-luxe__item--wide {
        grid-column: 1 / -1;
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .deals-luxe {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .deals-luxe::-webkit-scrollbar { display: none; }

    .deals-luxe__item {
        flex: 0 0 min(84vw, 320px);
        scroll-snap-align: center;
        min-height: 380px;
    }

    .deals-luxe__foot {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .deals-luxe__foot-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════ DEALS (legacy - kept for reference) ═══════════════ */
.deals__slider {
    overflow: hidden;
    margin: 0 -12px;
    padding: 12px;
}

.deals__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.deal-card {
    flex: 0 0 calc(33.333% - 16px);
    padding: 32px 28px;
    background: linear-gradient(160deg, var(--navy-light), var(--navy));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.deal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: var(--shadow-gold);
}

.deal-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--maroon);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
}

.deal-card__visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--glass);
    border-radius: var(--radius);
}

.deal-card__emoji { font-size: 3rem; }

.deal-card__off {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
    line-height: 1;
}

.deal-card__off small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.deal-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.deal-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.deal-card__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.deal-card__old {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.deal-card__btn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.deal-card__btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.deals__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.deals__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.deals__arrow:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.deals__dots {
    display: flex;
    gap: 8px;
}

.deals__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

.deals__dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ═══════════════ WHY US ═══════════════ */
.why__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why__features { margin-top: 40px; }

.why__feature {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--glass-border);
}

.why__feature:last-child { border-bottom: none; }

.why__feature-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

.why__feature h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.why__feature p {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.why__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why__stat-card {
    padding: 32px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.why__stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.3);
}

.why__stat-card--gold {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(245, 197, 24, 0.05));
    border-color: rgba(245, 197, 24, 0.3);
}

.why__stat-card--accent {
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.15), rgba(77, 166, 255, 0.05));
    border-color: rgba(77, 166, 255, 0.3);
}

.why__stat-icon { font-size: 2rem; display: block; margin-bottom: 8px; }

.why__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.why__stat-card--accent .why__stat-value { color: var(--sky); }

.why__stat-text {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 36px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 197, 24, 0.2);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-weight: 700;
    border-radius: 50%;
    font-size: 1.1rem;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-card__author span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ═══════════════ VISIT ═══════════════ */
.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.visit__card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
}

.visit__card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateX(4px);
}

.visit__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.visit__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

.visit__card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 6px;
}

.visit__card p {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.visit__directions { margin-top: 8px; width: 100%; justify-content: center; }

.visit__map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 100%;
    min-height: 420px;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(30%) contrast(1.1);
}

.visit__map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px;
    background: rgba(10, 22, 40, 0.9);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.visit__map-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--maroon), var(--navy-mid), var(--navy));
    z-index: 0;
}

.cta-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(245, 197, 24, 0.15), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(77, 166, 255, 0.1), transparent 50%);
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-banner__content h2 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner__content p {
    color: var(--gray-300);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    background: var(--navy);
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer__brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer__col a:hover { color: var(--gold); transform: translateX(4px); }

.footer__col p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer__tagline {
    color: var(--gold) !important;
    font-style: italic;
    font-family: var(--font-display);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__eyebrow { justify-content: center; }
    .hero__desc { margin: 0 auto 20px; }
    .hero__location { margin: 0 auto 32px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { min-height: 400px; margin-top: 24px; }
    .hero__logo-frame { width: 280px; height: 280px; }
    .hero__logo-circle { width: 220px; height: 220px; }
    .hero__orbit { display: none; }
    .hero__float-card--1 { right: 0; }
    .hero__float-card--2 { left: 0; }
    .hero__corner { display: none; }

    .about__grid { grid-template-columns: 1fr; }
    .categories__grid { grid-template-columns: repeat(2, 1fr); }
    .deal-card { flex: 0 0 calc(50% - 12px); }
    .why__layout { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .visit__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

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

    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid var(--glass-border);
    }

    .navbar__nav.open { right: 0; }
    .navbar__link { padding: 14px 0; font-size: 1rem; }
    .navbar__cta { display: none; }
    .navbar__toggle { display: flex; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .hero__float-card { display: none; }
    .hero__orbit { display: none; }
    .hero__corner { display: none; }
    .hero__scroll { display: none; }
    .hero__stat-card { min-width: auto; flex: 1; }

    .about__banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .categories__grid { grid-template-columns: 1fr; }
    .deal-card { flex: 0 0 calc(100% - 0px); }
    .why__stats-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .hero__stats { flex-direction: column; align-items: stretch; }
    .hero__stat-card { justify-content: center; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .why__stats-grid { grid-template-columns: 1fr; }
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
    background: var(--navy-mid);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

::selection {
    background: rgba(245, 197, 24, 0.3);
    color: var(--white);
}

/* ═══════════════════════════════════════════
   ENHANCED EFFECTS & IMAGES
   ═══════════════════════════════════════════ */

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--sky));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.6);
}

/* Film Grain Overlay */
.site-grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* Particles Canvas */
.particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Section Background Images */
.section-bg,
.why__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.85) 100%);
    z-index: 1;
}

.section-bg-overlay--light {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.88) 0%, rgba(19, 34, 64, 0.82) 100%);
}

.section-bg-overlay--heavy {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.9) 100%);
}

.section { position: relative; overflow: hidden; }
.section > .container { position: relative; z-index: 2; }

/* Preloader Enhanced */
.preloader__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.1);
}

.preloader__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.92);
}

.preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader__bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: loadBar 2s ease-in-out forwards;
    box-shadow: 0 0 8px var(--gold);
}

@keyframes loadBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* About Showcase — overlapping photos with overlay */
.about__showcase {
    margin-bottom: 72px;
}

.about__layers {
    position: relative;
    max-width: 920px;
    min-height: 480px;
    margin: 0 auto;
    padding: 20px 24px 72px;
}

.about__layers-photo {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    background: var(--navy-light);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.about__layers-photo--back {
    top: 0;
    left: 0;
    width: 64%;
    aspect-ratio: 16 / 10;
    z-index: 1;
    transform: rotate(-2.5deg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about__layers-photo--front {
    bottom: 56px;
    right: 0;
    width: 58%;
    aspect-ratio: 16 / 10;
    z-index: 2;
    transform: rotate(2deg);
    border: 2px solid rgba(245, 197, 24, 0.38);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(245, 197, 24, 0.12);
}

.about__layers-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--transition);
}

.about__layers:hover .about__layers-photo--back img {
    transform: scale(1.06);
}

.about__layers:hover .about__layers-photo--front img {
    transform: scale(1.04);
}

.about__layers-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        155deg,
        rgba(10, 22, 40, 0.12) 0%,
        rgba(10, 22, 40, 0.42) 50%,
        rgba(10, 22, 40, 0.78) 100%
    );
}

.about__layers-tint--soft {
    background: linear-gradient(
        205deg,
        rgba(10, 22, 40, 0.05) 0%,
        rgba(10, 22, 40, 0.32) 55%,
        rgba(139, 26, 43, 0.28) 100%
    );
}

.about__layers-glow {
    position: absolute;
    top: 42%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.14) 0%, transparent 68%);
    z-index: 0;
    pointer-events: none;
}

.about__layers-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: calc(100% - 48px);
    max-width: 780px;
    padding: 22px 30px;
    background: rgba(10, 22, 40, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(245, 197, 24, 0.28);
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about__layers-eyebrow {
    display: block;
    margin-bottom: 5px;
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.about__layers-bar-left em {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--gold);
    line-height: 1.25;
}

.about__layers-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.about__layers-pill {
    padding: 10px 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-200);
    white-space: nowrap;
}

.about__layers-pill--gold {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(139, 26, 43, 0.35);
}

/* Category Cards with Images */
.cat-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cat-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--transition);
    z-index: 0;
}

.cat-card:hover .cat-card__bg {
    transform: scale(1.12);
}

.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 1;
    transition: var(--transition);
}

.cat-card:hover .cat-card__overlay {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.cat-card__content {
    position: relative;
    z-index: 2;
}

/* Deal Cards with Product Images */
.deal-card__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s var(--transition);
}

.deal-card:hover .deal-card__img {
    transform: scale(1.05);
}

.deal-card__visual {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    background: transparent !important;
}

.deal-card__off {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid var(--gold);
}

/* Brands Strip */
.brands-strip {
    background: var(--navy-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    overflow: hidden;
}

.brands-strip__track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.brands-strip__item {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: var(--transition);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-strip__item:hover { color: var(--gold); }

/* Gallery — luxury overlapping mosaic */
.gallery {
    position: relative;
    overflow: hidden;
}

.gallery-luxe__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 30%, rgba(245, 197, 24, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 85% 70%, rgba(139, 26, 43, 0.05) 0%, transparent 38%);
}

.gallery-luxe__mosaic {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 72px;
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom: 24px;
}

.gallery-luxe__piece {
    position: relative;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(245, 197, 24, 0.22);
    box-shadow: 0 22px 55px rgba(10, 22, 40, 0.18);
    transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition), border-color 0.45s ease;
    min-height: 0;
}

.gallery-luxe__piece:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.48);
    box-shadow: 0 28px 70px rgba(10, 22, 40, 0.28);
    z-index: 8;
}

.gallery-luxe__piece:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1 / 5;
}

.gallery-luxe__piece:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 4;
    margin-left: -22px;
    z-index: 3;
}

.gallery-luxe__piece:nth-child(3) {
    grid-column: 6 / 10;
    grid-row: 4 / 6;
    margin-top: -46px;
    z-index: 5;
    transform: rotate(-1.5deg);
}

.gallery-luxe__piece:nth-child(3):hover {
    transform: rotate(-1.5deg) translateY(-4px);
}

.gallery-luxe__piece:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 5 / 7;
    z-index: 2;
}

.gallery-luxe__piece:nth-child(5) {
    grid-column: 4 / 11;
    grid-row: 6 / 9;
    z-index: 1;
}

.gallery-luxe__piece:nth-child(6) {
    grid-column: 9 / 13;
    grid-row: 7 / 9;
    margin-top: -30px;
    margin-left: -18px;
    z-index: 4;
    transform: rotate(1.5deg);
}

.gallery-luxe__piece:nth-child(6):hover {
    transform: rotate(1.5deg) translateY(-4px);
}

.gallery-luxe__piece img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--transition);
    filter: saturate(0.94);
}

.gallery-luxe__piece:hover img {
    transform: scale(1.07);
    filter: saturate(1);
}

.gallery-luxe__veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.06) 0%,
        rgba(10, 22, 40, 0.28) 55%,
        rgba(10, 22, 40, 0.82) 100%
    );
}

.gallery-luxe__cap {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
}

.gallery-luxe__idx {
    display: block;
    margin-bottom: 4px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery-luxe__title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.gallery-luxe__piece:nth-child(1) .gallery-luxe__title {
    font-size: 1.35rem;
}

.gallery-luxe__zoom {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s var(--transition);
}

.gallery-luxe__piece:hover .gallery-luxe__zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-luxe__badge {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    padding: 14px 22px;
    text-align: center;
    background: rgba(10, 22, 40, 0.88);
    border: 1px solid rgba(245, 197, 24, 0.45);
    border-radius: 4px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.gallery-luxe__badge span {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.gallery-luxe__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .gallery-luxe__mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 14px;
    }

    .gallery-luxe__piece:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
        transform: none;
        min-height: 220px;
    }

    .gallery-luxe__piece:nth-child(1),
    .gallery-luxe__piece:nth-child(5) {
        grid-column: 1 / -1;
        min-height: 280px;
    }

    .gallery-luxe__badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-luxe__mosaic {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-luxe__mosaic::-webkit-scrollbar { display: none; }

    .gallery-luxe__piece {
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: center;
        min-height: 340px;
    }

    .gallery-luxe__piece:nth-child(n) {
        min-height: 340px;
    }
}

/* Why Us Image Stack */
.why__image-stack {
    position: relative;
    margin-bottom: 24px;
    height: 280px;
}

.why__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-deep);
    z-index: 2;
}

.why__image-accent {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    height: 70%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
    z-index: 3;
}

.why__image-main img,
.why__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner Enhanced */
.cta-banner__bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 43, 0.85), rgba(10, 22, 40, 0.9));
    z-index: 1;
}

.cta-banner__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(0.9);
    transition: transform 0.5s var(--transition);
}

.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__caption {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2.5rem;
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.lightbox__close:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Testimonial cards on image bg */
.testimonials .testimonial-card {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(16px);
}

/* Parallax helper */
.parallax-bg { will-change: transform; }

/* Image shine effect on hover */
.about__card,
.deal-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.about__card::after,
.deal-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: none;
    pointer-events: none;
}

.about__card:hover::after,
.deal-card:hover::after {
    animation: cardShine 0.8s ease forwards;
}

@keyframes cardShine {
    to { transform: translateX(100%); }
}

/* Responsive additions */
@media (max-width: 1024px) {
    .about__layers {
        max-width: 680px;
        min-height: 400px;
        padding-bottom: 64px;
    }

    .about__layers-photo--back { width: 66%; }
    .about__layers-photo--front { width: 60%; bottom: 48px; }
    .about__layers-bar { padding: 18px 22px; gap: 16px; }
    .section-bg,
    .why__bg-image { background-attachment: scroll; }
}

@media (max-width: 768px) {
    .why__image-stack { height: 220px; }
    .particles-canvas { display: none; }
}

/* ═══════════════ INNER PAGES ═══════════════ */
.page-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 4rem;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero__content {
    position: relative;
    z-index: 2;
}
.page-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-hero__subtitle {
    max-width: 560px;
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-content {
    padding: 5rem 0;
}
.page-content__body {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
}
.page-content__body p { margin-bottom: 1.25rem; }

/* MD Profile */
.md-profile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.md-profile__photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
}
.md-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.md-profile__badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.md-profile__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}
.md-profile__role {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.md-profile__bio {
    color: var(--text-muted);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.team-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.team-card__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.team-card__role {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Products showcase (no prices) */
.products {
    padding: 5rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/editorial/luxury-store-1.jpg') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}
.products .container { position: relative; z-index: 1; }
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.product-card__img {
    aspect-ratio: 1;
    overflow: hidden;
}
.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img {
    transform: scale(1.05);
}
.product-card__body,
.product-card__info {
    padding: 1.25rem 1.5rem 1.5rem;
}
.product-card__category,
.product-card__cat {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.product-card__name,
.product-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.product-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact page */
.contact-section {
    padding: 5rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info {
    padding: 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.contact-info__item:last-child { margin-bottom: 0; }
.contact-info__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 150, 90, 0.12);
    border-radius: 50%;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-info__label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.contact-info__value {
    color: var(--text);
    line-height: 1.6;
}
.contact-info__value a {
    color: inherit;
    text-decoration: none;
}
.contact-info__value a:hover { color: var(--gold); }

.contact-form {
    padding: 2.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.contact-form__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.contact-form__subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-alert {
    padding: 1rem 1.25rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.form-alert--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}

@media (max-width: 900px) {
    .md-profile { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Contact page (alternate class names) */
.contact-page { padding: 5rem 0; }
.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-page__intro {
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.contact-alert--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}
.contact-alert--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.contact-form__field { margin-bottom: 1.25rem; }
.contact-form__field label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.about-page__content {
    max-width: 780px;
    line-height: 1.85;
    color: var(--text-muted);
}
.about-page__content p { margin-bottom: 1.25rem; }
.md-profile__placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 4rem;
    background: var(--surface);
    color: var(--gold);
}
.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

@media (max-width: 900px) {
    .contact-page__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   MOBILE LUXURY — Primary experience
   ═══════════════════════════════════════════ */

.hero__mobile-logo {
    display: none;
}

/* Sticky mobile action bar */
.mobile-bar {
    display: none;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .container {
        padding: 0 18px;
    }

    /* ── Navbar luxury drawer ── */
    .navbar {
        padding: 10px 0;
        padding-top: calc(10px + env(safe-area-inset-top, 0px));
    }

    .navbar.scrolled {
        background: rgba(10, 22, 40, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .navbar__container {
        padding: 0 16px;
    }

    .navbar__logo {
        width: 42px;
        height: 42px;
    }

    .navbar__brand-name { font-size: 1.05rem; }
    .navbar__brand-sub { font-size: 0.58rem; letter-spacing: 2px; }

    .navbar__cta { display: none; }

    .navbar__cta-text { display: none; }

    .navbar__toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid var(--glass-border);
        background: rgba(255,255,255,0.04);
    }

    .navbar__overlay,
    .navbar__mobile-head,
    .navbar__mobile-foot,
    .navbar__mobile-links { display: flex; }

    .navbar__mobile-links { flex-direction: column; }

    .navbar__mobile-close { display: flex; }

    .navbar__link-num { display: inline; }

    .navbar__overlay {
        position: fixed;
        inset: 0;
        background: rgba(4, 8, 18, 0.75);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s;
    }

    .navbar__overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 340px);
        height: 100%;
        height: 100dvh;
        background: linear-gradient(180deg, #121a2e 0%, #0a1628 100%);
        border-left: 1px solid rgba(245, 197, 24, 0.15);
        flex-direction: column;
        padding: 0;
        gap: 0;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    }

    .navbar__nav.open {
        transform: translateX(0);
    }

    .navbar__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(20px + env(safe-area-inset-top, 0px)) 22px 20px;
        border-bottom: 1px solid var(--glass-border);
        background: rgba(245, 197, 24, 0.04);
    }

    .navbar__mobile-label {
        display: block;
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 4px;
    }

    .navbar__mobile-head strong {
        font-family: var(--font-display);
        font-size: 1.25rem;
        color: var(--white);
    }

    .navbar__mobile-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--glass-border);
        color: var(--gray-300);
        background: rgba(255,255,255,0.04);
    }

    .navbar__mobile-links {
        flex: 1;
        padding: 16px 14px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .navbar__link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        font-size: 1.05rem;
        font-weight: 500;
        border-radius: 12px;
        border: 1px solid transparent;
        color: var(--gray-300);
    }

    .navbar__link-num {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        color: var(--gold);
        opacity: 0.7;
        min-width: 22px;
    }

    .navbar__link.active,
    .navbar__link:hover {
        background: rgba(245, 197, 24, 0.08);
        border-color: rgba(245, 197, 24, 0.15);
        color: var(--gold);
    }

    .navbar__mobile-foot {
        padding: 20px 18px calc(24px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: rgba(0,0,0,0.2);
    }

    .navbar__mobile-cta {
        width: 100%;
        justify-content: center;
        min-height: 50px;
    }

    /* ── Mobile bottom bar ── */
    .mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        background: rgba(10, 22, 40, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(245, 197, 24, 0.2);
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
    }

    .mobile-bar__item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 10px 6px;
        border-radius: 12px;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--gray-300);
        transition: var(--transition);
        min-height: 56px;
    }

    .mobile-bar__item svg { opacity: 0.85; }

    .mobile-bar__item--primary {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: var(--navy);
        margin: 0 4px;
        box-shadow: var(--shadow-gold);
    }

    .mobile-bar__item--primary svg { opacity: 1; stroke: var(--navy); }

    .mobile-bar__item:active {
        transform: scale(0.96);
    }

    /* ── Hero mobile ── */
    .hero {
        min-height: auto;
        padding: calc(88px + env(safe-area-inset-top, 0px)) 0 48px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero__mobile-logo {
        display: block;
        width: 88px;
        height: 88px;
        margin: 0 auto 20px;
        border-radius: 50%;
        padding: 4px;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        box-shadow: var(--shadow-gold);
    }

    .hero__mobile-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        background: #1a1030;
    }

    .hero__visual { display: none !important; }

    .hero__eyebrow { justify-content: center; font-size: 0.72rem; }
    .hero__badge { font-size: 0.75rem; padding: 8px 16px; }
    .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.12; }
    .hero__desc { font-size: 0.95rem; margin: 0 auto 16px; max-width: 100%; }
    .hero__location { justify-content: center; font-size: 0.82rem; margin-bottom: 24px; }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .hero__stats {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        margin: 0 -18px;
        padding-left: 18px;
        padding-right: 18px;
        scrollbar-width: none;
        justify-content: flex-start;
    }

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

    .hero__stat-card {
        flex: 0 0 auto;
        min-width: 140px;
        scroll-snap-align: start;
        padding: 14px 16px;
    }

    .hero__scroll,
    .hero__orbit,
    .hero__float-card,
    .hero__corner,
    .hero__rays,
    .particles-canvas,
    .cursor-glow { display: none !important; }

    .hero__bg-image { animation: none; }

    /* ── Sections ── */
    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
        text-align: left;
    }

    .section-tag::before,
    .section-tag::after { width: 20px; margin: 0 8px; }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }

    .section-desc {
        font-size: 0.92rem;
    }

    /* Marquee */
    .marquee__item { font-size: 0.78rem; padding: 0 16px; }
    .marquee__track { animation-duration: 22s; }

    /* About — overlapping layers mobile */
    .about__showcase {
        margin-bottom: 48px;
    }

    .about__layers {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 0 8px 0;
        gap: 0;
    }

    .about__layers-photo {
        position: relative;
        width: 86%;
        aspect-ratio: 16 / 10;
    }

    .about__layers-photo--back {
        align-self: flex-start;
        top: auto;
        left: auto;
        transform: rotate(-2deg);
        z-index: 1;
    }

    .about__layers-photo--front {
        align-self: flex-end;
        bottom: auto;
        right: auto;
        margin-top: -52px;
        transform: rotate(2deg);
        z-index: 2;
    }

    .about__layers-glow {
        display: none;
    }

    .about__layers-bar {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .about__layers-pills {
        width: 100%;
    }

    .about__scroll-hint {
        display: block;
        text-align: center;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .about__cards-wrap {
        margin-bottom: 28px;
    }

    .about__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        margin: 0 -18px 0;
        padding: 2px 18px 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .about__card {
        flex: 0 0 min(82vw, 290px);
        scroll-snap-align: center;
        padding: 18px 16px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        min-height: auto;
    }

    .about__card:hover { transform: none; }

    .about__card-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        margin-bottom: 0;
        border-radius: 10px;
    }

    .about__card-icon svg {
        width: 20px;
        height: 20px;
    }

    .about__card-num { display: block; }

    .about__card h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .about__card p {
        font-size: 0.8rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .about__banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
    }

    .about__banner .btn { width: 100%; justify-content: center; }

    /* Categories — horizontal luxury scroll */
    .categories__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        margin: 0 -18px;
        padding: 4px 18px 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .cat-card {
        flex: 0 0 min(82vw, 300px);
        scroll-snap-align: center;
        min-height: 280px;
    }

    /* Daily deals — luxury swipe */
    .deals-luxe {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 10px;
    }

    .deals-luxe::-webkit-scrollbar { display: none; }

    .deals-luxe__item {
        flex: 0 0 min(84vw, 320px);
        scroll-snap-align: center;
        min-height: 380px;
    }

    .deals-luxe__foot {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
    }

    .deals-luxe__foot-btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    /* Brands */
    .brands-strip__item { font-size: 0.85rem; padding: 0 20px; }

    /* Products — 2 column luxury grid */
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card__info,
    .product-card__body { padding: 12px; }

    .product-card__info h3,
    .product-card__name { font-size: 0.95rem; }

    .product-card__cat,
    .product-card__category { font-size: 0.6rem; }

    /* Gallery — mosaic mobile */
    .gallery-luxe__mosaic {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 10px;
    }

    .gallery-luxe__piece {
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: center;
        min-height: 320px;
    }

    .gallery-luxe__badge { display: none; }

    /* Why us */
    .why__layout { grid-template-columns: 1fr; gap: 32px; }
    .why__image-stack { height: 260px; margin-bottom: 20px; }
    .why__stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    /* Testimonials */
    .testimonials__grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonial-card { padding: 24px 20px; }

    /* Visit */
    .visit__grid { grid-template-columns: 1fr; gap: 24px; }
    .visit__map { min-height: 260px; border-radius: var(--radius); overflow: hidden; }
    .visit__map iframe { min-height: 260px; }
    .visit__directions { min-height: 52px; }

    /* CTA */
    .cta-banner { padding: 56px 0; }
    .cta-banner__content { text-align: center; }
    .cta-banner__content h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .cta-banner__content .btn { width: 100%; justify-content: center; min-height: 52px; }

    /* Footer */
    .footer { padding-bottom: 20px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer__brand { display: flex; flex-direction: column; align-items: center; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Inner pages */
    .page-hero {
        min-height: 36vh;
        padding: calc(90px + env(safe-area-inset-top, 0px)) 0 32px;
        align-items: flex-end;
    }

    .page-hero__title,
    .page-hero .section-title { font-size: clamp(1.85rem, 7vw, 2.5rem); }

    .md-profile {
        grid-template-columns: 1fr;
        padding: 20px;
        text-align: center;
    }

    .md-profile__photo { max-width: 240px; margin: 0 auto; }

    .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .contact-page__grid,
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }

    .contact-form,
    .contact-info { padding: 20px; }

    .contact-form__field input,
    .contact-form__field textarea,
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        min-height: 48px;
    }

    .preloader__logo-wrap { width: 110px; height: 110px; }

    .section-bg,
    .why__bg-image { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .products__grid { grid-template-columns: 1fr; }

    .gallery-luxe__piece {
        flex: 0 0 88vw;
        min-height: 300px;
    }

    .team-grid { grid-template-columns: 1fr; }

    .why__stats-grid { grid-template-columns: 1fr; }

    .hero__stat-card { min-width: 130px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__bg-image,
    .marquee__track,
    .brands-strip__track { animation: none !important; }
}
