/* ─── BASE RESET ─────────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #C8171D;
    --red-dark: #8f0e12;
    --red-light: #e8292f;
    --white: #FFFFFF;
    --off-white: #F4F4F4;
    --bebas: 'Bebas Neue', sans-serif;
    --serif: 'Playfair Display', serif;
    --mono: 'Space Mono', monospace;
    --bg-body: #FFFFFF;
    --bg-nav: rgba(255, 255, 255, 0.96);
    --text-main: #161010;
    --text-muted: #6b5b5b;
    --card-bg: #120505;
    --footer-bg: #0d0404;
    --border-color: rgba(200, 23, 29, 0.15);
    --modal-bg: #ffffff;
    --testimonial-bg: #f6f3f0;
    --insta-bg: #f6f3f0;
    --fact-text: white;
    --fact-border: rgba(255, 255, 255, 0.3);
    --shadow-glow: 0 8px 32px rgba(200, 23, 29, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --loading-bg: rgba(255, 255, 255, 0.95);
}

body.dark {
    --bg-body: #100606;
    --bg-nav: rgba(16, 6, 6, 0.97);
    --text-main: #FAF7F2;
    --text-muted: #c9a8a8;
    --card-bg: #190707;
    --footer-bg: #080202;
    --border-color: rgba(200, 23, 29, 0.25);
    --modal-bg: #1a0c0c;
    --testimonial-bg: #150707;
    --insta-bg: #150707;
    --fact-text: white;
    --fact-border: rgba(255, 255, 255, 0.25);
    --shadow-glow: 0 8px 32px rgba(200, 23, 29, 0.35);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.06);
    --loading-bg: rgba(16, 6, 6, 0.95);
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--mono);
    transition: background-color 0.35s ease, color 0.25s ease;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: url('icon.png') 16 16, auto !important;
}

/* ─── LOADING SCREEN ──────────────────────────────────────────────────────── */
#loadingScreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--loading-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
}
#loadingScreen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-burger {
    font-size: 80px;
    animation: loaderSpin 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    filter: drop-shadow(0 0 30px rgba(200, 23, 29, 0.3));
}
.loader-text {
    font-family: var(--bebas);
    font-size: 32px;
    letter-spacing: 8px;
    color: var(--red);
    margin-top: 20px;
    animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader-dots {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.loader-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    animation: dotBounce 1.4s ease-in-out infinite;
}
.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes loaderSpin {
    0% { transform: rotate(0deg) scale(0.8); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(0.8); }
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.4); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────────── */
@media (pointer: fine) {
    .cursor-dot {
        display: none !important;
    }
    .cursor-ring {
        width: 34px;
        height: 34px;
        background-image: url('icon.png');
        background-size: cover;
        background-position: center;
        border: 1.5px solid var(--red);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, opacity 0.15s ease, width 0.25s ease, height 0.25s ease;
        opacity: 0.8;
    }
    .cursor-ring.hover {
        width: 52px;
        height: 52px;
        opacity: 1;
    }
}
@media (pointer: coarse) {
    .cursor-ring {
        display: none !important;
    }
}

/* ─── GLASSMORPHISM ───────────────────────────────────────────────────────── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid var(--glass-border);
}
.glass-light {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-dark {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── PARTICLES CANVAS ─────────────────────────────────────────────────── */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
body.dark #particlesCanvas {
    opacity: 0.2;
}

