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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #FDFBF7;
    color: #1C1917;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

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

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

/* ── Typography ── */
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ── Navigation ── */
.nav {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 196, 142, 0.2);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 251, 247, 0.97);
    box-shadow: 0 1px 0 rgba(226, 196, 142, 0.3);
}

.nav-logo {
    display: block;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6E4C29;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C4613A;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #C4613A;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: #C4613A;
    color: #FDFBF7;
}

.btn-primary:hover {
    background: #A84E2E;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(196, 97, 58, 0.3);
}

.btn-outline {
    background: transparent;
    color: #1C1917;
    border: 1px solid rgba(28, 25, 23, 0.2);
}

.btn-outline:hover {
    border-color: #C4613A;
    color: #C4613A;
}

.btn-large {
    padding: 18px 40px;
}

/* ── Hero ── */
.hero {
    position: relative;
    background: #1C1917;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/2293369/pexels-photo-2293369.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.6) 50%, rgba(28, 25, 23, 0.4) 100%);
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(253, 251, 247, 0.08);
    border: 1px solid rgba(253, 251, 247, 0.12);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E2C48E;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #C4613A;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: #FDFBF7;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #D4AB6A;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions .btn-outline {
    color: #FDFBF7;
    border-color: rgba(253, 251, 247, 0.25);
}

.hero-actions .btn-outline:hover {
    border-color: #E2C48E;
    color: #E2C48E;
}

/* ── Floating Cards ── */
.hero-cards {
    position: relative;
    height: 480px;
}

.floating-card {
    position: absolute;
    background: rgba(253, 251, 247, 0.07);
    border: 1px solid rgba(253, 251, 247, 0.12);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 0;
    right: 0;
    width: 280px;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 160px;
    right: 80px;
    width: 280px;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    right: 20px;
    width: 280px;
    animation: float3 6.5s ease-in-out infinite;
}

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

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

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

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 97, 58, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E06E4D;
    flex-shrink: 0;
}

.card-stat {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #FDFBF7;
    margin-bottom: 2px;
}

.card-label {
    font-size: 0.75rem;
    color: #D4AB6A;
    font-weight: 300;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 251, 247, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(253, 251, 247, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Sections ── */
.section {
    padding: 120px 0;
}

.section-light {
    background: #FBF5EB;
}

.section-dark {
    background: #1C1917;
}

/* ── Section Labels & Titles ── */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C4613A;
    margin-bottom: 20px;
}

.section-label-light {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E06E4D;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #1C1917;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-title-light {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #FDFBF7;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #6E4C29;
    font-weight: 300;
    margin-bottom: 16px;
}

.section-body-light {
    font-size: 1rem;
    line-height: 1.85;
    color: #D4AB6A;
    font-weight: 300;
    margin-bottom: 16px;
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    max-width: 200px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #E2C48E, transparent);
}

.divider-icon {
    color: #C4613A;
    flex-shrink: 0;
}

/* ── Menu Cards ── */
.menu-card {
    background: #FDFBF7;
    border: 1px solid rgba(226, 196, 142, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.menu-card:hover {
    box-shadow: 0 24px 64px rgba(110, 76, 41, 0.1);
    transform: translateY(-4px);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(226, 196, 142, 0.2);
    background: #FBF5EB;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(196, 97, 58, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4613A;
    flex-shrink: 0;
}

.menu-icon-dark {
    background: rgba(196, 97, 58, 0.15);
    color: #A84E2E;
}

.menu-card-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C4613A;
    margin-bottom: 4px;
}

.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #1C1917;
}

.menu-card-body {
    padding: 24px 32px 32px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(226, 196, 142, 0.15);
}

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

.menu-item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1C1917;
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: #A4753E;
    font-weight: 300;
    text-align: right;
    max-width: 240px;
}

/* ── Gallery ── */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

/* ── Visit Section ── */
.visit-info {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 24px;
}

.visit-info-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C4613A;
    padding-top: 4px;
}

.visit-info-value {
    font-size: 0.9375rem;
    color: #6E4C29;
    font-weight: 300;
    line-height: 1.8;
}

.map-placeholder {
    box-shadow: 0 24px 64px rgba(110, 76, 41, 0.15);
}

.map-placeholder iframe {
    filter: saturate(0.7) brightness(1.05);
}

/* ── Contact Form ── */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4AB6A;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(253, 251, 247, 0.06);
    border: 1px solid rgba(253, 251, 247, 0.15);
    border-radius: 12px;
    color: #FDFBF7;
    font-size: 0.9375rem;
    font-family: inherit;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(253, 251, 247, 0.3);
}

.form-input:focus {
    border-color: #C4613A;
    background: rgba(253, 251, 247, 0.09);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AB6A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-select option {
    background: #1C1917;
    color: #FDFBF7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(196, 97, 58, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #E06E4D;
}

/* ── Contact Links (Footer area) ── */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: #D4AB6A;
    font-weight: 300;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #E06E4D;
}

/* ── Footer ── */
.footer {
    background: #161412;
    padding: 32px 0;
    border-top: 1px solid rgba(226, 196, 142, 0.1);
}

.footer-link {
    font-size: 0.75rem;
    color: rgba(253, 251, 247, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E2C48E;
}

/* ── Mobile Menu ── */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #6E4C29;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 196, 142, 0.2);
    box-shadow: 0 16px 48px rgba(110, 76, 41, 0.1);
    animation: menuSlide 0.3s ease;
}

@keyframes menuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6E4C29;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 196, 142, 0.15);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    color: #C4613A;
    padding-left: 8px;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1023px) {
    .hero-cards {
        display: none;
    }

    .hero-text {
        max-width: 100%;
    }

    .visit-info {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 80px 0;
    }

    .menu-card-header {
        padding: 20px 24px;
    }

    .menu-card-body {
        padding: 16px 24px 24px;
    }

    .menu-item {
        flex-direction: column;
        gap: 4px;
    }

    .menu-item-desc {
        text-align: left;
        max-width: 100%;
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 479px) {
    .max-w-6xl {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
