* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --accent-red: #8B0000;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 50%, rgba(26, 26, 26, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%231a1a1a"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    position: relative;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    max-width: 180px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-text-wrapper {
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 25px;
    animation: slideDown 0.6s ease-out 0.1s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title-line {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 1px;
    animation: fadeInLeft 0.6s ease-out 0.2s both;
}

.title-main {
    animation: fadeInRight 0.6s ease-out 0.3s both;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-gray);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.btn-main {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sub {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-text-simple {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.pulse {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6), 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    animation: float2 15s ease-in-out infinite;
}

.circle-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 50%;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 40px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

/* Special Badge */
.special-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: slideInRight 0.6s ease-out, pulse 3s ease-in-out 2s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-time {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out 0.7s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-icon {
    color: var(--primary-gold);
    font-weight: 700;
}

.trust-text {
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(-45deg);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float1 25s ease-in-out infinite;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float2 20s ease-in-out infinite;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.about-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title.center {
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

.lead strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 45px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3.5rem;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.feature-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-highlight {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Experience Block */
.experience-block {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    border-radius: 30px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.experience-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.experience-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.experience-quote {
    margin-bottom: 40px;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--primary-gold);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 20px;
}

.experience-quote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
}

.quote-author {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.experience-cta .btn {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Menu Section */
.menu {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.menu-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.02) 35px, rgba(212, 175, 55, 0.02) 70px);
    pointer-events: none;
}

.menu-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.menu-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

/* Menu Filter */
.menu-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 80px;
    font-weight: 300;
}

.contact-header .section-subtitle {
    margin-bottom: 0;
    line-height: 1.6;
}

.menu-category {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    position: relative;
    padding: 0 30px;
}

.category-title::before,
.category-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-gold));
}

.category-title::before {
    right: 100%;
    transform: translateY(-50%);
}

.category-title::after {
    left: 100%;
    transform: translateY(-50%) scaleX(-1);
}

.category-decoration {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 30px;
}

.menu-grid.shots {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-grid.mocktails {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.menu-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(45, 45, 45, 0.8) 100%);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.item-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-item:hover .item-glow {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.menu-item.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(45, 45, 45, 0.9) 100%);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.menu-item.featured::after {
    content: '⭐';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.menu-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.ingredients {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item-badge {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.item-rating {
    color: var(--primary-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.item-strength {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.menu-item.shot {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(45, 45, 45, 0.8) 100%);
    border-color: rgba(139, 0, 0, 0.3);
}

.menu-item.shot:hover {
    border-color: rgba(139, 0, 0, 0.6);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.shot-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.shot-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(139, 0, 0, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 15px;
}

.mocktail-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #81C784;
}

/* Menu CTA */
.menu-cta {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border-radius: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.menu-cta-content {
    position: relative;
    z-index: 2;
}

.menu-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.menu-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.menu-cta .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-weight: 300;
}

.btn-large {
    padding: 22px 60px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.contact-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float1 30s ease-in-out infinite;
}

.contact-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: float2 25s ease-in-out infinite;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.contact-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(45, 45, 45, 0.8) 100%);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-gold);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-text {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.phone-number {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.phone-number:hover {
    color: var(--primary-gold);
    transform: scale(1.05);
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-link:hover {
    gap: 10px;
    text-decoration: underline;
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 5px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.hours-row.highlight-hours {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hours-row .day {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.hours-row .time {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.highlight-hours .time {
    color: var(--primary-gold);
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.feature-tag {
    padding: 8px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-cta {
    margin-top: 30px;
}

.contact-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
}

.map-wrapper {
    position: relative;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    pointer-events: none;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-text strong {
    display: block;
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.badge-text span {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* How to Reach Section */
.reach-section {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.reach-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 50px;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reach-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(45, 45, 45, 0.5) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.reach-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.reach-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.reach-item:hover .reach-icon {
    transform: scale(1.2) rotate(5deg);
}

.reach-item h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.reach-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--secondary-dark);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-warning {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 20px;
}

/* Responsive */

/* Tablets and medium devices */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px;
    }

    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-wrapper {
        position: static;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 100svh;
        padding: 20px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        padding: 18px 35px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .special-badge {
        top: 15px;
        right: 15px;
        padding: 10px 20px;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .badge-time {
        font-size: 0.7rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }

    .float-circle {
        display: none;
    }

    .about,
    .menu,
    .cta-section,
    .contact {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .features {
        gap: 25px;
    }

    .feature-item {
        padding: 35px 25px;
    }

    .feature-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .feature-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .experience-block {
        padding: 40px 25px;
        margin-top: 60px;
    }

    .quote-icon {
        font-size: 4rem;
    }

    .experience-quote p {
        font-size: 1.1rem;
    }

    .menu-grid,
    .menu-grid.shots,
    .menu-grid.mocktails {
        grid-template-columns: 1fr;
    }

    .menu-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .category-header {
        flex-direction: column;
        gap: 15px;
    }

    .category-title::before,
    .category-title::after {
        display: none;
    }

    .menu-cta {
        padding: 40px 25px;
        margin-top: 60px;
    }

    .menu-cta h3 {
        font-size: 1.8rem;
    }

    .menu-cta p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrapper {
        position: static;
    }

    .contact-info {
        padding: 35px 25px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .phone-number {
        font-size: 1.1rem;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .map-container {
        height: 350px;
    }

    .location-badge {
        padding: 12px 20px;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .reach-title {
        font-size: 2rem;
    }

    .reach-grid {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        display: none;
    }

    .category-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        max-width: 140px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-line {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .btn-icon {
        font-size: 1.1rem;
    }

    .btn-main {
        font-size: 0.9rem;
    }

    .btn-sub {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-number {
        font-size: 2rem;
    }

    .experience-block {
        padding: 30px 20px;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .experience-quote p {
        font-size: 1rem;
    }

    .menu-item {
        padding: 25px 20px;
    }

    .menu-item h4 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .menu-cta h3 {
        font-size: 1.5rem;
    }

    .menu-cta p {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .reach-title {
        font-size: 1.8rem;
    }

    .reach-item {
        padding: 30px 20px;
    }

    .reach-icon {
        font-size: 3rem;
    }

    .reach-item h4 {
        font-size: 1.2rem;
    }

    .reach-item p {
        font-size: 0.9rem;
    }

    .location-badge {
        padding: 10px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .badge-icon {
        font-size: 1.3rem;
    }

    .badge-text strong {
        font-size: 0.9rem;
    }

    .badge-text span {
        font-size: 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .title-line {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.85rem;
    }

    .special-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
    }

    .hero-stats {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}