/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
    /* Bold Black & Gold - Luxe NYC Bartender Aesthetic */
    --primary-color: #000000;         /* Pure black - bold & editorial */
    --secondary-color: #B8956A;       /* Natural gold - luxe accent */
    --accent-color: #9C7E4A;          /* Deep bronze gold - sophisticated */
    --dark-accent: #0a0a0a;           /* Deep black */
    --light-accent: #f5f5f0;          /* Warm off-white */
    --text-dark: #000000;             /* Black text */
    --text-light: #666666;            /* Medium gray */
    --bg-light: #fafafa;              /* Off-white background */
    --bg-white: #ffffff;              /* Pure white */
    --border-color: #e0e0e0;          /* Light gray border */
    --gold-accent: #B8956A;           /* Natural gold for highlights */

    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Source Sans Pro', sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

/* ========================================
   Utility Classes
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ========================================
   Promo Banner
   ======================================== */

.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.875rem 0;
    text-align: center;
    position: relative;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.promo-banner p {
    margin: 0;
    color: white;
    font-size: 0.95rem;
}

.promo-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
}

.promo-close:hover {
    opacity: 0.8;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.logo:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 1rem 0;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    color: var(--text-dark);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9), rgba(194, 150, 101, 0.9)),
                url('images/hero-background.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: var(--spacing-md);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ========================================
   Work With Me Section
   ======================================== */

.work-with-me {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.service-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--gold-accent);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* ========================================
   Cocktails Section
   ======================================== */

.cocktails {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.cocktail-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cocktail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cocktail-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: var(--bg-light);
}

.cocktail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cocktail-card:hover .cocktail-image img {
    transform: scale(1.1);
}

.cocktail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.cocktail-card:hover .cocktail-overlay {
    opacity: 1;
}

.cocktail-info {
    padding: 1.5rem;
}

.cocktail-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cocktail-info p {
    color: var(--text-light);
}

/* ========================================
   Blog Section
   ======================================== */

.blog {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-link {
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    padding-right: var(--spacing-md);
}

.contact-details {
    margin-top: var(--spacing-md);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social .social-links {
    flex-direction: column;
    align-items: flex-start;
}

.footer-social .social-links a {
    color: rgba(255, 255, 255, 0.7);
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
}

.footer-social .social-links a:hover {
    color: var(--primary-color);
    background: transparent;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   Scroll Animations
   ======================================== */

/* Only apply animations if JavaScript is enabled */
.js-enabled .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-enabled .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.js-enabled .cocktail-card,
.js-enabled .blog-card,
.js-enabled .service-card,
.js-enabled .recipe-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-enabled .cocktail-card.visible,
.js-enabled .blog-card.visible,
.js-enabled .service-card.visible,
.js-enabled .recipe-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered effect */
.cocktail-card:nth-child(1) { transition-delay: 0.1s; }
.cocktail-card:nth-child(2) { transition-delay: 0.2s; }
.cocktail-card:nth-child(3) { transition-delay: 0.3s; }
.cocktail-card:nth-child(4) { transition-delay: 0.4s; }
.cocktail-card:nth-child(5) { transition-delay: 0.5s; }
.cocktail-card:nth-child(6) { transition-delay: 0.6s; }

.blog-card:nth-child(1) { transition-delay: 0.1s; }
.blog-card:nth-child(2) { transition-delay: 0.2s; }
.blog-card:nth-child(3) { transition-delay: 0.3s; }
.blog-card:nth-child(4) { transition-delay: 0.4s; }

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

/* ========================================
   Sparkle Animation
   ======================================== */

.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 10px;
    height: 10px;
    animation: sparkle-float 2s ease-out forwards;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: var(--gold-accent);
    box-shadow: 0 0 10px var(--gold-accent);
}

.sparkle::before {
    width: 2px;
    height: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.sparkle::after {
    width: 10px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes sparkle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.5);
    }
}

/* Cocktail Shaker Cursor */
a, button, .btn, .cocktail-card, .blog-card, .service-card, input[type="submit"] {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 100 100"><text y="70" font-size="60">🍸</text></svg>') 16 16, pointer;
}

/* Gold Shimmer Text Effect */
.shimmer-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #B8956A 25%,
        #D4AF37 50%,
        #B8956A 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

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

/* Gold Confetti */
.confetti {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 14px;
    animation: confetti-fall 3s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg) scale(0.5);
    }
}

/* Martini glass sparkle */
.sparkle-martini {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 16px;
    animation: martini-float 2s ease-out forwards;
    filter: drop-shadow(0 0 4px var(--gold-accent));
}

@keyframes martini-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(-20deg);
    }
    20% {
        opacity: 1;
        transform: translateY(-15px) scale(1) rotate(0deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-50px) scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-90px) scale(0.8) rotate(-5deg);
    }
}

/* Floating Mascot */
.floating-mascot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    width: 120px;
    height: auto;
    animation: mascot-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.floating-mascot:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 16px rgba(184, 149, 106, 0.4));
}

@keyframes mascot-bob {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

/* Hide mascot on very small screens */
@media (max-width: 480px) {
    .floating-mascot {
        width: 80px;
        bottom: 10px;
        right: 10px;
    }
}

/* Easter Egg Toast */
.easter-egg-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--dark-accent));
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: toast-pop 3s ease-out forwards;
    text-align: center;
}

@keyframes toast-pop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    25% {
        transform: translate(-50%, -50%) scale(1);
    }
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-title { font-size: 3rem; }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Combined contact/newsletter section mobile */
    #contact > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--bg-light);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .cocktails-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title { font-size: 2rem; }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
