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

:root {
    --emerald: #059669;
    --emerald-dark: #047857;
    --emerald-light: #10B981;
    --cream: #FDF6E3;
    --cream-dark: #F5EDDA;
    --cream-light: #FFFCF5;
    --dark: #1A2E28;
    --dark-mid: #2D4A3F;
    --text: #1F2937;
    --text-light: #6B7280;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 4px 24px rgba(5, 150, 105, 0.08);
    --shadow-lg: 0 12px 48px rgba(5, 150, 105, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Outfit', sans-serif; line-height: 1.15; font-weight: 800; }

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

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 246, 227, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 246, 227, 0.95);
    box-shadow: var(--shadow);
}

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

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.nav-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--emerald);
    color: var(--cream);
    border-radius: 10px;
    font-size: 1.1rem;
    margin-right: 6px;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-mid);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--emerald); }

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

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--emerald);
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--emerald-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

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

.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(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape { position: absolute; }

.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.rect-1 {
    width: 200px;
    height: 200px;
    background: var(--emerald);
    opacity: 0.04;
    border-radius: var(--radius-lg);
    top: 20%;
    left: 5%;
    transform: rotate(15deg);
}

.diamond {
    width: 120px;
    height: 120px;
    background: var(--accent);
    opacity: 0.08;
    position: absolute;
    top: 30%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: 8px;
}

.dot-cluster {
    width: 80px;
    height: 80px;
    background:
        radial-gradient(circle, var(--emerald) 2px, transparent 2px),
        radial-gradient(circle, var(--emerald) 2px, transparent 2px),
        radial-gradient(circle, var(--accent) 2px, transparent 2px),
        radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px;
    background-position: 0 0, 10px 10px, 0 10px, 10px 0;
    opacity: 0.3;
    bottom: 25%;
    right: 25%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.hero-card {
    background: var(--cream-light);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--accent), var(--emerald-light));
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-headline em {
    color: var(--emerald);
    font-style: normal;
    position: relative;
}

.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(5, 150, 105, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--emerald);
    color: var(--cream);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid rgba(26, 46, 40, 0.15);
}

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

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: var(--cream-light);
    border: 1px solid rgba(5, 150, 105, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5, 150, 105, 0.2);
}

.stat-1 { animation: float1 4s ease-in-out infinite; }
.stat-2 { animation: float2 4s ease-in-out infinite 0.5s; }
.stat-3 { animation: float3 4s ease-in-out infinite 1s; }

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

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

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    flex-shrink: 0;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ─── MARQUEE ─── */
.marquee {
    background: var(--dark);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--cream);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.sep {
    color: var(--emerald) !important;
    font-size: 0.7rem !important;
    opacity: 0.6;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--emerald);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

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

/* ─── MENU ─── */
.menu {
    padding: 100px 24px;
    background: var(--cream);
}

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

.menu .section-sub { margin: 0 auto 56px; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.menu-card {
    background: var(--cream-light);
    border: 1px solid rgba(5, 150, 105, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card--accent {
    border-color: rgba(5, 150, 105, 0.15);
}

.menu-card--accent::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--accent));
}

.menu-card-visual {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 40, 0.4), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.menu-card-badge {
    background: var(--emerald);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
    margin-top: auto;
}

.menu-card-body {
    padding: 28px;
    text-align: left;
}

.menu-card-body h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.menu-card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-list li {
    background: rgba(5, 150, 105, 0.08);
    color: var(--emerald-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ─── ABOUT ─── */
.about {
    padding: 100px 24px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about .container { position: relative; z-index: 1; }

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

.about-visual {
    position: relative;
}

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

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

.about-img-float {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: var(--shadow-lg);
}

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

.about-shape {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 100px;
    height: 100px;
    background: var(--emerald);
    border-radius: var(--radius);
    opacity: 0.2;
    z-index: -1;
}

.about-content .section-label { color: var(--emerald-light); }
.about-content .section-label::before { background: var(--emerald-light); }
.about-content .section-title { color: var(--cream); }
.about-content .section-sub { color: rgba(253, 246, 227, 0.6); }

.about-text {
    font-size: 1.05rem;
    color: rgba(253, 246, 227, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(5, 150, 105, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-light);
    flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
    padding: 100px 24px 60px;
    background: var(--cream);
}

.gallery .container { text-align: center; margin-bottom: 48px; }
.gallery .section-sub { margin: 0 auto; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 40, 0.3), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item--tall { grid-row: span 2; }
.gallery-item:nth-child(1) { grid-column: span 4; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }

/* ─── VISIT ─── */
.visit {
    padding: 100px 24px;
    background: var(--cream-dark);
}

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

.visit-info { display: flex; flex-direction: column; }
.visit-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 600;
}

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

.visit-cta { margin-top: auto; }

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    padding: 64px 24px 32px;
}

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

.footer-brand p {
    color: rgba(253, 246, 227, 0.5);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links strong,
.footer-contact strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-light);
    margin-bottom: 4px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 0.95rem;
    color: rgba(253, 246, 227, 0.6);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
    border-top: 1px solid rgba(253, 246, 227, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 0.85rem;
    color: rgba(253, 246, 227, 0.35);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 32px;
    }

    .stat-card { flex: 1; min-width: 160px; }

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

    .about-img-float { right: 16px; bottom: -24px; }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 227, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    }

    .nav-links.open { transform: translateY(0); }

    .nav-toggle { display: flex; }

    .hero { padding: 100px 24px 60px; min-height: auto; }

    .hero-card { padding: 32px 24px; }

    .hero-headline { font-size: 1.8rem; }

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

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

    .stat-card:hover { transform: none; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--tall { grid-row: span 1; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) { grid-column: span 1; }

    .gallery-grid .gallery-item { height: 200px; }
    .gallery-item--tall { height: 260px; }

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

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

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

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; }
    .stat-card { flex: none; }
}