/* ─── NAV ────────────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
@media (min-width: 768px) {
    nav {
        padding: 20px 48px;
    }
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: url('icon.png') 16 16, auto;
}
.nav-logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 20px rgba(200, 23, 29, 0.4));
}
.logo-img {
    height: 30px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
}
.nav-logo:hover .logo-img {
    transform: scale(1.05);
}
@media (min-width: 768px) {
    .logo-img {
        height: 34px;
    }
}
.nav-logo .logo-text {
    font-family: var(--bebas);
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--text-main);
    transition: color 0.3s ease;
}
.nav-logo:hover .logo-text {
    color: var(--red);
}
.nav-logo .dot {
    color: var(--red);
    font-size: 32px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (min-width: 768px) {
    .nav-right {
        gap: 28px;
    }
}

.nav-links {
    display: none;
    gap: 32px;
    list-style: none;
}
@media (min-width: 980px) {
    .nav-links {
        display: flex;
    }
}
.nav-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover {
    color: var(--red);
    text-shadow: 0 0 20px rgba(200, 23, 29, 0.2);
}
.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.lang-selector {
    display: none;
    gap: 6px;
}
@media (min-width: 768px) {
    .lang-selector {
        display: flex;
    }
}
.mobile-nav .lang-selector {
    display: flex !important;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 9px;
    cursor: url('icon.png') 16 16, auto;
    font-family: var(--mono);
    color: var(--text-muted);
    transition: all 0.25s ease;
    min-height: 32px;
    touch-action: manipulation;
    border-radius: 2px;
}
.lang-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 0 24px rgba(200, 23, 29, 0.3);
}
.lang-btn:hover:not(.active) {
    border-color: var(--red);
    color: var(--red);
    transform: scale(1.04);
}

.theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    font-size: 16px;
    cursor: url('icon.png') 16 16, auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle:hover {
    border-color: var(--red);
    background: rgba(200, 23, 29, 0.08);
    transform: rotate(12deg) scale(1.06);
    box-shadow: 0 0 30px rgba(200, 23, 29, 0.15);
}

.nav-phone {
    display: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    background: var(--red);
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.nav-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-phone:hover::before {
    opacity: 1;
}
.nav-phone:hover {
    background: var(--red-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(200, 23, 29, 0.4);
}
@media (min-width: 980px) {
    .nav-phone {
        display: inline-block;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: url('icon.png') 16 16, auto;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 2px;
}
@media (min-width: 980px) {
    .hamburger {
        display: none;
    }
}
.hamburger:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(200, 23, 29, 0.08);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    border-radius: 1px;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--red);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--red);
}

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 70px;
    position: relative;
    z-index: 1;
}
@media (min-width: 980px) {
    .hero {
        grid-template-columns: 55% 45%;
        padding-top: 80px;
    }
}
.hero-left {
    background: var(--red);
    padding: 48px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}
@media (min-width: 768px) {
    .hero-left {
        padding: 80px 56px;
    }
}
.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.06), transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeSlideUp 0.8s ease both 0.2s;
}
.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-title {
    font-family: var(--bebas);
    font-size: clamp(72px, 22vw, 200px);
    line-height: 0.85;
    letter-spacing: 2px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    animation: none;
}
.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotate(6deg);
    animation: letterPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-title .char:nth-child(1) { animation-delay: 0.05s; }
.hero-title .char:nth-child(2) { animation-delay: 0.10s; }
.hero-title .char:nth-child(3) { animation-delay: 0.15s; }
.hero-title .char:nth-child(4) { animation-delay: 0.20s; }
.hero-title .char:nth-child(5) { animation-delay: 0.25s; }
.hero-title .char:nth-child(6) { animation-delay: 0.30s; }
.hero-title .char:nth-child(7) { animation-delay: 0.35s; }
.hero-title .char:nth-child(8) { animation-delay: 0.40s; }
.hero-title .char:nth-child(9) { animation-delay: 0.45s; }
.hero-title .char:nth-child(10) { animation-delay: 0.50s; }
.hero-title .char:nth-child(11) { animation-delay: 0.55s; }
.hero-title .char:nth-child(12) { animation-delay: 0.60s; }

@keyframes letterPop {
    0% { opacity: 0; transform: translateY(60px) rotate(6deg) scale(0.8); }
    100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

.hero-title .small {
    font-size: 0.22em;
    letter-spacing: 6px;
    display: block;
    opacity: 0.8;
    width: 100%;
    margin-top: 4px;
}

.hero-sub {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 100%;
    margin-top: 20px;
    animation: fadeSlideUp 0.8s ease both 0.5s;
}
@media (min-width: 768px) {
    .hero-sub {
        max-width: 360px;
        font-size: 12px;
        margin-top: 28px;
    }
}
.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-direction: column;
    animation: fadeSlideUp 0.8s ease both 0.7s;
}
@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .hero-actions {
        margin-top: 40px;
        gap: 16px;
    }
}
.hero-actions .btn-call-big {
    background: #ffffff;
    color: var(--red);
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.hero-actions .btn-call-big::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 23, 29, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hero-actions .btn-call-big:hover::before {
    opacity: 1;
}
@media (min-width: 768px) {
    .hero-actions .btn-call-big {
        font-size: 11px;
        padding: 14px 28px;
    }
}
.hero-actions .btn-call-big:hover {
    background: var(--off-white);
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 23, 29, 0.35);
}
.hero-actions .btn-call-big:active {
    transform: scale(0.96);
}

.hero-bottom-banner {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
}
@media (min-width: 768px) {
    .hero-bottom-banner {
        display: block;
    }
}
.hero-banner-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.35) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-banner-fallback span {
    font-family: var(--bebas);
    font-size: 13px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    animation: shimmer 4s ease-in-out infinite;
}
.hero-banner-fallback span:nth-child(2) { animation-delay: 0.5s; }
.hero-banner-fallback span:nth-child(3) { animation-delay: 1s; }
.hero-banner-fallback span:nth-child(4) { animation-delay: 1.5s; }

.hero-right {
    background: var(--red);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vw;
    max-height: 440px;
    min-height: 280px;
    padding: 14px 14px 16px;
    gap: 10px;
    overflow: hidden;
}
@media (min-width: 980px) {
    .hero-right {
        height: 100%;
        max-height: 100vh;
        min-height: 400px;
        perspective: 900px;
        padding: 28px 28px 32px;
        gap: 16px;
    }
}
.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.model-wrapper {
    width: 88%;
    flex: 1 1 auto;
    min-height: 0;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    position: relative;
    animation: floatModel 6s ease-in-out infinite;
    transition: none;
    transform-origin: center center;
}
@media (min-width: 980px) {
    .model-wrapper {
        width: 88%;
    }
}
@keyframes floatModel {
    0%, 100% { transform: perspective(900px) translateY(0); }
    50% { transform: perspective(900px) translateY(-12px); }
}

.hero-right-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 20;
    width: 100%;
}
@media (min-width: 980px) {
    .hero-right-bottom {
        gap: 16px;
    }
}

model-viewer {
    width: 100%;
    height: 100%;
    --progress-bar-color: transparent;
    background: transparent;
    will-change: transform;
    contain: layout style paint;
}

.model-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fallback-burger {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}
.fallback-emoji {
    font-size: 80px;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
    .fallback-emoji {
        font-size: 120px;
    }
}
.fallback-text {
    font-family: var(--bebas);
    font-size: 20px;
    letter-spacing: 4px;
    color: white;
    display: block;
    margin-top: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.fallback-small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 6px;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: spinBadge 16s linear infinite;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
    .hero-badge {
        top: 40px;
        right: 40px;
        width: 100px;
        height: 100px;
    }
}
.hero-badge span {
    font-family: var(--bebas);
    font-size: 9px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
    .hero-badge span {
        font-size: 12px;
    }
}
@keyframes spinBadge {
    to { transform: rotate(360deg); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
}
@media (min-width: 768px) {
    .hero-stats {
        gap: 56px;
    }
}
.stat-num {
    font-family: var(--bebas);
    font-size: 26px;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
    .stat-num {
        font-size: 34px;
    }
}
.stat-label {
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .stat-label {
        font-size: 9px;
    }
}

.ar-floating-btn {
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    color: var(--red);
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: url('icon.png') 16 16, auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    touch-action: manipulation;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.ar-floating-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 23, 29, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ar-floating-btn:hover::before {
    opacity: 1;
}
.ar-floating-btn:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}
.ar-floating-btn:active {
    transform: scale(0.94);
    background: var(--red);
    color: white;
}
.ar-floating-btn:disabled,
.ar-floating-btn.ar-loading {
    opacity: 0.55;
    cursor: progress;
    pointer-events: none;
}
@media (min-width: 768px) {
    .ar-floating-btn {
        font-size: 16px;
        padding: 14px 36px;
    }
}
.ar-floating-btn .ar-icon {
    font-size: 20px;
    line-height: 1;
}

.btn-white {
    background: var(--white);
    color: var(--red);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: url('icon.png') 16 16, auto;
}
@media (min-width: 768px) {
    .btn-white {
        font-size: 11px;
        padding: 14px 28px;
        min-height: auto;
    }
}
.btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 23, 29, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-white:hover::before {
    opacity: 1;
}
.btn-white:hover {
    background: var(--off-white);
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 23, 29, 0.2);
}
.btn-white:active {
    transform: scale(0.96);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    min-height: 52px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: url('icon.png') 16 16, auto;
}
@media (min-width: 768px) {
    .btn-outline {
        font-size: 11px;
        padding: 14px 28px;
        min-height: auto;
    }
}
.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-outline:hover::before {
    opacity: 1;
}
.btn-outline:hover {
    border-color: white;
    color: white;
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.btn-outline:active {
    transform: scale(0.96);
}

.float-order {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 900;
    background: var(--red);
    color: white;
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 22px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(200, 23, 29, 0.5);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-items: center;
    gap: 8px;
    min-height: 56px;
    animation: floatPulse 3s ease-in-out infinite;
    cursor: url('icon.png') 16 16, auto;
}
@media (min-width: 980px) {
    .float-order {
        display: none;
    }
}
@keyframes floatPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 24px rgba(200, 23, 29, 0.5); }
    50% { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(200, 23, 29, 0.6); }
}
.float-order:active {
    transform: scale(0.94);
    background: var(--red-dark);
}

/* ─── VIDEO SECTION ────────────────────────────────────────────────────── */
.video-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    position: relative;
    background: #000;
}
.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

