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

:root {
    --plum-deep: #2D0A25;
    --plum: #4A1942;
    --plum-mid: #6B2155;
    --plum-light: #8B3A7A;
    --plum-pale: #C4729E;
    --amber: #F5A623;
    --amber-dark: #D4891A;
    --amber-light: #FFD080;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --white: #FFFFFF;
    --text-dark: #1A0A18;
    --text-mid: #4A3040;
    --text-light: #7A6070;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(74, 25, 66, 0.08);
    --shadow-md: 0 8px 30px rgba(74, 25, 66, 0.12);
    --shadow-lg: 0 20px 60px rgba(74, 25, 66, 0.15);
    --shadow-xl: 0 30px 80px rgba(74, 25, 66, 0.2);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled {
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.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;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--plum-deep);
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--amber);
    color: var(--plum-deep);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(3deg) scale(1.05);
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s;
}

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

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

.nav.scrolled .nav-links a {
    color: var(--text-mid);
}

.nav.scrolled .nav-links a:hover {
    color: var(--plum);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav.scrolled .nav-toggle span {
    background: var(--plum-deep);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--amber);
    color: var(--plum-deep);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
    background: var(--amber-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-amber {
    background: var(--amber);
    color: var(--plum-deep);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--plum-deep) 0%, var(--plum) 40%, var(--plum-mid) 100%);
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.geo-1 {
    width: 600px;
    height: 600px;
    background: var(--amber);
    top: -200px;
    right: -100px;
}

.geo-2 {
    width: 300px;
    height: 300px;
    background: var(--plum-light);
    bottom: -50px;
    left: -80px;
}

.geo-3 {
    width: 150px;
    height: 150px;
    background: var(--amber-light);
    top: 40%;
    left: 35%;
    opacity: 0.06;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--amber);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title .text-amber {
    color: var(--amber);
    display: inline;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-right {
    position: relative;
    min-height: 580px;
}

.hero-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero-card-main {
    width: 100%;
    aspect-ratio: 6/7;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(45, 10, 37, 0.9));
}

.hero-card-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--amber);
    margin-bottom: 4px;
}

.hero-card-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.floating-card .fc-icon {
    width: 44px;
    height: 44px;
    background: var(--plum);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.floating-card .fc-icon--amber {
    background: var(--amber);
    color: var(--plum-deep);
}

.floating-card .fc-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.floating-card .fc-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.fc-1 {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 160px;
    left: -30px;
    animation-delay: 1s;
}

.fc-3 {
    bottom: 40px;
    right: -20px;
    animation-delay: 2s;
}

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

/* ── SECTION COMMON ── */
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-dark);
    background: rgba(245, 166, 35, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.section-title--light {
    color: var(--white);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(245, 166, 35, 0.04) 100%);
    pointer-events: none;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

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

.about-img-side {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--cream);
    z-index: 2;
}

.about-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    transform: rotate(12deg);
    z-index: 0;
    opacity: 0.6;
}

.about-content {
    padding: 20px 0;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(74, 25, 66, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ── MENU ── */
.menu {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
}

.menu .section-label {
    background: rgba(245, 166, 35, 0.2);
}

.menu .section-sub {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 48px;
}

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

.menu-tab {
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(245, 166, 35, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

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

.menu-tab.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--plum-deep);
}

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

.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(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card-visual {
    width: 120px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

.menu-card-body {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.menu-card-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ── VIBE ── */
.vibe {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.vibe-header {
    text-align: center;
    margin-bottom: 60px;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.vibe-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.vibe-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(45, 10, 37, 0.6));
    opacity: 0;
    transition: opacity 0.3s;
}

.vibe-card:hover::after {
    opacity: 1;
}

.vibe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.vibe-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.vibe-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vibe-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--plum);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.vibe-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.vibe-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── VISIT ── */
.visit {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--plum) 0%, var(--plum-deep) 100%);
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

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

.visit-info {
    position: relative;
    z-index: 1;
}

.visit-info .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.visit-detail p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.visit-detail a {
    color: var(--amber);
    text-decoration: none;
    transition: color 0.3s;
}

.visit-detail a:hover {
    color: var(--amber-light);
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.map-placeholder {
    aspect-ratio: 4/3;
}

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

/* ── FOOTER ── */
.footer {
    background: var(--plum-deep);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

.footer-contact a {
    color: var(--amber);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ── TEXT UTILITIES ── */
.text-amber {
    color: var(--amber);
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
        min-height: auto;
    }

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

    .about-images {
        max-width: 500px;
    }

    .vibe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--plum-deep);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .floating-card {
        display: none;
    }

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

    .menu-card {
        flex-direction: column;
    }

    .menu-card-visual {
        width: 100%;
        min-height: 100px;
    }

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

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

    .vibe-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-img-side {
        right: -10px;
        bottom: -20px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

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

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

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

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
