/* ==========================================================================
   CSS Variables & Reset - ULTRA PREMIUM REDESIGN v50.0
   ========================================================================== */
:root {
    /* Ultra Premium Dark Palette - Enhanced */
    --color-bg: #010101; /* Ultra deep black */
    --color-bg-alt: #060504;
    --color-surface: #0e0d0b;
    --color-surface-light: #1a1816;
    --color-surface-glass: rgba(18, 16, 14, 0.9);
    
    --color-text: #fffefb; /* Pure warm white */
    --color-text-muted: #e8e4de;
    --color-text-dim: #b0a89e;
    
    --color-accent: #f7d468; /* Rich gold - brighter */
    --color-accent-hover: #ffe89a;
    --color-accent-light: rgba(247, 212, 104, 0.15);
    --color-accent-glow: rgba(247, 212, 104, 0.6);
    --color-accent-subtle: rgba(247, 212, 104, 0.1);
    
    --color-secondary: #dcb892; /* Warm coffee - richer */
    --color-secondary-light: #f2d8be;
    --color-secondary-dark: #b08d68;
    
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-strong: rgba(255, 255, 255, 0.15);
    --color-border-glass: rgba(255, 255, 255, 0.12);
    --color-border-accent: rgba(247, 212, 104, 0.25);
    
    --color-gradient-primary: linear-gradient(135deg, #f7d468 0%, #dcb892 35%, #b08d68 100%);
    --color-gradient-primary-hover: linear-gradient(135deg, #ffe89a 0%, #f2d8be 35%, #d4b08a 100%);
    --color-gradient-dark: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, #010101 100%);
    --color-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --color-gradient-glass-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    --color-gradient-hero: radial-gradient(ellipse at 70% 30%, rgba(247, 212, 104, 0.18) 0%, transparent 50%),
                           radial-gradient(ellipse at 30% 70%, rgba(220, 184, 146, 0.14) 0%, transparent 50%),
                           radial-gradient(ellipse at 90% 80%, rgba(176, 141, 104, 0.1) 0%, transparent 40%);
    --color-gradient-surface: linear-gradient(180deg, rgba(26, 24, 22, 0.7) 0%, rgba(14, 13, 11, 0.9) 100%);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-decorative: 'Playfair Display', serif;

    --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);

    --radius-sm: 12px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-xl: 64px;
    --radius-full: 9999px;

    --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-md: 0 24px 64px rgba(0, 0, 0, 0.85);
    --shadow-lg: 0 48px 120px rgba(0, 0, 0, 1);
    --shadow-glow: 0 0 120px rgba(247, 212, 104, 0.3);
    --shadow-glow-strong: 0 0 180px rgba(247, 212, 104, 0.45);
    --shadow-glow-subtle: 0 0 50px rgba(247, 212, 104, 0.12);
    --shadow-inner: inset 0 2px 6px rgba(0, 0, 0, 0.4);
    
    --glass-blur: blur(32px);
    --glass-border: 1px solid var(--color-border-glass);
    --glass-border-accent: 1px solid var(--color-border-accent);
}

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

html {
    scroll-behavior: initial;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb {
    background: var(--color-surface-light);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
    Typography - ULTRA PREMIUM v2.0
    ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-text);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

h2 {
    font-size: clamp(60px, 9vw, 104px);
    background: linear-gradient(135deg, #fff 0%, var(--color-secondary-light) 35%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

h3 {
    font-size: clamp(40px, 5.5vw, 64px);
    background: linear-gradient(135deg, #fff 0%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: var(--color-text-muted);
    font-family: var(--font-body);
    line-height: 1.9;
    font-weight: 350;
    font-size: 1.18rem;
    max-width: 65ch;
}

.lead {
    font-size: 1.4rem;
    color: var(--color-text);
    font-weight: 350;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 24px;
    opacity: 0.9;
}

.section-header__title {
    margin-bottom: 32px;
    background: linear-gradient(135deg, #fff 0%, var(--color-secondary-light) 50%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-header__text {
    max-width: 640px;
    font-size: 18px;
    opacity: 0.8;
}

/* ==========================================================================
    Buttons - ULTRA PREMIUM v2.0
    ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 44px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn--primary {
    background: var(--color-gradient-primary);
    color: var(--color-bg);
    border: none;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.3), var(--shadow-glow-subtle);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gradient-primary-hover);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn--primary:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: var(--shadow-glow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:hover::after {
    width: 350px;
    height: 350px;
}

.btn--primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.btn--outline:hover {
    background: var(--color-gradient-glass-hover);
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-inner);
}

.btn--outline:active {
    transform: translateY(-1px);
}

.btn--full {
    width: 100%;
}

.btn--sm {
    padding: 16px 32px;
    font-size: 13px;
}

.btn--lg {
    padding: 28px 56px;
    font-size: 16px;
}

/* ==========================================================================
    Preloader - ULTRA PREMIUM
    ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__content {
    text-align: center;
}

.preloader__logo {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 32px;
    letter-spacing: 0.08em;
    animation: preloaderPulse 2s ease-in-out infinite;
    text-shadow: 0 0 40px var(--color-accent-glow);
}

.preloader__line {
    width: 160px;
    height: 2px;
    background: var(--color-border);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: var(--radius-full);
}

.preloader__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--color-gradient-primary);
    animation: preloaderLoading 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

@keyframes preloaderPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.98);
    }
}

@keyframes preloaderLoading {
    0% {
        transform: translateX(-100%);
        width: 30%;
    }
    50% {
        width: 60%;
    }
    100% {
        transform: translateX(400%);
        width: 30%;
    }
}

/* ==========================================================================
   Header - ULTRA PREMIUM
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--color-surface-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    padding: 18px 0;
    box-shadow: var(--shadow-md), 0 0 60px rgba(0, 0, 0, 0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
}

.header__logo:hover {
    color: var(--color-accent);
}

.header__logo-icon {
    font-size: 26px;
    color: var(--color-accent);
    filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 44px;
    list-style: none;
}

.header__link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    position: relative;
    padding: 10px 0;
    transition: var(--transition-fast);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gradient-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 12px var(--color-accent-glow);
    border-radius: var(--radius-full);
}

.header__link:hover {
    color: var(--color-accent);
    text-shadow: 0 0 15px var(--color-accent-glow);
}

.header__link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 14px 32px;
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.header__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gradient-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.header__cta:hover {
    color: var(--color-bg);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.header__cta:hover::before {
    left: 0;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__burger span {
    width: 28px;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition-smooth);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu__link {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-text);
}

.mobile-menu__link:hover {
    color: var(--color-accent);
    font-style: italic;
}

/* ==========================================================================
    Hero Section - ULTRA PREMIUM v2.0
    ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 200px 0 140px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gradient-hero);
}

.hero__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.6;
    mix-blend-mode: screen;
    animation: glowFloat 12s ease-in-out infinite;
}

.hero__bg-glow--1 {
    width: 1000px;
    height: 1000px;
    top: -400px;
    right: -300px;
    background: radial-gradient(circle, rgba(247, 212, 104, 0.2), transparent 70%);
    animation-delay: 0s;
}

.hero__bg-glow--2 {
    width: 800px;
    height: 800px;
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle, rgba(220, 184, 146, 0.15), transparent 70%);
    animation-delay: -4s;
}

.hero__bg-glow--3 {
    width: 600px;
    height: 600px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(176, 141, 104, 0.12), transparent 60%);
    animation-delay: -8s;
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(35px, -25px) scale(1.06);
        opacity: 0.7;
    }
    66% {
        transform: translate(-25px, 20px) scale(0.94);
        opacity: 0.5;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero__text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__badge-wrapper {
    display: inline-flex;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--color-gradient-glass);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.hero__badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4),
                    0 0 0 0 rgba(230, 193, 88, 0.2);
    }
    70% { 
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0),
                    0 0 0 20px rgba(230, 193, 88, 0);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0),
                    0 0 0 0 rgba(230, 193, 88, 0);
    }
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: -4px;
}

.hero__title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(60px, 9vw, 130px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #fff 0%, #f7d468 50%, #b08d68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 15px rgba(247, 212, 104, 0.15));
}

.hero__title-accent {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(135deg, #f7d468 0%, #fff 50%, #f7d468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
    padding-left: 0.1em;
    position: relative;
    display: inline-block;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
    opacity: 0.8;
    filter: blur(1px);
    transform: scaleX(0.8);
}

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

.hero__text {
    font-size: clamp(16px, 1.3vw, 20px);
    max-width: 520px;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.01em;
    margin-top: 10px;
}

.hero__actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Refined CSS Cup */
.hero__visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.hero__cup-scene {
    position: relative;
    width: 280px;
    height: 280px;
    animation: float 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(-5deg) rotateY(5deg); }
}

.hero__cup-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(247, 212, 104, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(35px);
}

.hero__cup-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
}

.hero__cup {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__cup-body {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 120px;
    background: linear-gradient(135deg, #2c2621 0%, #1a1613 100%);
    border-radius: 8px 8px 70px 70px;
    box-shadow: 
        inset -12px -12px 25px rgba(0,0,0,0.9),
        inset 12px 12px 25px rgba(255,255,255,0.05),
        20px 30px 50px rgba(0,0,0,0.7),
        0 0 40px rgba(247, 212, 104, 0.12);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    z-index: 2;
}

.hero__cup-liquid {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 22px;
    background: radial-gradient(circle at 30% 30%, #634832 0%, #3d2b1f 40%, #1a1108 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 12px rgba(0,0,0,0.9),
        0 2px 4px rgba(255,255,255,0.1);
    border: 2px solid #2c2621;
    overflow: hidden;
}

.hero__cup-liquid::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 20%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(2px);
    transform: rotate(-20deg);
}

.hero__cup-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 1px solid rgba(247, 212, 104, 0.2);
    animation: ripple 4s ease-out infinite;
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.hero__cup-handle {
    position: absolute;
    right: -20px;
    top: 30px;
    width: 50px;
    height: 75px;
    border: 14px solid #2c2621;
    border-left: none;
    border-radius: 0 45px 45px 0;
    box-shadow: 
        12px 12px 30px rgba(0,0,0,0.6),
        inset -5px 0 10px rgba(255,255,255,0.03);
    z-index: 1;
}

.hero__cup-saucer {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 28px;
    background: linear-gradient(135deg, #2c2621 0%, #14110f 100%);
    border-radius: 50%;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.9),
        inset 0 6px 12px rgba(255,255,255,0.06),
        inset 0 -4px 8px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.03);
    z-index: 1;
}

.hero__cup-steam {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 90px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 0;
}

.hero__steam {
    width: 12px;
    height: 65px;
    background: linear-gradient(to top, rgba(247, 212, 104, 0.2), rgba(255, 255, 255, 0.1) 50%, transparent);
    border-radius: 50%;
    filter: blur(10px);
    animation: steamRise 5s ease-in-out infinite;
    opacity: 0;
}

.hero__steam--1 { animation-delay: 0s; width: 15px; }
.hero__steam--2 { animation-delay: 2s; height: 85px; width: 10px; }
.hero__steam--3 { animation-delay: 3.5s; width: 12px; }

@keyframes steamRise {
    0% { transform: translateY(30px) scaleX(1) rotate(0deg); opacity: 0; }
    20% { opacity: 0.6; }
    50% { transform: translateY(-20px) scaleX(1.5) rotate(5deg); opacity: 0.4; }
    100% { transform: translateY(-60px) scaleX(2.5) rotate(-5deg); opacity: 0; }
}

.hero__floating {
    position: absolute;
    color: var(--color-accent);
    font-size: 20px;
    opacity: 0.3;
    filter: blur(1px);
    animation: floatAround 10s ease-in-out infinite;
}

.hero__floating--1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 28px; }
.hero__floating--2 { top: 25%; right: 10%; animation-delay: 3s; font-size: 32px; }
.hero__floating--3 { bottom: 15%; left: 15%; animation-delay: 6s; font-size: 24px; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.3; }
    33% { transform: translate(25px, -35px) rotate(20deg) scale(1.1); opacity: 0.5; }
    66% { transform: translate(-15px, 15px) rotate(-10deg) scale(0.9); opacity: 0.2; }
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero__scroll-text {
    font-size: 10px;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.hero__scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--color-accent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}

/* ==========================================================================
   Glass Effects - ULTRA PREMIUM v2.0
   ========================================================================== */
.glass-card {
    background: var(--color-gradient-glass);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md), var(--shadow-inner);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.glass-card:hover {
    background: var(--color-gradient-glass-hover);
    border-color: var(--color-accent);
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.glass-card:hover::before {
    opacity: 1;
}

.glow-text {
    text-shadow: 0 0 30px var(--color-accent-glow), 0 0 60px rgba(247, 212, 104, 0.25);
}

/* ==========================================================================
    Menu Section - ULTRA PREMIUM v2.0
    ========================================================================== */
.menu {
    padding: 240px 0;
    background: var(--color-bg-alt);
    position: relative;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 160px;
}

.menu__category-title {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--color-accent);
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(247, 212, 104, 0.4);
    position: relative;
}

.menu__category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--color-gradient-primary);
    border-radius: var(--radius-full);
}

.menu__category-title i {
    font-size: 32px;
    opacity: 0.8;
    color: var(--color-text-muted);
}

.menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.menu__list-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
    padding-left: 28px;
    border-left: 2px solid transparent;
    position: relative;
}

.menu__list-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color-gradient-primary);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

