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

:root {
    --gold: #C49F3D;
    --gold-light: #F4E5C3;
    --gold-dark: #9D7B1F;
    --charcoal: #0A0A0A;
    --off-white: #FFFFFF;
    --cream: #FDFBF7;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --border-gold: rgba(196, 159, 61, 0.4);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--gold);
    color: var(--off-white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--off-white);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.ornament {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.ornament-wrapper {
    text-align: center;
    margin: 30px 0;
}

.ornament-star {
    color: var(--gold);
    font-size: 12px;
    margin: 0 15px;
}

/* Header */
header {
    text-align: center;
    padding: 120px 40px 100px;
    position: relative;
    background: var(--cream);
    border-bottom: 1px solid var(--border-gold);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.header-badge {
    display: inline-block;
    margin-bottom: 25px;
    padding: 8px 25px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    background: linear-gradient(90deg, rgba(196, 159, 61, 0.05), transparent, rgba(196, 159, 61, 0.05));
    transition: all 0.3s ease;
}

.header-badge:hover {
    transform: scale(1.05);
    border-color: var(--gold-dark);
}

h1 {
    font-family: 'Italiana', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 2;
}

/* Menu Section */
.menu-section {
    padding: 100px 40px;
    background: var(--off-white);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 70px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Price Selector */
.price-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    padding: 40px 20px;
}

.price-btn {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-gold);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 300;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.price-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.price-btn:hover::before {
    left: 100%;
}

.price-btn span {
    position: relative;
    z-index: 1;
}

.price-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.price-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--off-white);
    box-shadow: 0 10px 40px rgba(196, 159, 61, 0.35);
    font-weight: 500;
    transform: translateY(-3px) scale(1.05);
}

.price-btn:active {
    transform: translateY(-1px) scale(0.98);
}

@media (hover: hover) {
    .price-btn:focus {
        outline: 2px solid var(--gold);
        outline-offset: 3px;
    }
}

/* Menu Display */
.menu-display {
    position: relative;
    min-height: 500px;
}

.menu-content {
    display: none;
    animation: elegantFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--cream);
    border-radius: 0;
    padding: 80px 60px;
    border: 2px solid var(--border-gold);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 60px rgba(212, 175, 55, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
}

.menu-content::before,
.menu-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
}

.menu-content::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.menu-content::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

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

@keyframes elegantFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-content.loading {
    opacity: 0.5;
    pointer-events: none;
}

.menu-content > h3:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 50px;
    padding: 25px 30px;
    background: #FFFFFF;
    border: 2px solid var(--border-gold);
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.menu-content > h3:first-child::after {
    content: '✦';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream);
    padding: 0 15px;
    color: var(--gold);
    font-size: 14px;
}

.menu-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--charcoal);
    margin: 50px 0 0;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(196, 159, 61, 0.12) 0%, rgba(196, 159, 61, 0.05) 100%);
    border-left: 4px solid var(--gold);
}

.menu-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.note {
    font-size: 0.9rem;
    color: #7A6310;
    font-style: italic;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0;
    background: rgba(196, 159, 61, 0.15);
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
    margin-left: 8px;
}

.menu-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding: 2px;
    background: #FFFFFF;
    border: 1px solid rgba(196, 159, 61, 0.25);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.menu-content li {
    padding: 16px 20px 16px 45px;
    margin: 0;
    border-bottom: 1px solid rgba(196, 159, 61, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    position: relative;
    background: transparent;
    line-height: 1.7;
}

.menu-content li:last-child {
    border-bottom: none;
}

.menu-content li::before {
    content: '◆';
    position: absolute;
    left: 20px;
    color: var(--gold);
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.menu-content li:hover {
    background: linear-gradient(90deg, rgba(196, 159, 61, 0.08) 0%, transparent 100%);
    color: var(--charcoal);
    padding-left: 50px;
    transform: translateX(2px);
}

.menu-content li:hover::before {
    left: 22px;
    color: var(--gold-dark);
    transform: translateY(-50%) scale(1.2);
}

.menu-content li:active {
    transform: translateX(0);
}

.menu-content > p {
    text-align: center;
    font-style: italic;
    color: #555555;
    margin: -1rem 0 3rem;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 15px 25px;
    background: rgba(196, 159, 61, 0.08);
    border-left: 3px solid var(--gold);
}

.menu-section-divider {
    margin: 45px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

/* Contact Section */
.contact-section {
    padding: 100px 40px;
    background: var(--cream);
    border-top: 1px solid var(--border-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--off-white);
    border-radius: 0;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid var(--border-gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.contact-card:hover::before {
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(196, 159, 61, 0.18);
}

.contact-card:active {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 159, 61, 0.12);
}

@media (hover: hover) {
    .contact-card:focus-within {
        transform: translateY(-5px);
        border-color: var(--gold);
        box-shadow: 0 15px 50px rgba(196, 159, 61, 0.15);
        outline: none;
    }
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    background: var(--gold);
    transform: scale(1.08);
    border-color: var(--gold-dark);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    transition: color 0.4s ease;
}

.contact-card:hover .contact-icon svg {
    color: var(--off-white);
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 40px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-gold);
    background: var(--off-white);
}

footer p {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 80px 30px 70px;
    }

    h1 {
        letter-spacing: 4px;
    }

    .menu-content {
        padding: 50px 30px;
    }

    .price-selector {
        gap: 12px;
        padding: 30px 15px;
    }

    .price-btn {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 100px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .container {
        padding: 0 2px;
    }

    .menu-section,
    .contact-section {
        padding: 70px 25px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .menu-content li {
        font-size: 1.05rem;
        padding: 14px 18px 14px 40px;
    }

    .menu-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 40px 20px;
    }

    .menu-content::before,
    .menu-content::after {
        width: 40px;
        height: 40px;
    }

    .menu-content::before {
        top: 15px;
        left: 15px;
    }

    .menu-content::after {
        bottom: 15px;
        right: 15px;
    }

    .menu-content > h3:first-child {
        font-size: 1.6rem;
    }

    .menu-content h3 {
        font-size: 1.3rem;
    }

    .price-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    h1 {
        letter-spacing: 3px;
    }

    .header-badge {
        letter-spacing: 2px;
        font-size: 0.7rem;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--off-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(196, 159, 61, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 159, 61, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Luxury Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-in {
    animation: slideInFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
    .menu-section,
    .contact-section {
        opacity: 0;
        animation: slideInFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .menu-section {
        animation-delay: 0.2s;
    }

    .contact-section {
        animation-delay: 0.4s;
    }
}