/* ─── MARQUEE ─────────────────────────────────────────────────────────────── */
.marquee-wrap {
    background: linear-gradient(135deg, var(--red) 0%, #6b0f12 50%, var(--red) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    padding: 22px 0;
    position: relative;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(200, 23, 29, 0.4);
}
.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40%;
    pointer-events: none;
    z-index: 2;
}
.marquee-wrap::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}
.marquee-wrap::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 38s linear infinite;
    gap: 0;
}
.marquee-item {
    font-family: var(--bebas);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: white;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: marqueeColor 6s ease-in-out infinite alternate;
}
.marquee-item:nth-child(2) { animation-delay: 0.2s; }
.marquee-item:nth-child(3) { animation-delay: 0.4s; }
.marquee-item:nth-child(4) { animation-delay: 0.6s; }
.marquee-item:nth-child(5) { animation-delay: 0.8s; }
.marquee-item:nth-child(6) { animation-delay: 1.0s; }
.marquee-item:nth-child(7) { animation-delay: 1.2s; }
.marquee-item:nth-child(8) { animation-delay: 1.4s; }
.marquee-item:nth-child(9) { animation-delay: 1.6s; }
.marquee-item:nth-child(10) { animation-delay: 1.8s; }
.marquee-item:nth-child(11) { animation-delay: 2.0s; }
.marquee-item:nth-child(12) { animation-delay: 2.2s; }
.marquee-item:nth-child(13) { animation-delay: 2.4s; }
.marquee-item:nth-child(14) { animation-delay: 2.6s; }

@keyframes marqueeColor {
    0% { color: #ffffff; text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    50% { color: #FFD700; text-shadow: 0 0 40px rgba(255, 215, 0, 0.5); }
    100% { color: #ff6b6b; text-shadow: 0 0 30px rgba(255, 107, 107, 0.4); }
}

.marquee-item .sep {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
.marquee-item .highlight {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}
.marquee-item .emoji {
    font-size: 30px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .marquee-wrap { padding: 16px 0; }
    .marquee-item { font-size: 20px; letter-spacing: 4px; padding: 0 24px; }
    .marquee-item .sep { font-size: 16px; margin: 0 8px; }
    .marquee-item .emoji { font-size: 22px; }
}
@media (max-width: 480px) {
    .marquee-item { font-size: 16px; letter-spacing: 3px; padding: 0 16px; }
    .marquee-item .sep { font-size: 14px; margin: 0 6px; }
}

/* ─── ABOUT ────────────────────────────────────────────────────────────────── */
.about {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
}
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #FFD700, var(--red), #FFD700);
    background-size: 300% 100%;
    animation: waveDivider 4s ease-in-out infinite;
}
@keyframes waveDivider {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (min-width: 980px) {
    .about {
        grid-template-columns: 1fr 1fr;
        min-height: 520px;
    }
}
.about-text {
    padding: 48px 20px;
    background: var(--bg-body);
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .about-text {
        padding: 100px 64px;
    }
}
.section-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--red);
}

.about-title {
    font-family: var(--serif);
    font-size: clamp(30px, 6vw, 56px);
    font-style: italic;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--red) 70%, var(--text-main) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite alternate;
}
body.dark .about-title {
    background: linear-gradient(135deg, #FAF7F2 30%, var(--red-light) 70%, #FAF7F2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite alternate;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.about-body {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 100%;
}
@media (min-width: 768px) {
    .about-body {
        max-width: 420px;
        font-size: 12px;
        margin-top: 24px;
    }
}
.btn-see-menu {
    display: inline-block;
    margin-top: 28px;
    font-family: var(--bebas);
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--red);
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    padding-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: url('icon.png') 16 16, auto;
}
.btn-see-menu::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s ease;
}
.btn-see-menu:hover {
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(200, 23, 29, 0.2);
}
.btn-see-menu:hover::after {
    width: 100%;
}