.menu__list-item:hover {
    transform: translateX(14px);
    border-left-color: var(--color-accent);
}

.menu__list-item:hover::before {
    height: 100%;
}

.menu__list-info {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.menu__list-name {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
    position: relative;
}

.menu__list-name::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gradient-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px var(--color-accent-glow);
    border-radius: var(--radius-full);
}

.menu__list-item:hover .menu__list-name {
    color: var(--color-accent);
    text-shadow: 0 0 20px var(--color-accent-glow);
}

.menu__list-item:hover .menu__list-name::before {
    width: 100%;
}

.menu__list-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--color-border-strong);
    margin: 0 28px;
    opacity: 0.5;
    position: relative;
    top: -10px;
}

.menu__list-price {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
    text-shadow: 0 0 12px var(--color-accent-glow);
}

.menu__list-desc {
    font-size: 17px;
    color: var(--color-text-dim);
    max-width: 90%;
    line-height: 1.75;
}

/* Magnetic Button Effect */
.btn--magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   About Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.about {
    padding: 200px 0;
    position: relative;
}

.about__tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about__tab {
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about__tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gradient-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.about__tab:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

.about__tab:hover::before {
    left: 0;
}

.about__tab.active {
    background: var(--color-gradient-primary);
    border-color: transparent;
    color: var(--color-bg);
    box-shadow: var(--shadow-glow);
}

.about__tab-content {
    display: none;
}

.about__tab-content.active {
    display: block;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
    align-items: center;
}

.about__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 32px;
}

