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

:root {
    --green-dark: #1a3c2a;
    --green-mid: #2d6a4f;
    --green-bright: #40916c;
    --green-light: #52b788;
    --green-pale: #95d5b2;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --accent-orange: #e76f51;
    --accent-yellow: #f4a261;
    --shadow-sm: 0 2px 8px rgba(26, 60, 42, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 60, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 60, 42, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    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;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--green-dark);
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-accent {
    color: var(--green-bright);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--green-mid) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

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

.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.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;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.geo {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.geo-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--green-pale);
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: var(--accent-yellow);
    bottom: 20%;
    left: 5%;
    transform: rotate(25deg);
    opacity: 0.4;
    border-radius: 20px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--accent-orange);
    top: 15%;
    left: 8%;
    opacity: 0.25;
    transform: rotate(-15deg);
}

.geo-dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--green-bright) 2px, transparent 2px);
    background-size: 16px 16px;
    top: 30%;
    right: 15%;
    opacity: 0.3;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--green-light);
    bottom: 5%;
    right: 30%;
    opacity: 0.15;
}

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

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 106, 79, 0.1);
    color: var(--green-mid);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--green-dark);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.highlight {
    color: var(--accent-orange);
    position: relative;
}

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

.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-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--green-mid);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green-mid);
    border: 2px solid var(--green-mid);
}

.btn-outline:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
}

.btn-white:hover {
    background: var(--cream-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Floating stat cards */
.hero-stats {
    position: relative;
    height: 500px;
    display: none;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.stat-card--1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.stat-card--2 {
    top: 35%;
    right: -20px;
    animation-delay: 1s;
}

.stat-card--3 {
    bottom: 25%;
    right: 10%;
    animation-delay: 2s;
}

.stat-card--4 {
    bottom: 0;
    right: -10px;
    animation-delay: 3s;
}

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

.stat-icon {
    font-size: 1.8rem;
}

.stat-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Hero images */
.hero-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 520px;
}

.hero-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.hero-img--1 {
    grid-row: 1 / 3;
    height: 100%;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

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

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

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

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--accent-yellow);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-bright);
    background: rgba(45, 106, 79, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

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

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

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

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

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

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

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

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 42, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.menu-card-tag {
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.menu-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-dark);
    letter-spacing: 0.03em;
}

.menu-card-emoji {
    font-size: 1.6rem;
}

.menu-card-body p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
}

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

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--green-mid);
    top: -200px;
    right: -150px;
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-visual {
    position: relative;
}

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

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

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--green-dark);
}

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

.about-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-yellow);
    border-radius: 20px;
    top: -20px;
    left: -20px;
    transform: rotate(15deg);
    opacity: 0.5;
    z-index: -1;
}

.about-content .section-tag {
    background: rgba(149, 213, 178, 0.2);
    color: var(--green-pale);
}

.about-content .section-title {
    color: var(--white);
    text-align: left;
}

.about-text {
    color: rgba(250, 248, 245, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 248, 245, 0.1);
    border-radius: var(--radius-sm);
}

.about-feature strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.about-feature span {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.85rem;
}

/* REVIEWS */
.reviews {
    padding: 100px 0;
    background: var(--cream);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-pale);
}

.review-card--featured {
    background: var(--green-mid);
    border-color: var(--green-mid);
}

.review-card--featured .review-text {
    color: rgba(250, 248, 245, 0.9);
}

.review-card--featured .review-author span {
    color: rgba(250, 248, 245, 0.7);
}

.review-stars {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.review-card--featured .review-avatar {
    background: rgba(250, 248, 245, 0.2);
    color: var(--white);
}

.review-author span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* LOCATION */
.location {
    padding: 100px 0;
    background: var(--cream-dark);
}

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

.location-info .section-tag {
    background: rgba(45, 106, 79, 0.1);
    color: var(--green-mid);
}

.location-info .section-title {
    text-align: left;
}

.location-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.location-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.location-item span,
.location-item a {
    font-size: 0.9rem;
    color: var(--text-mid);
    text-decoration: none;
    line-height: 1.6;
}

.location-item a:hover {
    color: var(--green-bright);
}

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

.location-map iframe {
    border-radius: var(--radius-lg);
}

/* CTA */
.cta {
    padding: 100px 0;
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--green-mid);
    top: -100px;
    left: -80px;
    opacity: 0.4;
}

.cta-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-yellow);
    border-radius: 24px;
    bottom: -40px;
    right: 10%;
    transform: rotate(30deg);
    opacity: 0.3;
}

.cta-shape-3 {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-orange);
    top: 20%;
    right: 5%;
    opacity: 0.2;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* FOOTER */
.footer {
    background: #111;
    padding: 60px 0 0;
    color: rgba(250, 248, 245, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-links a,
.footer-contact a {
    color: rgba(250, 248, 245, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 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; }

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero-stats {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        display: none;
    }

    .hero-images {
        height: 300px;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-card {
        padding: 32px;
    }

    .hero-images {
        grid-template-columns: 1fr 1fr;
        height: 280px;
    }

    .hero-img--1 {
        grid-row: auto;
    }

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

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

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

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

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

    .about-img-accent {
        right: 0;
        width: 180px;
    }

    .about-img-accent img {
        height: 130px;
    }
}

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

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

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

    .hero-images {
        grid-template-columns: 1fr;
        height: 200px;
    }

    .hero-img--1 {
        grid-row: auto;
    }
}