.about-right {
    position: relative;
    overflow: hidden;
    background: var(--red);
    min-height: 320px;
    cursor: url('icon.png') 16 16, pointer;
    transition: transform 0.3s ease;
}
.about-right:hover {
    transform: scale(1.01);
}
@media (min-width: 768px) {
    .about-right {
        min-height: 440px;
    }
}
.about-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
    transition: transform 0.8s ease, opacity 0.6s ease;
}
.about-right:hover .about-banner-img {
    transform: scale(1.04);
    opacity: 0.45;
}
.about-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(150, 10, 14, 0.7) 0%, rgba(40, 4, 6, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    z-index: 2;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
}
@media (min-width: 768px) {
    .about-right-overlay {
        padding: 64px;
    }
}
.about-facts {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
@media (min-width: 768px) {
    .about-facts {
        gap: 48px;
    }
}
.fact {
    border-left: 2px solid var(--fact-border);
    padding-left: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.fact:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(6px);
}
@media (min-width: 768px) {
    .fact {
        padding-left: 28px;
    }
}
.fact-label {
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.fact-value {
    font-family: var(--bebas);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--fact-text);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
    .fact-value {
        font-size: 28px;
    }
}

/* ─── IMAGE LIGHTBOX ───────────────────────────────────────────────────────── */
#imageLightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#imageLightbox.open {
    opacity: 1;
}
#imageLightbox .lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#imageLightbox.open .lightbox-img-wrap {
    transform: scale(1);
}
#imageLightbox img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
}
#imageLightbox .lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 22px;
    cursor: url('icon.png') 16 16, pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3100;
}
#imageLightbox .lightbox-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg) scale(1.08);
}

/* ─── INSTAGRAM ────────────────────────────────────────────────────────────── */
.instagram-section {
    background: var(--insta-bg);
    padding: 48px 16px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.35s ease;
    position: relative;
    z-index: 1;
}
.instagram-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, var(--red), #FFD700, var(--red));
    background-size: 300% 100%;
    animation: waveDivider 4s ease-in-out infinite;
    animation-delay: 1s;
}
@media (min-width: 768px) {
    .instagram-section {
        padding: 80px 64px;
    }
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 100%;
    margin: 24px auto 0;
}
@media (min-width: 768px) {
    .insta-grid {
        gap: 12px;
        max-width: 780px;
        margin: 32px auto 0;
    }
}
.insta-post {
    aspect-ratio: 1/1;
    background: #2d1212;
    border-radius: 8px;
    overflow: hidden;
    cursor: url('icon.png') 16 16, pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.insta-post:hover {
    transform: scale(1.03) translateY(-6px) rotate(1deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.insta-post:active {
    transform: scale(0.96);
}
.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.insta-post:hover img {
    transform: scale(1.08);
}
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 23, 29, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.insta-post:hover .insta-overlay {
    opacity: 1;
}
.insta-caption {
    font-family: var(--bebas);
    font-size: 12px;
    letter-spacing: 1px;
    color: white;
    text-align: center;
    padding: 0 8px;
}
@media (min-width: 768px) {
    .insta-caption {
        font-size: 16px;
        letter-spacing: 2px;
    }
}
.insta-view-link {
    font-size: 8px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}
.insta-post:hover .insta-view-link {
    border-color: white;
}
@media (min-width: 768px) {
    .insta-view-link {
        font-size: 10px;
        letter-spacing: 2px;
    }
}
.insta-handle-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--red);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: url('icon.png') 16 16, pointer;
}
.insta-handle-link:hover {
    opacity: 0.7;
    transform: translateX(4px);
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials {
    background: var(--testimonial-bg);
    padding: 48px 16px;
    text-align: center;
    transition: background 0.35s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #FFD700, var(--red), #FFD700);
    background-size: 300% 100%;
    animation: waveDivider 4s ease-in-out infinite;
    animation-delay: 0.5s;
}
@media (min-width: 768px) {
    .testimonials {
        padding: 100px 64px;
    }
}
.testimonial-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.testimonial-slider::-webkit-scrollbar {
    display: none;
}
.testimonial-card {
    min-width: 260px;
    background: var(--modal-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    border-top: 3px solid var(--red);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
}
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(200, 23, 29, 0.12);
}
@media (min-width: 768px) {
    .testimonial-card {
        min-width: 320px;
        padding: 32px;
        border-radius: 24px;
    }
}
.testimonial-stars {
    color: var(--red);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-main);
}
@media (min-width: 768px) {
    .testimonial-text {
        font-size: 14px;
    }
}
.testimonial-author {
    font-family: var(--bebas);
    letter-spacing: 1px;
    color: var(--red);
}

/* ─── MENU ─────────────────────────────────────────────────────────────────── */
.menu-section {
    background: var(--card-bg);
    padding: 48px 16px;
    position: relative;
    z-index: 1;
}
.menu-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, var(--red), #FFD700, var(--red));
    background-size: 300% 100%;
    animation: waveDivider 4s ease-in-out infinite;
    animation-delay: 1.5s;
}
@media (min-width: 768px) {
    .menu-section {
        padding: 110px 64px;
    }
}
.menu-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 32px;
    gap: 8px;
}
@media (min-width: 768px) {
    .menu-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding-bottom: 40px;
        margin-bottom: 64px;
    }
}
.menu-title {
    font-family: var(--bebas);
    font-size: clamp(48px, 12vw, 110px);
    line-height: 0.9;
    color: white;
}
.menu-title span:first-child {
    color: var(--red);
    text-shadow: 0 0 40px rgba(200, 23, 29, 0.3);
}
.menu-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-cat-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.menu-cat-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 16px;
    cursor: url('icon.png') 16 16, pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}
