/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #3D2B1F;
    background: #FDF8F4;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.25; color: #2C1A0E; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C0603A;
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #C0603A;
    border-radius: 2px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6B4C3B;
    max-width: 600px;
    margin: 0 auto;
}
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: #C0603A;
    color: #fff;
    border-color: #C0603A;
}
.btn-primary:hover { background: #A84E2C; border-color: #A84E2C; }
.btn-outline {
    background: transparent;
    color: #3D2B1F;
    border-color: #3D2B1F;
}
.btn-outline:hover { background: #3D2B1F; color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-light {
    background: #fff;
    color: #C0603A;
    border-color: #fff;
}
.btn-light:hover { background: #F5E6D3; }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192, 96, 58, 0.1);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(60, 30, 10, 0.08); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2C1A0E;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5C3D2E;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C0603A;
    border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover { color: #C0603A; }
.nav-links a:not(.btn):hover::after { width: 100%; }
.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: 2.5px;
    background: #3D2B1F;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FDF8F4 0%, #F5E6D3 50%, #EDD5BC 100%);
    overflow: hidden;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 96, 58, 0.12);
    color: #C0603A;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #2C1A0E;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: 1.12rem;
    color: #6B4C3B;
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #C0603A;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: #8B6B5A;
    margin-top: 4px;
    font-weight: 600;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(192, 96, 58, 0.3);
}
.hero-visual {
    position: relative;
    min-height: 580px;
}
.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(60, 30, 10, 0.15);
    aspect-ratio: 520/640;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(60, 30, 10, 0.18);
    width: 260px;
    border: 4px solid #FDF8F4;
}
.hero-img-float img { width: 100%; height: 200px; object-fit: cover; }
.hero-float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 248, 244, 0.95);
    color: #C0603A;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section:nth-child(even) { background: #fff; }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    min-height: 520px;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(60, 30, 10, 0.12);
    aspect-ratio: 480/560;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(60, 30, 10, 0.15);
    width: 240px;
    border: 4px solid #fff;
}
.about-img-small img { width: 100%; height: 180px; object-fit: cover; }
.about-content { padding: 20px 0; }
.about-content p {
    color: #6B4C3B;
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #3D2B1F;
}
.check-icon { color: #C0603A; flex-shrink: 0; }

/* ===== SHOP ===== */
.shop { background: #FDF8F4; }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(60, 30, 10, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(60, 30, 10, 0.12); }
.card-img {
    aspect-ratio: 400/300;
    overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2C1A0E;
}
.card-body p {
    font-size: 0.92rem;
    color: #6B4C3B;
    line-height: 1.7;
}

/* ===== VISIT ===== */
.visit { background: #fff; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-intro {
    color: #6B4C3B;
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(192, 96, 58, 0.12);
}
.visit-detail:first-child { padding-top: 0; }
.visit-detail:last-child { border-bottom: none; }
.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 58, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0603A;
    flex-shrink: 0;
}
.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: #2C1A0E;
    margin-bottom: 4px;
}
.visit-detail span {
    font-size: 0.88rem;
    color: #6B4C3B;
}
.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(60, 30, 10, 0.1);
    min-height: 420px;
}

/* ===== COMMUNITY ===== */
.community { background: linear-gradient(135deg, #C0603A 0%, #A84E2C 100%); color: #fff; }
.community .section-label { color: rgba(255,255,255,0.8); }
.community .section-label::before { background: rgba(255,255,255,0.5); }
.community .section-title { color: #fff; }
.community .section-subtitle { color: rgba(255,255,255,0.8); }
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.community-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}
.community-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.community-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}
.community-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}
.community-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #2C1A0E 0%, #4A2C1A 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
.cta .section-label { color: rgba(255,255,255,0.6); }
.cta .section-label::before { background: rgba(255,255,255,0.4); }
.cta .section-title { color: #fff; margin-bottom: 20px; }
.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== CONTACT ===== */
.contact { background: #FDF8F4; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-intro {
    color: #6B4C3B;
    font-size: 1.02rem;
    margin-bottom: 32px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(192, 96, 58, 0.12);
    transition: color 0.2s;
}
.contact-method:first-child { padding-top: 0; }
.contact-method:last-child { border-bottom: none; }
.contact-method:hover { color: #C0603A; }
.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 58, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0603A;
    flex-shrink: 0;
    transition: background 0.2s;
}
.contact-method:hover .contact-method-icon { background: rgba(192, 96, 58, 0.18); }
.contact-method strong {
    display: block;
    font-size: 0.95rem;
    color: #2C1A0E;
    margin-bottom: 2px;
}
.contact-method span {
    font-size: 0.88rem;
    color: #6B4C3B;
}
.contact-method:hover strong,
.contact-method:hover span { color: inherit; }

/* ===== FORM ===== */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(60, 30, 10, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #3D2B1F;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E8D5C4;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #3D2B1F;
    background: #FDF8F4;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C0603A;
    box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8978A; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(76, 145, 65, 0.1);
    color: #3D7A2C;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1E1209;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.7; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
}
.footer-logo-icon { flex-shrink: 0; }
.footer-links h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}
.footer-links a:hover { color: #E8A87C; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(192, 96, 58, 0.1);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        box-shadow: 0 8px 30px rgba(60,30,10,0.1);
    }
    .nav-links.open { transform: translateY(0); }
    .hero-grid,
    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { order: -1; min-height: 400px; }
    .hero-img-float { left: 10px; bottom: -10px; width: 200px; }
    .hero-stats { gap: 16px; }
    .cards-grid,
    .community-grid { grid-template-columns: 1fr; }
    .about-images { min-height: 360px; }
    .about-img-small { width: 180px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .section { padding: 72px 0; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Fallback: content always visible if JS is disabled */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}
