/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ========== UTILITY ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4943A;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: #2A1A27;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6D4466;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5C83, #D4943A);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 131, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 131, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

nav.nav-scrolled {
    background: rgba(245, 240, 247, 0.92);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 20px rgba(139, 92, 131, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #fff;
    transition: color 0.4s ease;
}

nav.nav-scrolled .nav-logo {
    color: #2A1A27;
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5C83, #D4943A);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

nav.nav-scrolled .nav-links a {
    color: #6D4466;
}

nav.nav-scrolled .nav-links a:hover {
    color: #8B5C83;
}

.nav-cta {
    background: linear-gradient(135deg, #8B5C83, #D4943A) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 92, 131, 0.3);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

nav.nav-scrolled .nav-toggle {
    color: #2A1A27;
}

.menu-icon-close { display: none; }

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 26, 39, 0.72) 0%,
        rgba(139, 92, 131, 0.45) 50%,
        rgba(212, 148, 58, 0.30) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ========== ABOUT ========== */
.about {
    background: linear-gradient(180deg, #F5F0F7 0%, #FDF8EE 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 80%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 131, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #F5F0F7;
    box-shadow: 0 15px 40px rgba(139, 92, 131, 0.12);
}

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

.about-accent {
    position: absolute;
    top: -20px;
    right: 30%;
    opacity: 0.6;
}

.about-text p {
    color: #6D4466;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(139, 92, 131, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #8B5C83;
}

.stat-label {
    font-size: 0.8rem;
    color: #A87BB0;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(139, 92, 131, 0.2);
}

/* ========== MENU ========== */
.menu {
    background: #F5F0F7;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6D4466;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 92, 131, 0.12);
    transition: all 0.3s ease;
}

.menu-tab:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8B5C83;
}

.menu-tab.active {
    background: linear-gradient(135deg, #8B5C83, #D4943A);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 131, 0.25);
}

.menu-content {
    position: relative;
    min-height: 200px;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 92, 131, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 131, 0.1);
}

.menu-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 131, 0.1), rgba(212, 148, 58, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5C83;
}

.menu-card-body h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: #2A1A27;
    margin-bottom: 6px;
}

.menu-card-body p {
    font-size: 0.88rem;
    color: #6D4466;
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #A87BB0;
    font-style: italic;
}

/* ========== VIBE ========== */
.vibe {
    background: linear-gradient(180deg, #FDF8EE 0%, #F5F0F7 100%);
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.vibe-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 92, 131, 0.08);
    transition: all 0.4s ease;
}

.vibe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 92, 131, 0.12);
}

.vibe-card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.vibe-card-content {
    padding: 28px;
}

.vibe-card-content h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    color: #2A1A27;
    margin-bottom: 10px;
}

.vibe-card-content p {
    font-size: 0.92rem;
    color: #6D4466;
    line-height: 1.7;
}

/* ========== VISIT ========== */
.visit {
    background: #F5F0F7;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 131, 0.1), rgba(212, 148, 58, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5C83;
}

.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A87BB0;
    margin-bottom: 4px;
}

.visit-detail p {
    color: #6D4466;
    line-height: 1.6;
    font-size: 0.95rem;
}

.visit-detail a {
    color: #8B5C83;
    transition: color 0.3s ease;
}

.visit-detail a:hover {
    color: #D4943A;
}

.btn-directions {
    margin-top: 12px;
}

.visit-map {
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 92, 131, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* ========== CTA ========== */
.cta {
    background: linear-gradient(135deg, #2A1A27 0%, #52324C 50%, #3D2639 100%);
    padding: 100px 0;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 60px 40px;
}

.cta-decoration {
    position: absolute;
    top: 20px;
    right: 40px;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta .section-tag {
    color: rgba(212, 148, 58, 0.8);
}

.cta .section-title {
    color: #fff;
}

.cta .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    margin-top: 32px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', system-ui, sans-serif;
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group input:focus {
    border-color: rgba(212, 148, 58, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-msg {
    margin-top: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-msg.success {
    color: #4ade80;
}

.newsletter-msg.error {
    color: #f87171;
}

/* ========== FOOTER ========== */
.footer {
    background: #1A1018;
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.7;
    font-size: 0.92rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4943A;
}

.footer-contact p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4943A;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(42, 26, 39, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 24px;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #D4943A;
}

.mobile-menu-cta {
    margin-top: 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem !important;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #8B5C83, #D4943A);
    color: #fff !important;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }
    .about-images {
        height: 450px;
    }
    .vibe-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vibe-grid .vibe-card:last-child {
        grid-column: span 2;
    }
    .vibe-grid .vibe-card:last-child .vibe-card-img {
        height: 200px;
    }
}

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

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .about-images {
        height: 360px;
        order: -1;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

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

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

    .vibe-grid .vibe-card:last-child {
        grid-column: auto;
    }

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

    .visit-map {
        height: 320px;
        order: -1;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .about-images {
        height: 280px;
    }

    .about-img-main {
        width: 85%;
        height: 85%;
    }

    .about-img-secondary {
        width: 60%;
        height: 55%;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .menu-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