.menu-cat-tab.active,
.menu-cat-tab:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 4px 24px rgba(200, 23, 29, 0.3);
    transform: scale(1.04);
}
.menu-cat-tab:active {
    transform: scale(0.94);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
@media (min-width: 640px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.menu-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: url('icon.png') 16 16, pointer;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.menu-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    transform: rotate(25deg);
    transition: top 0.6s ease, left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}
.menu-card:hover::before {
    top: -50%;
    left: -50%;
}
.menu-card:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.menu-card:active {
    transform: scale(0.96);
}
.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover img {
    transform: scale(1.08);
}
.menu-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent);
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: padding 0.3s ease;
    z-index: 2;
}
.menu-card:hover .menu-card-label {
    padding: 14px 16px;
}

/* ─── DELIVERY / CONTACT ───────────────────────────────────────────────────── */
.delivery {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
}
.delivery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #FFD700, var(--red), #FFD700);
    background-size: 300% 100%;
    animation: waveDivider 4s ease-in-out infinite;
    animation-delay: 2s;
}
@media (min-width: 980px) {
    .delivery {
        grid-template-columns: 1fr 1fr;
    }
}
.delivery-left {
    background: var(--red);
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.delivery-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04), transparent 70%);
    pointer-events: none;
}
@media (min-width: 768px) {
    .delivery-left {
        padding: 80px 64px;
    }
}
.delivery-title {
    font-family: var(--bebas);
    font-size: clamp(40px, 8vw, 80px);
    color: white;
    line-height: 0.9;
    margin-bottom: 32px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
    .delivery-title {
        margin-bottom: 48px;
    }
}
.delivery-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 480px) {
    .delivery-apps {
        gap: 14px;
    }
}
.delivery-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 56px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: url('icon.png') 16 16, pointer;
}
.delivery-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.delivery-btn:hover::before {
    opacity: 1;
}
@media (min-width: 768px) {
    .delivery-btn {
        padding: 18px 24px;
        min-height: auto;
    }
}
.delivery-btn:hover {
    transform: scale(1.02) translateX(4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.delivery-btn:active {
    transform: scale(0.97);
}
.delivery-btn-primary {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}
.delivery-btn-primary .delivery-btn-text {
    font-weight: 700;
    font-size: 13px;
}
@media (min-width: 768px) {
    .delivery-btn-primary .delivery-btn-text {
        font-size: 11px;
    }
}
.delivery-btn-text {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
    .delivery-btn-text {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.delivery-right {
    background: var(--bg-body);
    padding: 48px 20px;
    transition: background 0.35s;
}
@media (min-width: 768px) {
    .delivery-right {
        padding: 80px 64px;
    }
}
.info-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .info-list {
        margin-top: 32px;
    }
}
.info-row {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.info-row:hover {
    padding-left: 8px;
    border-color: var(--red);
}
@media (min-width: 768px) {
    .info-row {
        gap: 24px;
        padding: 28px 0;
    }
}
.info-icon {
    width: 40px;
    height: 40px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-row:hover .info-icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 4px 20px rgba(200, 23, 29, 0.3);
}
@media (min-width: 768px) {
    .info-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}
.info-label {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
@media (min-width: 768px) {
    .info-label {
        font-size: 9px;
        letter-spacing: 3px;
        margin-bottom: 5px;
    }
}
.info-value {
    font-family: var(--bebas);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--text-main);
}
@media (min-width: 768px) {
    .info-value {
        font-size: 24px;
    }
}
.info-value a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: url('icon.png') 16 16, pointer;
}
.info-value a:hover {
    color: var(--red);
}

.google-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--red);
    flex-wrap: wrap;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.google-rating-row:hover {
    border-color: var(--red);
    box-shadow: 0 4px 24px rgba(200, 23, 29, 0.06);
    transform: translateX(4px);
}
@media (min-width: 480px) {
    .google-rating-row {
        gap: 16px;
        padding: 18px 20px;
        margin-top: 24px;
    }
}
.google-logo {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}
.google-score {
    font-family: var(--bebas);
    font-size: 20px;
    color: var(--text-main);
    line-height: 1;
}
@media (min-width: 768px) {
    .google-score {
        font-size: 24px;
    }
}
.google-count {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.google-link {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    margin-left: auto;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    cursor: url('icon.png') 16 16, pointer;
}
.google-link:hover {
    border-color: var(--red);
    color: var(--red-dark);
    transform: translateX(2px);
}

/* ─── CONTACT US ────────────────────────────────────────────────────────────── */
.contact-us {
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
}
.contact-us .contact-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    transition: transform 0.6s ease;
}
@media (min-width: 768px) {
    .contact-us .contact-banner {
        min-height: 70vh;
        padding: 100px 64px;
    }
}
.contact-us .contact-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 3, 3, 0.85) 0%, rgba(60, 8, 10, 0.70) 40%, rgba(10, 3, 3, 0.80) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.contact-us .contact-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.015) 40px, rgba(255, 255, 255, 0.015) 41px);
    z-index: 1;
    pointer-events: none;
}

.contact-us .contact-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.contact-us .contact-header {
    text-align: center;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .contact-us .contact-header {
        margin-bottom: 64px;
    }
}
.contact-us .contact-header .section-label {
    justify-content: center;
    color: #FFD700;
}
.contact-us .contact-header .section-label::after {
    background: #FFD700;
}
.contact-us .contact-header .contact-title {
    font-family: var(--bebas);
    font-size: clamp(44px, 10vw, 90px);
    line-height: 0.9;
    color: white;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}
.contact-us .contact-header .contact-title .highlight {
    color: #FFD700;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.2);
}
.contact-us .contact-header .contact-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    letter-spacing: 2px;
}
@media (min-width: 768px) {
    .contact-us .contact-header .contact-sub {
        font-size: 14px;
        margin-top: 16px;
    }
}

