/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', Arial, sans-serif; color: #3a3a3a; background: #fdfbf7; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: #2d2926; }

/* ===== COLORS ===== */
:root {
    --sage: #8a9a7b;
    --sage-light: #c5d1bc;
    --sage-dark: #5f7056;
    --coral: #d4856a;
    --coral-light: #f0c4b3;
    --cream: #fdfbf7;
    --warm-white: #faf7f2;
    --charcoal: #2d2926;
    --text: #3a3a3a;
    --text-light: #6b6560;
    --gold: #c9a96e;
}

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(253,251,247,.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.5rem; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; font-weight: 600; letter-spacing: .03em; color: var(--charcoal); }
.nav-links a:hover { color: var(--sage-dark); }

/* Mobile toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .3s, opacity .3s; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: .75rem 2rem; background: var(--sage); color: #fff; border: 2px solid var(--sage); border-radius: 30px; font-weight: 700; font-size: .9rem; letter-spacing: .04em; cursor: pointer; transition: all .25s; text-align: center; }
.btn:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--sage-dark); border-color: var(--sage-dark); }
.btn-outline:hover { background: var(--sage-dark); color: #fff; }
.btn-sm { padding: .5rem 1.4rem; font-size: .85rem; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; gap: 4rem; padding: 6rem 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.hero-content { flex: 1; max-width: 560px; }
.hero-tag { font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: .75rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; margin-bottom: 1.25rem; color: var(--charcoal); }
.hero-sub { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { flex: 0 0 auto; }
.hero-image img { width: 400px; height: 400px; object-fit: cover; border-radius: 50% 50% 50% 10%; box-shadow: 0 20px 60px rgba(0,0,0,.1); }

/* ===== ABOUT ===== */
.about { display: flex; align-items: center; gap: 4rem; padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.about-image { flex: 0 0 auto; }
.about-image img { width: 240px; height: 240px; object-fit: contain; opacity: .85; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-light); }
.about-text .btn { margin-top: .5rem; }

/* ===== SECTION COMMON ===== */
.services, .shop, .contact { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.services h2, .shop h2, .contact h2 { font-size: 2rem; margin-bottom: .5rem; }
.section-sub { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ===== SERVICES ===== */
.services { background: var(--warm-white); border-radius: 24px; margin-top: 2rem; margin-bottom: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; text-align: left; }
.service-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,.04); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.service-icon { font-size: 2rem; margin-bottom: .75rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { font-size: .92rem; color: var(--text-light); }

/* ===== SHOP ===== */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.shop-card { display: block; background: #fff; border-radius: 16px; padding: 2rem 1.5rem; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,.04); transition: transform .2s, box-shadow .2s; border: 2px solid transparent; }
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.08); border-color: var(--sage-light); }
.shop-thumb { font-size: 2.5rem; margin-bottom: 1rem; }
.shop-card h3 { font-size: 1rem; margin-bottom: .5rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.shop-price { font-size: 1.1rem; font-weight: 700; color: var(--sage-dark); }

/* ===== CONTACT ===== */
.contact { background: var(--warm-white); border-radius: 24px; margin-bottom: 3rem; }
.contact-form { max-width: 600px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .4rem; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .7rem 1rem; border: 1.5px solid #ddd; border-radius: 10px;
    font-family: 'Lato', sans-serif; font-size: .95rem; background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--sage); }
.contact-form .btn { width: 100%; padding: 1rem; font-size: 1rem; }

/* Honeypot (hidden from real users) */
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ===== FOOTER ===== */
.footer { text-align: center; padding: 2.5rem 1.5rem; border-top: 1px solid rgba(0,0,0,.06); }
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-inner img { margin: 0 auto .75rem; border-radius: 50%; }
.footer p { font-size: .85rem; color: var(--text-light); margin-bottom: .4rem; }
.footer-links a { font-weight: 600; }
.footer-links a:hover { color: var(--sage-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
        flex-direction: column; align-items: center; justify-content: center;
        background: var(--cream); gap: 2rem; transform: translateY(-100%);
        opacity: 0; pointer-events: none; transition: transform .3s, opacity .3s;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .hero { flex-direction: column; text-align: center; gap: 2rem; padding-top: 5rem; min-height: auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-image img { width: 280px; height: 280px; }
    .about { flex-direction: column; text-align: center; gap: 2rem; }
    .about-image img { width: 160px; height: 160px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .services, .shop, .contact { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-image img { width: 220px; height: 220px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
