/* CSS Custom Properties */
:root {
    --plum-950: #1a0a1c;
    --plum-900: #2d0f2e;
    --plum-800: #4a154b;
    --plum-700: #6b1d6b;
    --plum-600: #8b268b;
    --plum-500: #a832a8;
    --plum-100: #f5e6f5;
    --plum-50: #fdf2fd;
    
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;
    
    --neutral-950: #0a0a0a;
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #a3a3a3;
    --neutral-300: #d4d4d4;
    --neutral-200: #e5e5e5;
    --neutral-100: #f5f5f5;
    --neutral-50: #fafafa;
    --neutral-0: #ffffff;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-900);
    background-color: var(--neutral-0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-950);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--neutral-700);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--amber-500);
    color: var(--neutral-950);
    border: 2px solid var(--amber-500);
}

.btn-primary:hover {
    background-color: var(--amber-600);
    border-color: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--plum-800);
    border: 2px solid var(--plum-800);
}

.btn-secondary:hover {
    background-color: var(--plum-800);
    color: var(--neutral-0);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--neutral-0);
    border: 2px solid var(--neutral-0);
}

.btn-outline:hover {
    background-color: var(--neutral-0);
    color: var(--plum-800);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

/* Section Headers */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-600);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-800);
}

.logo-icon {
    color: var(--amber-500);
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--plum-800);
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--plum-100);
}

.desktop-only {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--neutral-200);
    padding: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-100);
}

.mobile-menu a:hover {
    color: var(--plum-800);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--plum-950);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 28, 0.95) 0%, rgba(74, 21, 75, 0.85) 50%, rgba(26, 10, 28, 0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 400px;
        align-items: center;
    }
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--amber-400);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--neutral-0);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-headline em {
    color: var(--amber-400);
    font-style: italic;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--neutral-300);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--amber-500);
    border-radius: var(--radius-md);
    color: var(--neutral-950);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-400);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-0);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* Menu Section */
.menu-section {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    border: 2px solid var(--neutral-200);
    border-radius: 100px;
    transition: all 0.2s ease;
}

.menu-tab:hover {
    border-color: var(--plum-800);
    color: var(--plum-800);
}

.menu-tab.active {
    background-color: var(--plum-800);
    border-color: var(--plum-800);
    color: var(--neutral-0);
}

.menu-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    background-color: var(--neutral-0);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.menu-item-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-950);
}

.menu-item-badge {
    flex-shrink: 0;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--amber-100);
    color: var(--amber-600);
    border-radius: 100px;
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
    flex: 1;
}

.menu-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

.menu-footer p {
    margin-bottom: var(--space-lg);
    color: var(--neutral-500);
}

/* About Section */
.about-section {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-0);
}

.about-grid {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--neutral-0);
}

.about-image-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 40%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--neutral-0);
}

.about-image-accent img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-content {
    max-width: 560px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--plum-100);
    border-radius: var(--radius-md);
    color: var(--plum-800);
}

.value-text h4 {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.value-text p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
}

/* Gallery Section */
.gallery-section {
    padding: var(--space-3xl) 0;
    background-color: var(--plum-950);
}

.gallery-section .section-header {
    margin-bottom: var(--space-3xl);
}

.gallery-section .section-title {
    color: var(--neutral-0);
}

.gallery-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Location Section */
.location-section {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-50);
}

.location-grid {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.location-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.location-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--plum-100);
    border-radius: var(--radius-md);
    color: var(--plum-800);
}

.location-text h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location-text p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.location-text a {
    color: var(--plum-800);
    font-weight: 500;
    transition: color 0.2s ease;
}

.location-text a:hover {
    color: var(--amber-600);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.location-map {
    position: relative;
}

.map-placeholder {
    background-color: var(--plum-800);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--neutral-0);
}

.map-content svg {
    color: var(--amber-500);
}

.map-content h3 {
    font-size: 1.5rem;
    color: var(--neutral-0);
}

.map-content p {
    color: var(--neutral-300);
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 100%);
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--neutral-0);
    margin-bottom: var(--space-lg);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--neutral-300);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* Footer */
.footer {
    background-color: var(--neutral-950);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-0);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    transition: color 0.2s ease;
}

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

.footer-hours p,
.footer-contact p {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    line-height: 1.7;
}

.footer-note {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin-top: var(--space-sm);
}

.footer-contact svg {
    vertical-align: middle;
    margin-right: 0.25rem;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--neutral-800);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* Utility Classes */
.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: flex;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