.contact-us .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .contact-us .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (min-width: 980px) {
    .contact-us .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.contact-us .contact-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: url('icon.png') 16 16, pointer;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contact-us .contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 23, 29, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.contact-us .contact-card:hover::before {
    opacity: 1;
}
.contact-us .contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), #FFD700, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-us .contact-card:hover::after {
    transform: scaleX(1);
}
.contact-us .contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.3), 0 0 40px rgba(200, 23, 29, 0.08);
}
.contact-us .contact-card:active {
    transform: scale(0.96);
}
.contact-us .contact-card .card-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 20px rgba(200, 23, 29, 0.1));
}
.contact-us .contact-card:hover .card-icon {
    transform: scale(1.15) rotate(-6deg);
    filter: drop-shadow(0 0 30px rgba(200, 23, 29, 0.25));
}
.contact-us .contact-card .card-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    transition: color 0.3s ease;
}
.contact-us .contact-card:hover .card-label {
    color: rgba(255, 215, 0, 0.6);
}
.contact-us .contact-card .card-value {
    font-family: var(--bebas);
    font-size: 20px;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
    word-break: break-word;
}
@media (min-width: 768px) {
    .contact-us .contact-card .card-value {
        font-size: 24px;
    }
}
.contact-us .contact-card:hover .card-value {
    color: #FFD700;
}
.contact-us .contact-card .card-value a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-us .contact-card .card-value a:hover {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.contact-us .contact-card.cta-card {
    background: rgba(200, 23, 29, 0.20);
    border-color: rgba(200, 23, 29, 0.30);
    min-height: 180px;
}
.contact-us .contact-card.cta-card:hover {
    background: rgba(200, 23, 29, 0.30);
    border-color: rgba(200, 23, 29, 0.50);
    box-shadow: 0 16px 56px rgba(200, 23, 29, 0.2);
}
.contact-us .contact-card.cta-card .card-value {
    font-size: 18px;
    color: #FFD700;
}
@media (min-width: 768px) {
    .contact-us .contact-card.cta-card .card-value {
        font-size: 22px;
    }
}
.contact-us .contact-card.cta-card .btn-cta-small {
    display: inline-block;
    margin-top: 8px;
    background: white;
    color: var(--red);
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 700;
}
.contact-us .contact-card.cta-card .btn-cta-small:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
    background: var(--off-white);
}

.contact-us .contact-card.contact-form-card {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    cursor: default;
}
.contact-us .contact-card.contact-form-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.contact-us .contact-card.contact-form-card .form-title {
    font-family: var(--bebas);
    font-size: 26px;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 8px;
}
.contact-us .contact-card.contact-form-card .form-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}
.contact-us .contact-card.contact-form-card .form-group {
    margin-bottom: 16px;
    text-align: left;
}
.contact-us .contact-card.contact-form-card .form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}
.contact-us .contact-card.contact-form-card .form-group input,
.contact-us .contact-card.contact-form-card .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: white;
    font-family: var(--mono);
    font-size: 13px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.contact-us .contact-card.contact-form-card .form-group input:focus,
.contact-us .contact-card.contact-form-card .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200, 23, 29, 0.2);
}
.contact-us .contact-card.contact-form-card .form-group input::placeholder,
.contact-us .contact-card.contact-form-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.contact-us .contact-card.contact-form-card .form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-us .contact-card.contact-form-card .form-btn {
    display: inline-block;
    background: var(--red);
    color: white;
    font-family: var(--bebas);
    font-size: 16px;
    letter-spacing: 2px;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: url('icon.png') 16 16, pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    font-weight: 700;
}
.contact-us .contact-card.contact-form-card .form-btn:hover {
    background: var(--red-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(200, 23, 29, 0.3);
}
.contact-us .contact-card.contact-form-card .form-btn:active {
    transform: scale(0.96);
}
.contact-us .contact-card.contact-form-card .form-status {
    margin-top: 12px;
    font-size: 12px;
    color: #22c55e;
    min-height: 24px;
}
.contact-us .contact-card.contact-form-card .form-status.error {
    color: #ef4444;
}

/* ─── MAP ──────────────────────────────────────────────────────────────────── */
.map-section {
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}
.map-section iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(0.3) contrast(1.05);
    transition: filter 0.6s ease;
}
@media (min-width: 768px) {
    .map-section iframe {
        height: 400px;
    }
}
.map-section:hover iframe {
    filter: grayscale(0) contrast(1);
}
.map-label {
    background: var(--red);
    color: white;
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 3px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (min-width: 768px) {
    .map-label {
        font-size: 13px;
        letter-spacing: 4px;
        padding: 14px 64px;
        gap: 12px;
    }
}

/* ─── CTA ──────────────────────────────────────────────────────────────────── */
.cta {
    background: var(--red);
    text-align: center;
    padding: 64px 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.cta::before {
    content: 'HAMP';
    position: absolute;
    font-family: var(--bebas);
    font-size: 120px;
    color: rgba(0, 0, 0, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: 12px;
    animation: ctaBgPulse 8s ease-in-out infinite;
}
.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 10px, transparent 10px, transparent 20px);
    pointer-events: none;
    animation: ctaShine 12s linear infinite;
}
@keyframes ctaShine {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}
@keyframes ctaBgPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}
@media (min-width: 768px) {
    .cta::before {
        font-size: 320px;
        letter-spacing: 24px;
    }
}
.cta-title {
    font-family: var(--bebas);
    font-size: clamp(48px, 12vw, 120px);
    color: white;
    line-height: 0.9;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}
.cta-title em {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.5em;
    display: block;
    opacity: 0.85;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}
