:root {
    --plum-deep: #4a154b;
    --plum-mid: #6b215c;
    --plum-light: #83186a;
    --plum-pale: #fdf0f7;
    --amber-deep: #b45309;
    --amber-mid: #d97706;
    --amber-light: #f59e0b;
    --amber-pale: #fffbeb;
    --cream: #faf8f5;
    --cream-dark: #f5f0e8;
    --charcoal: #1c1917;
    --stone: #292524;
    --stone-light: #57534e;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--plum-deep);
}

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

.label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: var(--spacing-sm);
}

/* 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: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--amber-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.3);
}

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

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 21, 75, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-deep);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--stone);
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--plum-deep);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--plum-deep);
    padding: var(--spacing-xs);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(74, 21, 75, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav a {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    padding: var(--spacing-sm) 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--amber-light);
}

/* Hero Section */
.hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-mid) 100%);
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-visual {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.hero-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-text {
    padding: var(--spacing-md);
}

.hero-text h1 {
    color: var(--plum-deep);
    margin-bottom: var(--spacing-sm);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--stone-light);
    line-height: 1.7;
}

.stat-card {
    position: absolute;
    background-color: var(--white);
    border-radius: 16px;
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.stat-card .stat-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-light);
}

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

.stat-card.secondary {
    bottom: -20px;
    left: -30px;
    animation-delay: 1.5s;
}

.stat-card:not(.secondary) {
    top: -20px;
    right: -30px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--cream);
}

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

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

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content p {
    font-size: 1.125rem;
    color: var(--stone);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(74, 21, 75, 0.1);
}

.about-stats .stat-label {
    display: block;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: 0.25rem;
}

.about-stats .stat-desc {
    font-size: 0.875rem;
    color: var(--stone-light);
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 21, 75, 0.15);
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Menu Section */
.menu {
    padding: var(--spacing-xl) 0;
    background-color: var(--plum-deep);
}

.menu .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.menu .section-header .label {
    color: var(--amber-light);
}

.menu .section-header h2 {
    color: var(--white);
}

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

.menu-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.menu-content h3 {
    margin-bottom: var(--spacing-xs);
}

.menu-content p {
    color: var(--stone-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Location Section */
.location {
    padding: var(--spacing-xl) 0;
    background-color: var(--cream-dark);
}

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

.location-info {
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(74, 21, 75, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    margin-bottom: var(--spacing-md);
}

.location-address {
    font-size: 1.125rem;
    color: var(--stone);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--amber-deep);
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(74, 21, 75, 0.08);
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--plum-mid) 0%, var(--plum-deep) 100%);
}

.contact-container {
    max-width: 600px;
}

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

.contact-content .label {
    color: var(--amber-light);
}

.contact-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-mid);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--white);
}

.form-success svg {
    color: var(--amber-light);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--amber-light);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--amber-mid);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive */
@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
    }

    .about-img {
        height: 400px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-img {
        height: 250px;
    }

    .stat-card {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .about-content {
        padding-right: 0;
    }
}
