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

:root {
    --plum-50: #f8f0f6;
    --plum-100: #f2e0ec;
    --plum-200: #e8c3d9;
    --plum-400: #c46e9e;
    --plum-500: #6B2D5B;
    --plum-600: #5a244d;
    --plum-700: #491d3f;
    --plum-800: #381631;
    --plum-900: #270f23;
    --plum-950: #1a0a17;
    --amber-50: #fdf8eb;
    --amber-100: #faedc4;
    --amber-200: #f5db8e;
    --amber-300: #E8C36B;
    --amber-400: #d4a017;
    --amber-500: #b8860b;
    --plum-glow: rgba(107, 45, 91, 0.15);
    --amber-glow: rgba(232, 195, 107, 0.3);
}

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

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--plum-900);
    background-color: var(--amber-50);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--amber-50); }
::-webkit-scrollbar-thumb { background: var(--plum-200); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--plum-400); }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

.section-eyebrow {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--plum-800);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--plum-700);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }

/* Section spacing */
.section {
    padding: 6rem 0;
}

/* ─── Navigation ─── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-fixed.scrolled {
    background: rgba(253, 248, 235, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(107, 45, 91, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: padding 0.4s ease;
}

.nav-fixed.scrolled .nav-container {
    padding: 0.875rem 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--plum-950);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--amber-500);
}

.nav-logo-text {
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9rem;
    color: var(--plum-700);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-500);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--plum-500); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--plum-800);
    background: var(--amber-300);
    border: 1.5px solid var(--amber-300);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: transparent;
    color: var(--plum-800);
}

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

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

.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);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(26, 10, 23, 0.82) 0%,
            rgba(73, 29, 63, 0.75) 50%,
            rgba(107, 45, 91, 0.7) 100%
        ),
        url('https://images.pexels.com/photos/5864548/pexels-photo-5864548.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1200') center/cover no-repeat;
    color: #fff;
    padding: 8rem 1.5rem 4rem;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title-accent {
    color: var(--amber-300);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--plum-100);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.btn-primary {
    background: var(--amber-400);
    color: var(--plum-950);
    border-color: var(--amber-400);
}

.btn-primary:hover {
    background: var(--amber-300);
    border-color: var(--amber-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 195, 107, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--plum-800);
    border-color: var(--plum-200);
}

.btn-outline-dark:hover {
    background: var(--plum-50);
    border-color: var(--plum-500);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.8rem;
    color: var(--plum-200);
    letter-spacing: 0.04em;
}

.hero-badge svg {
    color: var(--amber-300);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--plum-200);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

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

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

/* ─── About ─── */
.about {
    background: var(--amber-50);
}

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

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

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 45, 91, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 1rem;
    overflow: hidden;
    border: 6px solid var(--amber-50);
    box-shadow: 0 16px 48px rgba(107, 45, 91, 0.12);
}

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

.about-accent {
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translate(50%, -50%);
    background: var(--plum-500);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(107, 45, 91, 0.25);
    z-index: 2;
}

.about-content {
    padding: 1rem 0;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--plum-700);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-body {
    font-size: 1rem;
    color: var(--plum-700);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--plum-100);
    color: var(--plum-600);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
}

.about-signature-icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

/* ─── Menu ─── */
.menu {
    background: var(--plum-50);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--plum-200), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.menu-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--plum-100);
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--plum-500), var(--amber-400));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 45, 91, 0.1);
    border-color: var(--plum-200);
}

.menu-card:hover::before { opacity: 1; }

.menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: var(--plum-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-500);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.menu-card:hover .menu-card-icon {
    background: var(--plum-500);
    color: #fff;
}

.menu-card-title {
    font-size: 1.35rem;
    color: var(--plum-800);
    margin-bottom: 0.75rem;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: var(--plum-600);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.menu-card-tag {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    background: var(--amber-100);
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    font-weight: 600;
}

/* ─── Flavors ─── */
.flavors {
    background: var(--amber-50);
}

.flavors-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flavor-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.flavor-category {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.flavor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.flavor-dot-classic {
    background: linear-gradient(135deg, #e8a0b4, #c46e9e);
    box-shadow: 0 0 0 4px var(--plum-50);
}

.flavor-dot-tropical {
    background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
    box-shadow: 0 0 0 4px var(--plum-50);
}

.flavor-dot-creative {
    background: linear-gradient(135deg, var(--plum-300), var(--plum-500));
    box-shadow: 0 0 0 4px var(--plum-50);
}

.flavor-category-title {
    font-size: 1.1rem;
    color: var(--plum-800);
    margin-bottom: 0.25rem;
}

.flavor-category-desc {
    font-size: 0.9rem;
    color: var(--plum-600);
    line-height: 1.7;
}

.flavors-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 650px;
}

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

.flavors-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 10, 23, 0.5), transparent);
    border-radius: 0 0 1rem 1rem;
}

/* ─── Experience ─── */
.experience {
    background:
        linear-gradient(
            135deg,
            rgba(26, 10, 23, 0.9) 0%,
            rgba(73, 29, 63, 0.85) 100%
        ),
        url('https://images.pexels.com/photos/36871073/pexels-photo-36871073.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center/cover no-repeat;
    color: #fff;
    padding: 5rem 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.experience-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.experience-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.experience-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-300);
    margin-bottom: 0.75rem;
}

.experience-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.experience-desc {
    font-size: 0.9rem;
    color: var(--plum-200);
    line-height: 1.8;
}

/* ─── Visit ─── */
.visit {
    background: var(--plum-50);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.visit-info {
    padding: 2rem 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-detail svg {
    color: var(--amber-500);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.visit-detail-label {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-400);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.visit-detail-value {
    display: block;
    font-size: 1rem;
    color: var(--plum-800);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit-detail-value:hover {
    color: var(--plum-500);
}

.visit-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.visit-map {
    border-radius: 1rem;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 16px 48px rgba(107, 45, 91, 0.12);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ─── Footer ─── */
.footer {
    background: var(--plum-950);
    color: var(--plum-200);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--amber-400);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--plum-300);
    line-height: 1.8;
    max-width: 300px;
}

.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--plum-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 2;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--plum-400);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 235, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-menu a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--plum-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--amber-500); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid,
    .flavors-layout {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.25rem 3rem;
    }

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

    .section {
        padding: 4rem 0;
    }

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

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

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

    .flavors-layout {
        grid-template-columns: 1fr;
    }

    .flavors-image {
        height: 400px;
        order: -1;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .visit-map iframe {
        min-height: 300px;
    }

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

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

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .about-images {
        height: 300px;
    }

    .visit-cta-group {
        flex-direction: column;
    }
}
