/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a2e1a;
    background: #fdf8f0;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
label { font-size: 0.875rem; font-weight: 500; color: #2d4a2d; margin-bottom: 0.375rem; display: block; }

/* ─── FOCUS ─── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #059669; color: #fff; padding: 0.5rem 1rem; border-radius: 0 0 8px 8px; z-index: 9999;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid #059669; outline-offset: 2px; border-radius: 4px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.15; }

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem; border-radius: 60px; font-weight: 600; font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: #059669; color: #fff;
    box-shadow: 0 4px 20px rgba(5,150,105,0.35);
}
.btn-primary:hover { background: #047857; box-shadow: 0 8px 30px rgba(5,150,105,0.45); }
.btn-outline {
    background: transparent; color: #059669;
    border: 2px solid #059669;
}
.btn-outline:hover { background: #059669; color: #fff; }
.btn-nav {
    background: #059669; color: #fff; padding: 0.625rem 1.25rem; font-size: 0.875rem;
}
.btn-nav:hover { background: #047857; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION TAGS ─── */
.section-tag {
    display: inline-block;
    background: #d1fae5; color: #059669;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.375rem 0.875rem; border-radius: 30px; margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f2916; margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.125rem; color: #4a6b4a; max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-desc { margin: 0 auto; }

/* ─── HEADER ─── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,248,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(5,150,105,0.1);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(5,150,105,0.1); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-mark {
    width: 36px; height: 36px;
    background: #059669;
    border-radius: 8px;
    position: relative;
}
.logo-mark::before, .logo-mark::after {
    content: '';
    position: absolute; background: #fff;
}
.logo-mark::before { width: 18px; height: 2.5px; top: 10px; left: 7px; border-radius: 2px; }
.logo-mark::after { width: 12px; height: 2.5px; top: 18px; left: 7px; border-radius: 2px; }
.logo-text {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; color: #0f2916;
}
.logo-mark-light { background: #34d399; }
.logo-mark-light::before, .logo-mark-light::after { background: #fff; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-list a {
    padding: 0.5rem 0.875rem; border-radius: 8px; font-weight: 500; font-size: 0.9375rem;
    color: #2d4a2d; transition: background 0.2s, color 0.2s;
}
.nav-list a:hover { background: #d1fae5; color: #059669; }

/* HAMBURGER */
.nav-toggle {
    display: none; width: 44px; height: 44px;
    align-items: center; justify-content: center; border-radius: 8px;
}
.hamburger {
    width: 22px; height: 16px; position: relative; display: block;
}
.hamburger::before, .hamburger::after, .hamburger span {
    content: ''; position: absolute; left: 0; width: 100%; height: 2.5px;
    background: #1a2e1a; border-radius: 2px; transition: all 0.3s;
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { top: 12px; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 6px; transform: rotate(-45deg); }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: #fdf8f0;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; }
.shape-circle-1 {
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%);
    top: -150px; right: -100px;
}
.shape-circle-2 {
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,0.06) 0%, transparent 70%);
    bottom: -100px; left: -80px;
}
.shape-rect-1 {
    width: 200px; height: 200px; background: #d1fae5;
    border-radius: 32px; top: 20%; left: 5%;
    transform: rotate(15deg); opacity: 0.5;
}
.shape-dots {
    width: 120px; height: 120px; top: 15%; right: 15%;
    background-image: radial-gradient(circle, #059669 1.5px, transparent 1.5px);
    background-size: 16px 16px; opacity: 0.2;
}
.shape-stripe {
    width: 300px; height: 60px; bottom: 25%; right: 5%;
    background: repeating-linear-gradient(45deg, #059669, #059669 8px, transparent 8px, transparent 16px);
    border-radius: 8px; opacity: 0.12; transform: rotate(-20deg);
}

.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; border: 1px solid #d1fae5;
    padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.8125rem; font-weight: 500; color: #059669; margin-bottom: 1.5rem;
}
.badge-dot {
    width: 8px; height: 8px; background: #059669; 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-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: #0f2916; margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero-title span { color: #059669; }
.hero-desc {
    font-size: 1.1875rem; color: #4a6b4a; margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* HERO CARDS */
.hero-cards { position: relative; }
.hero-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(5,150,105,0.1);
    transition: transform 0.3s;
}
.hero-card:hover { transform: translateY(-4px); }
.card-1 { margin-bottom: 1.25rem; }
.card-2 { margin-bottom: 1.25rem; }
.card-img {
    width: 100%; overflow: hidden;
    aspect-ratio: 400/320;
}
.card-2 .card-img { aspect-ratio: 400/260; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem 1.5rem; }
.card-tag {
    display: inline-block; background: #d1fae5; color: #059669;
    font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.25rem 0.625rem; border-radius: 20px; margin-bottom: 0.625rem;
}
.card-body h3 { font-size: 1.25rem; color: #0f2916; margin-bottom: 0.375rem; }
.card-body p { font-size: 0.9375rem; color: #4a6b4a; line-height: 1.5; }

.hero-stat {
    background: #059669; border-radius: 20px; padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 1rem;
    color: #fff;
}
.stat-number { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; }
.stat-label { font-size: 0.875rem; opacity: 0.85; }

/* ─── HIGHLIGHTS ─── */
.highlights { padding: 5rem 0; background: #059669; }
.highlight-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.highlight-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px; padding: 1.75rem;
    transition: background 0.2s, transform 0.2s;
}
.highlight-item:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.highlight-icon {
    width: 48px; height: 48px; background: rgba(255,255,255,0.15);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; color: #fff;
}
.highlight-icon svg { width: 24px; height: 24px; }
.highlight-item h4 { font-size: 1.0625rem; color: #fff; margin-bottom: 0.375rem; }
.highlight-item p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ─── MENU ─── */
.menu { padding: 6rem 0; background: #fdf8f0; }
.menu-categories {
    display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem;
}
.menu-cat {
    padding: 0.625rem 1.5rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9375rem;
    color: #4a6b4a; background: transparent;
    border: 2px solid #d1fae5;
    transition: all 0.2s;
}
.menu-cat:hover { border-color: #059669; color: #059669; }
.menu-cat.active {
    background: #059669; color: #fff; border-color: #059669;
}
.menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.menu-item {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(5,150,105,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(5,150,105,0.12); }
.menu-item-img {
    width: 100%; overflow: hidden;
    aspect-ratio: 320/200;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-body { padding: 1.25rem 1.5rem; }
.menu-item-body h4 { font-size: 1.0625rem; color: #0f2916; margin-bottom: 0.375rem; }
.menu-item-body p { font-size: 0.875rem; color: #4a6b4a; line-height: 1.5; }

/* ─── ABOUT ─── */
.about { padding: 6rem 0; background: #f0fdf4; position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 16px 60px rgba(5,150,105,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -40px; right: -30px;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(5,150,105,0.2);
    border: 4px solid #f0fdf4;
}
.about-accent {
    position: absolute; top: -30px; left: -30px;
    width: 120px; height: 120px;
    background: #059669; border-radius: 24px;
    opacity: 0.1; z-index: -1;
}
.about-content .section-tag { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p { font-size: 1.0625rem; color: #4a6b4a; margin-bottom: 1rem; line-height: 1.7; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.about-stat {
    background: #fff; border-radius: 16px; padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 16px rgba(5,150,105,0.06);
}
.about-stat .stat-num {
    display: block; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: #059669;
}
.about-stat .stat-text { font-size: 0.8125rem; color: #4a6b4a; }

/* ─── GALLERY ─── */
.gallery { padding: 6rem 0; background: #fdf8f0; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    aspect-ratio: 500/400;
    box-shadow: 0 4px 20px rgba(5,150,105,0.08);
    transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── VISIT ─── */
.visit { padding: 6rem 0; background: #059669; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.visit-info .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.visit-info .section-title { color: #fff; }
.visit-info .section-desc { color: rgba(255,255,255,0.8); }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row {
    display: flex; align-items: flex-start; gap: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 1rem 1.25rem;
}
.contact-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(255,255,255,0.12);
    border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-row strong { display: block; color: #fff; font-size: 0.875rem; margin-bottom: 0.125rem; }
.contact-row span, .contact-row a { font-size: 0.9375rem; color: rgba(255,255,255,0.8); }
.contact-row a:hover { color: #fff; text-decoration: underline; }
.visit-map {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.2);
    min-height: 400px;
}

/* ─── CONTACT FORM ─── */
.contact-section { padding: 6rem 0; background: #fdf8f0; }
.contact-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(5,150,105,0.08);
    display: grid; grid-template-columns: 1.4fr 1fr;
}
.contact-card-content { padding: 3rem; }
.contact-card-content .section-tag { margin-bottom: 1rem; }
.contact-card-content .section-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-card-content .section-desc { font-size: 1rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { margin-bottom: 0.375rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0; border-radius: 10px;
    font-family: 'Outfit', sans-serif; font-size: 0.9375rem; color: #1a2e1a;
    background: #f8fafc; transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #059669; background: #fff; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: 0.75rem;
    background: #d1fae5; border: 1px solid #059669;
    border-radius: 12px; padding: 1rem 1.25rem; margin-top: 1rem;
    color: #065f46; font-size: 0.9375rem;
}
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* CONTACT VISUAL */
.contact-card-visual {
    background: #059669; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    min-height: 400px;
}
.visual-shape { position: absolute; border-radius: 50%; }
.shape-1 { width: 200px; height: 200px; background: rgba(255,255,255,0.06); top: -40px; right: -40px; }
.shape-2 { width: 140px; height: 140px; background: rgba(255,255,255,0.05); bottom: 40px; left: -30px; }
.shape-3 { width: 80px; height: 80px; background: rgba(255,255,255,0.08); top: 40%; left: 30%; }
.visual-illustration { width: 140px; opacity: 0.9; }

/* ─── FOOTER ─── */
.footer { background: #0f2916; color: #fff; padding: 4rem 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-top: 1rem; max-width: 280px; }
.footer-links h5, .footer-contact h5 {
    font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 1rem; color: #34d399;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a, .footer-contact li a {
    color: rgba(255,255,255,0.6); font-size: 0.9375rem; transition: color 0.2s;
}
.footer-links li a:hover, .footer-contact li a:hover { color: #34d399; }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-cards { max-width: 480px; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .visit-grid { grid-template-columns: 1fr; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-card-visual { min-height: 200px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(253,248,240,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column; padding: 1rem;
        border-bottom: 1px solid rgba(5,150,105,0.1);
        transform: translateY(-120%); opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
        box-shadow: 0 8px 30px rgba(5,150,105,0.1);
    }
    .nav-list.open { transform: translateY(0); opacity: 1; }
    .nav-list a { padding: 0.75rem 1rem; width: 100%; }

    .hero { min-height: auto; padding: 100px 0 4rem; }
    .hero-title { font-size: clamp(2.25rem, 8vw, 3.5rem); }
    .hero-cards { margin-top: 2rem; }
    .highlight-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-img-float { right: -10px; bottom: -20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .menu-categories { flex-wrap: wrap; }
}