.about__title {
    margin-bottom: 40px;
}

.about__text {
    font-size: 18px;
    margin-bottom: 32px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid var(--color-border);
}

.about__feature {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.about__feature-icon {
    width: 64px;
    height: 64px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.about__feature:hover .about__feature-icon {
    border-color: var(--color-accent);
    box-shadow: 0 0 25px var(--color-accent-glow);
    transform: scale(1.15);
}

.about__feature-content h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 8px;
}

.about__feature-content p {
    font-size: 16px;
    color: var(--color-text-dim);
}

.about__image {
    position: relative;
}

.about__image-wrapper {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__image-wrapper:hover .about__img {
    transform: scale(1.1);
}

.about__stats {
    position: absolute;
    bottom: -56px;
    left: -56px;
    background: var(--color-gradient-glass);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 56px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    z-index: 2;
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-accent);
    line-height: 1;
    text-shadow: 0 0 25px var(--color-accent-glow);
}

.about__stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-dim);
}

/* ==========================================================================
   Gallery Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.gallery {
    padding: 180px 0;
    background: var(--color-bg-alt);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 28px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 10, 9, 0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 36px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery__label {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-text);
    transform: translateY(24px);
    transition: var(--transition-smooth);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.08);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__item:hover .gallery__label {
    transform: translateY(0);
}

/* ==========================================================================
   Contact Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.contact {
    padding: 180px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.contact__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 28px;
}

.contact__title {
    margin-bottom: 28px;
}

.contact__text {
    margin-bottom: 56px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 56px;
}

.contact__detail {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 20px;
}

.contact__detail-content h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 6px;
}

.contact__detail-content p {
    font-size: 16px;
    color: var(--color-text-dim);
}

.contact__social {
    display: flex;
    gap: 20px;
}

.contact__social-link {
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 20px;
}

.contact__social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
}

.contact__form-wrapper {
    background: var(--color-gradient-glass);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 36px;
    text-align: center;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-dim);
}

.form-input {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 18px;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status {
    text-align: center;
    font-size: 15px;
    min-height: 24px;
}

.form-status.success { color: #10b981; }
.form-status.error { color: #ef4444; }

/* ==========================================================================
   Footer - ULTRA PREMIUM v2.0
   ========================================================================== */
