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

:root {
    --green-dark:   #1a3a18;
    --green:        #2D5A27;
    --green-mid:    #3d7a35;
    --green-light:  #e8f5e9;
    --cream:        #f5f0e8;
    --cream-dark:   #ebe4d6;
    --white:        #ffffff;
    --text:         #1f2d1f;
    --text-mid:     #4a5e4a;
    --text-light:   #7a8f7a;
    --radius-sm:    10px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --shadow-sm:    0 2px 8px rgba(26,58,24,.08);
    --shadow-md:    0 8px 30px rgba(26,58,24,.12);
    --shadow-lg:    0 16px 50px rgba(26,58,24,.16);
    --font-heading: 'Lora', Georgia, serif;
    --font-body:    'Nunito', 'Segoe UI', sans-serif;
    --transition:   .3s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(245,240,232,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45,90,39,.08);
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--green-dark);
}
.nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    flex-shrink: 0;
}
.nav-logo svg { width: 18px; height: 18px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .9rem;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-mid);
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--green); background: var(--green-light); }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--green-dark);
    transition: background var(--transition);
}
.nav-toggle:hover { background: var(--green-light); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(45,90,39,.3);
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(45,90,39,.35);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green);
}
.btn-outline:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(45,90,39,.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45,90,39,.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(45,90,39,.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-inner {
    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: var(--green-light);
    color: var(--green);
    font-weight: 700;
    font-size: .8rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 24px;
}
.hero-accent {
    color: var(--green);
    font-style: italic;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 480/520;
    max-width: 480px;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.float-card-icon {
    width: 44px; height: 44px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.float-card-icon svg { width: 22px; height: 22px; }
.float-card-num {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--green-dark);
    line-height: 1.2;
}
.float-card-label {
    font-size: .78rem;
    color: var(--text-light);
    font-weight: 600;
}

.float-card-1 { top: 8%; right: -10%; animation-delay: 0s; }
.float-card-2 { bottom: 28%; left: -8%; animation-delay: 1.3s; }
.float-card-3 { bottom: 6%; right: 2%; animation-delay: 2.6s; }

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

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Section shared ───────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
    padding: 100px 24px;
    background: var(--cream-dark);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400/260;
}
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--green);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}
.menu-card-body { padding: 28px; }
.menu-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.menu-card-body > p {
    font-size: .95rem;
    color: var(--text-mid);
    margin-bottom: 18px;
    line-height: 1.7;
}
.menu-card-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.menu-card-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}
.menu-card-highlights li svg { flex-shrink: 0; }

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    font-size: .95rem;
    color: var(--text-mid);
}
.menu-note svg { color: var(--green); flex-shrink: 0; width: 20px; height: 20px; }
.menu-note a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.menu-note a:hover { color: var(--green-dark); }

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 24px;
    background: var(--cream);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 440/520;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px; right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
    aspect-ratio: 400/300;
    max-width: 280px;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: var(--green-light);
    border-radius: 50%;
    z-index: -1;
}

.about-content .section-tag { text-align: left; }
.about-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.value-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}
.value-icon svg { width: 24px; height: 24px; }
.value-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.value-item span {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Experience ───────────────────────────────────── */
.experience {
    padding: 100px 24px;
    background: var(--green-dark);
    color: var(--white);
}
.experience .section-tag { color: rgba(255,255,255,.6); }
.experience .section-title { color: var(--white); }
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.exp-card {
    background: rgba(255,255,255,.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    transition: all var(--transition);
}
.exp-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-6px);
}
.exp-card-img {
    overflow: hidden;
    aspect-ratio: 380/280;
}
.exp-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-body { padding: 28px; }
.exp-card-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(255,255,255,.15);
    line-height: 1;
    margin-bottom: 12px;
}
.exp-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}
.exp-card-body p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
}

/* ── Visit / CTA ──────────────────────────────────── */
.visit {
    padding: 100px 24px;
    background: var(--cream);
}
.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; }
.visit-info .section-tag { text-align: left; }
.visit-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item strong {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 700;
}
.contact-item a:hover { color: var(--green); text-decoration: underline; }

.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(--green-dark);
    color: rgba(255,255,255,.7);
    padding: 60px 24px 32px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.footer-brand { max-width: 300px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-logo-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
}
.footer-logo-icon svg { width: 18px; height: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-links a {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .85rem;
}
.footer-bottom a {
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ── Mobile menu ──────────────────────────────────── */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(245,240,232,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(45,90,39,.08);
    box-shadow: var(--shadow-md);
    gap: 4px;
}
.nav-links.open a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}
.nav-links.open .btn { margin-top: 8px; justify-content: center; }

/* ── Animations ───────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-up   { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-visible { opacity: 1; transform: none; }
.reveal-delay   { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-img-main { max-width: 100%; }
    .float-card-1 { right: 0; }
    .float-card-2 { left: 0; }
    .float-card-3 { right: 0; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-images { max-width: 480px; margin: 0 auto; }
    .visit-layout { grid-template-columns: 1fr; }
    .visit-map { min-height: 320px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .float-card { display: none; }

    .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .experience-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

    .about-img-secondary { right: -10px; bottom: -20px; max-width: 200px; }
    .about-accent { width: 60px; height: 60px; top: -10px; left: -10px; }

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

@media (max-width: 480px) {
    .hero { padding: 90px 16px 50px; }
    .hero-title { font-size: 1.75rem; }
    .menu, .about, .experience, .visit { padding: 70px 16px; }
    .section-title { font-size: 1.6rem; }
    .menu-card-body { padding: 20px; }
}