.cta-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    z-index: 2;
    align-items: center;
}
@media (min-width: 480px) {
    .cta-actions {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .cta-actions {
        margin-top: 48px;
        gap: 20px;
    }
}
.cta-actions .btn-call-big {
    background: #ffffff;
    color: var(--red);
    font-size: 16px;
    padding: 18px 36px;
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
    font-weight: 800;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.cta-actions .btn-call-big::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 23, 29, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cta-actions .btn-call-big:hover::before {
    opacity: 1;
}
@media (min-width: 768px) {
    .cta-actions .btn-call-big {
        font-size: 11px;
        padding: 14px 28px;
        width: auto;
    }
}
.cta-actions .btn-call-big:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}
.cta-actions .btn-outline {
    width: 100%;
    max-width: 320px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta-actions .btn-outline:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
    .cta-actions .btn-outline {
        width: auto;
    }
}

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
    background: var(--footer-bg);
    padding: 40px 20px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    border-top: 1px solid var(--border-color);
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #FFD700, var(--red), #FFD700);
    background-size: 300% 100%;
    animation: waveDivider 4s ease-in-out infinite;
    animation-delay: 2.5s;
}
@media (min-width: 768px) {
    footer {
        grid-template-columns: repeat(3, 1fr);
        padding: 68px 64px 48px;
        gap: 48px;
    }
}
.footer-logo {
    font-family: var(--bebas);
    font-size: 30px;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-logo:hover {
    color: var(--red);
}
@media (min-width: 768px) {
    .footer-logo {
        font-size: 36px;
    }
}
.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .footer-tagline {
        font-size: 11px;
        margin-top: 12px;
    }
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    cursor: url('icon.png') 16 16, pointer;
}
.social-btn:hover {
    border-color: var(--red);
    background: var(--red);
    color: white;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 23, 29, 0.3);
}
.footer-col-title {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: url('icon.png') 16 16, pointer;
}
.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}
.footer-links .privacy-link {
    font-size: 10px;
    opacity: 0.6;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: 4px;
}
.footer-links .privacy-link:hover {
    opacity: 1;
    color: var(--red-light);
}

.footer-bottom {
    background: var(--footer-bg);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 64px;
        text-align: left;
    }
}
.footer-copy {
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}
.dev-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
@media (min-width: 768px) {
    .dev-credit {
        gap: 10px;
    }
}
.dev-credit-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
}
.dev-credit-label {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}
.dev-credit-name {
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: url('icon.png') 16 16, pointer;
}
@media (min-width: 768px) {
    .dev-credit-name {
        font-size: 16px;
    }
}
.dev-credit-name:hover {
    color: var(--red);
    text-shadow: 0 0 30px rgba(200, 23, 29, 0.3);
    transform: scale(1.04);
}
.dev-credit-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.6); }
}