.footer {
    padding: 100px 0 50px;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin-bottom: 80px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.footer__logo-icon {
    color: var(--color-accent);
}

.footer__tagline {
    font-size: 15px;
    max-width: 320px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.footer__links-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 28px;
    color: var(--color-accent);
}

.footer__links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links-list a {
    font-size: 15px;
    color: var(--color-text-muted);
}

.footer__links-list a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-dim);
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s ease;
    filter: blur(8px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@keyframes floatSubtle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes pulseSoft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px var(--color-accent-glow); }
    50% { box-shadow: 0 0 60px var(--color-accent-glow); }
}

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

@keyframes borderGlow {
    0%, 100% { border-color: rgba(240, 199, 94, 0.3); }
    50% { border-color: rgba(240, 199, 94, 0.6); }
}

.float-animate {
    animation: floatSubtle 6s ease-in-out infinite;
}

.pulse-animate {
    animation: pulseSoft 3s ease-in-out infinite;
}

.glow-animate {
    animation: glowPulse 2s ease-in-out infinite;
}

.shimmer-animate {
    background: linear-gradient(90deg, transparent, rgba(240, 199, 94, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.border-glow-animate {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.custom-cursor-follower {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(240, 199, 94, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    box-shadow: 0 0 30px rgba(240, 199, 94, 0.2);
}

/* ==========================================================================
   Offers Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.offers {
    padding: 180px 0;
    background: var(--color-bg);
    position: relative;
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.offers__item {
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.offers__item:hover {
    transform: translateY(-10px);
}

.offers__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-gradient-primary);
    color: var(--color-bg);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.offers__icon {
    width: 88px;
    height: 88px;
    background: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 36px;
    color: var(--color-accent);
    border: 2px solid var(--color-border);
    transition: var(--transition-smooth);
}

.offers__item:hover .offers__icon {
    border-color: var(--color-accent);
    box-shadow: 0 0 25px var(--color-accent-glow);
}

.offers__title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-text);
    margin-bottom: 18px;
}

.offers__desc {
    font-size: 16px;
    color: var(--color-text-dim);
    line-height: 1.65;
    margin-bottom: 28px;
}

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

.offers__valid {
    font-size: 14px;
    color: var(--color-text-dim);
}

/* ==========================================================================
   Team Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.team {
    padding: 180px 0;
    background: var(--color-bg-alt);
    position: relative;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.team__item {
    text-align: center;
    transition: var(--transition-smooth);
}

.team__item:hover {
    transform: translateY(-10px);
}

.team__image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-border);
    transition: var(--transition-smooth);
}

.team__item:hover .team__image-wrapper {
    border-color: var(--color-accent);
    box-shadow: 0 0 35px var(--color-accent-glow);
}

.team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.team__item:hover .team__img {
    transform: scale(1.15);
}

.team__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 4, 3, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.team__item:hover .team__overlay {
    opacity: 1;
}

.team__social {
    display: flex;
    gap: 14px;
}

.team__social-link {
    width: 44px;
    height: 44px;
    background: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 18px;
    transition: var(--transition-fast);
}

.team__social-link:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.team__content {
    padding: 0 24px;
}

.team__name {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-text);
    margin-bottom: 10px;
}

.team__role {
    display: block;
    font-size: 15px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.team__desc {
    font-size: 15px;
    color: var(--color-text-dim);
    line-height: 1.65;
}

/* ==========================================================================
   Reviews Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.reviews {
    padding: 180px 0;
    background: var(--color-bg);
    position: relative;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.reviews__item {
    padding: 48px;
    transition: var(--transition-smooth);
}

.reviews__item:hover {
    transform: translateY(-10px);
}

.reviews__stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    color: var(--color-accent);
    font-size: 18px;
}

.reviews__text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    font-style: italic;
}

.reviews__author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews__avatar {
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 20px;
}

.reviews__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reviews__name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-text);
}

.reviews__date {
    font-size: 14px;
    color: var(--color-text-dim);
}

/* ==========================================================================
   Menu Gallery Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.menu-gallery {
    padding: 180px 0;
    background: var(--color-bg);
    position: relative;
}

.menu-gallery__filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 72px;
    flex-wrap: wrap;
}

.menu-gallery__filter {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-gallery__filter:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.menu-gallery__filter.active {
    background: var(--color-gradient-primary);
    border-color: transparent;
    color: var(--color-bg);
}

.menu-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 36px;
}

.menu-gallery__item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.menu-gallery__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.menu-gallery__image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.menu-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-gallery__item:hover .menu-gallery__img {
    transform: scale(1.15);
}

.menu-gallery__overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.menu-gallery__badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-surface-glass);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.menu-gallery__content {
    padding: 28px;
}

.menu-gallery__name {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.menu-gallery__desc {
    font-size: 15px;
    color: var(--color-text-dim);
    line-height: 1.65;
    margin-bottom: 24px;
}

.menu-gallery__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-gallery__price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-accent);
    font-weight: 500;
}

.menu-gallery__btn {
    padding: 12px 24px;
    font-size: 13px;
}

/* ==========================================================================
   Tables Section - ULTRA PREMIUM v2.0
   ========================================================================== */
.tables {
    padding: 180px 0;
    background: var(--color-bg-alt);
    position: relative;
}

.tables__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 72px;
    align-items: start;
}

.tables__map {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--color-border);
}

.tables__floor {
    margin-bottom: 48px;
}

.tables__floor:last-child {
    margin-bottom: 0;
}

.tables__floor-label {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-accent);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}

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

.tables__table {
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tables__table:hover {
    transform: scale(1.06);
}

.tables__table[data-status="reserved"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.tables__table[data-status="reserved"]:hover {
    transform: none;
}

.tables__table.selected .tables__table-top {
    box-shadow: 0 0 25px var(--color-accent-glow);
    border-color: var(--color-accent);
}

.tables__table-visual {
    position: relative;
    margin-bottom: 14px;
}

.tables__table-top {
    width: 100%;
    height: 68px;
    background: linear-gradient(135deg, #3a3530 0%, #2a2520 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.tables__table[data-status="available"] .tables__table-top {
    border-color: rgba(16, 185, 129, 0.35);
}

.tables__table[data-status="reserved"] .tables__table-top {
    background: linear-gradient(135deg, #4a3530 0%, #3a2520 100%);
    border-color: rgba(239, 68, 68, 0.35);
}

.tables__table-legs {
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
}

.tables__table-leg {
    width: 10px;
    height: 24px;
    background: #2a2520;
    border-radius: 0 0 5px 5px;
}

.tables__table-info {
    text-align: center;
}

.tables__table-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.tables__table-seats {
    font-size: 13px;
    color: var(--color-text-dim);
}

/* Bar Area */
.tables__bar {
    position: relative;
    height: 88px;
    background: linear-gradient(135deg, #3a3530 0%, #2a2520 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.tables__bar-counter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 212, 104, 0.12) 50%, transparent 100%);
    border-radius: 8px;
}

.tables__bar-stools {
    display: flex;
    gap: 20px;
    z-index: 1;
}

.tables__bar-stool {
    width: 28px;
    height: 28px;
    background: #4a4540;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

/* Legend */
.tables__legend {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.tables__legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-dim);
}

.tables__legend-color {
    width: 18px;
    height: 18px;
    border-radius: 5px;
}

.tables__legend-color--available {
    background: rgba(16, 185, 129, 0.35);
    border: 2px solid rgba(16, 185, 129, 0.55);
}

.tables__legend-color--reserved {
    background: rgba(239, 68, 68, 0.35);
    border: 2px solid rgba(239, 68, 68, 0.55);
}

.tables__legend-color--selected {
    background: rgba(247, 212, 104, 0.35);
    border: 2px solid rgba(247, 212, 104, 0.55);
}

/* Booking Card */
.tables__booking-card {
    padding: 48px;
    position: sticky;
    top: 140px;
}

.tables__booking-title {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--color-text);
    margin-bottom: 28px;
    text-align: center;
}

.tables__booking-selected {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid var(--color-border);
}

.tables__booking-selected p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.tables__booking-selected p:last-child {
    margin-bottom: 0;
}

.tables__booking-selected span {
    color: var(--color-accent);
    font-weight: 500;
}

.tables__booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#tableBookBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Responsive - ULTRA PREMIUM v2.0
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .hero__text-content {
        align-items: center;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .menu__grid, .about__grid, .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about__image {
        order: -1;
    }
    
    .about__stats {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: space-around;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
    }

    /* Menu Gallery */
    .menu-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tables */
    .tables__content {
        grid-template-columns: 1fr;
    }

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

    .tables__booking-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .header__nav, .header__cta {
        display: none;
    }
    
    .header__burger {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }
    
    .hero__title-line {
        font-size: clamp(48px, 12vw, 72px);
        line-height: 0.9;
    }
    
    .hero__title-accent::after {
        display: none;
    }
    
    .hero__content {
        gap: 60px;
    }
    
    .hero__visual {
        height: 400px;
    }
    
    .hero__cup-scene {
        width: 250px;
        height: 250px;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header__title {
        font-size: clamp(40px, 8vw, 56px);
    }
    
    .menu {
        padding: 100px 0;
    }
    
    .menu__grid {
        gap: 60px;
    }
    
    .menu__category-title {
        font-size: 36px;
    }
    
    .menu__list-name {
        font-size: 26px;
    }
    
    .about, .gallery, .contact {
        padding: 100px 0;
    }
    
    .about__grid, .contact__grid {
        gap: 60px;
    }
    
    .about__stats {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 40px;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        padding: 30px;
    }
    
    .about__stat-number {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact__form-wrapper {
        padding: 32px 24px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 16px;
    }
    
    .gallery__item--large, .gallery__item--wide {
        grid-column: span 1;
    }
    
    .footer__top {
        gap: 40px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Adjust glass effects for mobile */
    .glass-card {
        backdrop-filter: blur(10px);
    }
    
    .hero__badge {
        backdrop-filter: blur(10px);
    }

    /* Menu Gallery Mobile */
    .menu-gallery {
        padding: 100px 0;
    }

    .menu-gallery__filters {
        gap: 8px;
    }

    .menu-gallery__filter {
        padding: 10px 20px;
        font-size: 13px;
    }

    .menu-gallery__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .menu-gallery__image-wrapper {
        height: 200px;
    }

    /* Reviews Mobile */
    .reviews {
        padding: 100px 0;
    }

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

    .reviews__item {
        padding: 24px;
    }

    /* About Tabs Mobile */
    .about__tabs {
        gap: 8px;
    }

    .about__tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Team Mobile */
    .team {
        padding: 100px 0;
    }

    .team__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team__image-wrapper {
        width: 160px;
        height: 160px;
    }

    /* Offers Mobile */
    .offers {
        padding: 100px 0;
    }

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

    .offers__item {
        padding: 24px;
    }

    .offers__footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    /* Tables Mobile */
    .tables {
        padding: 100px 0;
    }

    .tables__map {
        padding: 24px;
    }

    .tables__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tables__table-top {
        height: 50px;
    }

    .tables__legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .tables__booking-card {
        padding: 24px;
    }
}

/* ==========================================================================
   History Section - Timeline
   ========================================================================== */
.history {
    padding: 160px 0;
    background: var(--color-bg);
    position: relative;
}

.history__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.history__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
    transform: translateX(-50%);
}

.history__item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.history__item:nth-child(odd) {
    flex-direction: row-reverse;
}

.history__item:nth-child(odd) .history__content {
    margin-right: 60px;
    text-align: right;
}

.history__item:nth-child(even) .history__content {
    margin-left: 60px;
}

.history__year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--color-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-bg);
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.history__content {
    flex: 1;
    max-width: 350px;
    padding: 32px;
}

.history__icon {
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.history__item:hover .history__icon {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
    transform: scale(1.1) rotate(10deg);
}

.history__title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text);
    margin-bottom: 12px;
}

.history__text {
    font-size: 15px;
    color: var(--color-text-dim);
    line-height: 1.6;
}

/* ==========================================================================
   Morphing Animation for "чашке"
   ========================================================================== */
.hero__title-morph {
    position: relative;
    display: inline-block;
    animation: morphText 4s ease-in-out infinite;
}

@keyframes morphText {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
    25% {
        transform: scale(1.05) rotate(1deg);
        filter: blur(0.5px);
    }
    50% {
        transform: scale(1.02) rotate(-0.5deg);
        filter: blur(0px);
    }
    75% {
        transform: scale(1.08) rotate(0.5deg);
        filter: blur(0.3px);
    }
}

/* ==========================================================================
   Ripple Effect
   ========================================================================== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 208, 96, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   Animated Icons with Micro-interactions
   ========================================================================== */
.animated-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.animated-icon:hover {
    transform: scale(1.2) rotate(15deg);
}

.animated-icon:active {
    transform: scale(0.9);
}

/* Icon bounce animation */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-bounce:hover {
    animation: iconBounce 0.5s ease-in-out;
}

/* Icon pulse animation */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.icon-pulse:hover {
    animation: iconPulse 0.4s ease-in-out;
}

/* Icon shake animation */
@keyframes iconShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.icon-shake:hover {
    animation: iconShake 0.3s ease-in-out;
}

/* Icon float animation */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.icon-float {
    animation: iconFloat 3s ease-in-out infinite;
}

/* Icon glow animation */
@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--color-accent-glow));
    }
    50% {
        filter: drop-shadow(0 0 20px var(--color-accent-glow));
    }
}

.icon-glow:hover {
    animation: iconGlow 1s ease-in-out infinite;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__title-line {
        font-size: clamp(40px, 14vw, 56px);
    }
    
    .hero__text {
        font-size: 16px;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 13px;
    }
    
    .menu__category-title {
        font-size: 30px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .menu__list-name {
        font-size: 22px;
    }
    
    .menu__list-price {
        font-size: 16px;
    }
    
    .about__stats {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    
    .about__stat {
        align-items: center;
    }
    
    .contact__detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .contact__detail-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mobile-menu__link {
        font-size: 32px;
    }
    
    .preloader__logo {
        font-size: 36px;
    }
}