/* ─── MODAL ──────────────────────────────────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 16px;
}
@media (min-width: 768px) {
    .modal {
        padding: 20px;
    }
}
.modal.open {
    opacity: 1;
}
.lightbox-content {
    position: relative;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transform: scale(0.94);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal.open .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    cursor: url('icon.png') 16 16, pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2100;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 24px;
    }
}
.lightbox-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 0 30px rgba(200, 23, 29, 0.3);
}
.lightbox-close:active {
    transform: rotate(90deg) scale(0.92);
}
.lightbox-img-wrap {
    width: 100%;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0303;
    border-radius: 4px 4px 0 0;
}
@media (min-width: 768px) {
    .lightbox-img-wrap {
        max-height: 78vh;
    }
}
.lightbox-img-wrap img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    animation: modalImgFade 0.5s ease both;
}
@keyframes modalImgFade {
    0% { opacity: 0; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}
@media (min-width: 768px) {
    .lightbox-img-wrap img {
        max-height: 78vh;
    }
}
.lightbox-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(13, 4, 4, 0.9);
    border-top: 2px solid var(--red);
    text-align: center;
    border-radius: 0 0 4px 4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 640px) {
    .lightbox-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 18px 24px;
    }
}
.lightbox-title {
    font-family: var(--bebas);
    font-size: 22px;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
@media (min-width: 640px) {
    .lightbox-title {
        font-size: 26px;
    }
}
.lightbox-order-btn {
    background: var(--red);
    color: white;
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 12px 24px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    text-align: center;
    border-radius: 2px;
    cursor: url('icon.png') 16 16, pointer;
}
@media (min-width: 640px) {
    .lightbox-order-btn {
        width: auto;
        padding: 10px 28px;
        font-size: 15px;
    }
}
.lightbox-order-btn:hover {
    background: var(--red-dark);
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(200, 23, 29, 0.3);
}
.lightbox-order-btn:active {
    transform: scale(0.94);
}

/* ─── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-stagger.visible>*:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible>*:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible>*:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible>*:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible>*:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible>*:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE NAV ──────────────────────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--bg-body);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
@media (min-width: 768px) {
    .mobile-nav {
        padding: 100px 36px 48px;
    }
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-color);
}
.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav-links a {
    display: block;
    padding: 18px 0;
    font-family: var(--bebas);
    font-size: 30px;
    letter-spacing: 4px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: url('icon.png') 16 16, pointer;
}
@media (min-width: 768px) {
    .mobile-nav-links a {
        font-size: 36px;
        padding: 22px 0;
    }
}
.mobile-nav-links a:hover {
    color: var(--red);
    padding-left: 12px;
    text-shadow: 0 0 30px rgba(200, 23, 29, 0.1);
}
.mobile-nav-links a:active {
    color: var(--red);
    padding-left: 12px;
}
.mobile-nav-bottom {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 768px) {
    .mobile-nav-bottom {
        margin-top: 40px;
        gap: 20px;
    }
}
.mobile-lang {
    display: flex;
    gap: 10px;
}
.mobile-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--red);
    color: white;
    font-family: var(--bebas);
    font-size: 18px;
    letter-spacing: 3px;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 56px;
    border-radius: 2px;
    cursor: url('icon.png') 16 16, pointer;
}
@media (min-width: 768px) {
    .mobile-cta-call {
        font-size: 20px;
        padding: 18px 28px;
    }
}
.mobile-cta-call:hover {
    background: var(--red-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(200, 23, 29, 0.3);
}
.mobile-cta-call:active {
    transform: scale(0.96);
}
.mobile-open-status {
    margin-top: 6px;
}

/* ─── OPEN BADGE ──────────────────────────────────────────────────────────── */
.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    font-weight: 700;
}
.open-badge.is-open {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.open-badge.is-closed {
    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.open-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.is-open .open-badge-dot {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
}
.is-closed .open-badge-dot {
    background: #ffffff;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08); }
}

/* ─── KEYFRAMES ────────────────────────────────────────────────────────────── */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE TWEAKS ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-title { font-size: clamp(48px, 18vw, 72px); }
    .hero-left { padding: 32px 16px 24px; min-height: 50vh; }
    .hero-right { height: 50vw; max-height: 320px; min-height: 200px; }
    .hero-sub { font-size: 12px; margin-top: 12px; }
    .hero-actions .btn-call-big { font-size: 12px; padding: 12px 20px; }
    .about-title { font-size: clamp(24px, 8vw, 32px); }
    .menu-title { font-size: clamp(32px, 10vw, 48px); }
    .cta-title { font-size: clamp(32px, 10vw, 48px); }
    .contact-us .contact-card { min-height: 140px; padding: 20px 16px; }
    .contact-us .contact-card .card-value { font-size: 17px; }
    .contact-us .contact-card .card-icon { font-size: 26px; }
    .contact-us .contact-card.contact-form-card { padding: 24px 16px; }
    .contact-us .contact-card.contact-form-card .form-title { font-size: 22px; }
}

/* ─── PRINT ────────────────────────────────────────────────────────────────── */
@media print {
    #particlesCanvas, .cursor-dot, .cursor-ring, .float-order, .ar-floating-btn, .hero-badge, #loadingScreen {
        display: none !important;
    }
    .hero { padding-top: 20px; }
    nav { position: static; backdrop-filter: none; background: white; border-bottom: 1px solid #ddd; }
    .contact-us .contact-banner { min-height: auto; padding: 40px 20px; background: var(--red) !important; }
    .contact-us .contact-banner::before { display: none; }
    .contact-us .contact-card { background: white !important; border: 1px solid #ddd !important; }
    .contact-us .contact-card .card-value { color: #222 !important; }
    .contact-us .contact-card .card-label { color: #888 !important; }
    .contact-us .contact-card .card-icon { filter: none !important; }
    .contact-us .contact-card.cta-card { background: #f5f5f5 !important; }
    .contact-us .contact-card.contact-form-card { background: #fafafa !important; }
    .contact-us .contact-card.contact-form-card .form-group input,
    .contact-us .contact-card.contact-form-card .form-group textarea {
        border-color: #ccc !important; color: #222 !important; background: #fff !important;
    }
    .contact-us .contact-card.contact-form-card .form-btn { background: #333 !important; color: #fff !important; }
}

/* ============================================================
   🎨 PREMIUM CSS EFFECTS (Ավելացված)
   ============================================================ */

/* ─── 1. GRADIENT TEXT ────────────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--red), #FFD700, var(--red), #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease-in-out infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── 2. GLOWING BORDER ───────────────────────────────────────────────────── */
.glow-border {
    position: relative;
}
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--red), #FFD700, var(--red), #FFD700);
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s ease-in-out infinite;
}
.glow-border:hover::before {
    opacity: 1;
}
@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── 3. SHIMMER ───────────────────────────────────────────────────────────── */
.shimmer {
    position: relative;
    overflow: hidden;
}
.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: rotate(25deg);
    animation: shimmerAnim 3s ease-in-out infinite;
}
@keyframes shimmerAnim {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

/* ─── 4. FLOAT ─────────────────────────────────────────────────────────────── */
.float {
    animation: floatAnim 3s ease-in-out infinite;
}
.float:nth-child(2) { animation-delay: 0.3s; }
.float:nth-child(3) { animation-delay: 0.6s; }
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─── 5. PULSE GLOW ───────────────────────────────────────────────────────── */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(200, 23, 29, 0.3); }
    50% { box-shadow: 0 0 50px rgba(200, 23, 29, 0.6); }
}

/* ─── 6. NEON TEXT ────────────────────────────────────────────────────────── */
.neon-text {
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.1);
    animation: neonPulse 3s ease-in-out infinite;
}
@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2), 0 0 40px rgba(255, 215, 0, 0.1); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.2); }
}

/* ─── 7. GRID BACKGROUND ──────────────────────────────────────────────────── */
.grid-bg {
    position: relative;
    background: 
        linear-gradient(rgba(200, 23, 29, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 23, 29, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}
.grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200, 23, 29, 0.05), transparent 70%);
    pointer-events: none;
}

/* ─── 8. IMAGE ZOOM ───────────────────────────────────────────────────────── */
.zoom-img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.zoom-img:hover {
    transform: scale(1.12);
}

/* ─── 9. MORPH BACKGROUND ─────────────────────────────────────────────────── */
.morph-bg {
    background: linear-gradient(135deg, var(--red), #6b0f12, var(--red), #8f0e12);
    background-size: 400% 400%;
    animation: morphBg 8s ease-in-out infinite;
}
@keyframes morphBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── 10. 3D TILT ON HOVER ────────────────────────────────────────────────── */
.tilt-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.tilt-3d:hover {
    transform: rotateX(4deg) rotateY(6deg) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.tilt-3d .tilt-child {
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}
.tilt-3d:hover .tilt-child {
    transform: translateZ(40px);
}

/* ─── 11. SCROLL INDICATOR ────────────────────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.model-wrapper {
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
}