:root {
    --evergreen: #4D6040;
    --sage: #607350;
    --chocolate: #4D3726;
    --primary: #6A4B35;
    --secondary: #9b795e;
    --champagne: #f0e0c8;
    --gold: #c4a265;
    --white: #FFFFFF;
    --bg-warm: #faf6f4;
    --bg-cream: #f0ede5;
    --bg-tan: #cbb8a3;
    --brown: #6A4B35;
    --text: #6A4B35;
    --text-muted: #9b795e;
    --text-light: #888;
    --border: #e5dcd3;
    --shadow-sm: rgba(0,0,0,0.04);
    --shadow-md: rgba(0,0,0,0.08);

}

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

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
}

/* Fixed Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 3.7rem;
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

.logo-icon { height: 120px; width: auto; object-fit: contain; display: block; margin-right: -6px; }

.menu-toggle { display: none; }

.navbar nav { display: flex; gap: 0.5rem; flex-wrap: nowrap; }

.navbar nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    transition: color 0.15s ease;
    font-size: 15px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar nav a:hover { color: var(--secondary); }
.navbar nav a.active { color: var(--evergreen); }

/* Hero */
.hero {
    padding: 180px 2rem 70px;
    scroll-margin-top: 155px;
    background: var(--white);
}

.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--evergreen);
    font-weight: 700;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
    line-height: 1.65;
}

.cta-buttons { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }

.cta-btn {
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--white);
    line-height: 1.2;
    font-family: 'Josefin Sans', sans-serif;
}

.cta-btn:hover { background: var(--evergreen); border-color: var(--evergreen); }

.cta-btn.secondary { background: transparent; color: var(--evergreen); border-color: var(--evergreen); }
.cta-btn.secondary:hover { background: var(--evergreen); color: var(--white); }

.cta-btn.tertiary { background: transparent; color: var(--text-muted); border-color: var(--border); }
.cta-btn.tertiary:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.cta-btn.large { padding: 14px 28px; font-size: 16px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }

.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.testimonial p { font-style: italic; margin-bottom: 1rem; line-height: 1.8; color: var(--text-muted); font-size: 0.95rem; }

.testimonial cite { font-weight: 600; color: var(--evergreen); font-style: normal; font-size: 0.85rem; }

/* Common Sections */
section { padding: 70px 2rem; scroll-margin-top: 155px; }

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--evergreen);
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-family: 'Playfair Display', serif;
    color: var(--evergreen);
    font-weight: 700;
    line-height: 1.3;
}

.content-wrapper { max-width: 1260px; margin: 0 auto; }

/* Section backgrounds */
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-tan { background: var(--bg-tan); }
.section-tan h2,
.section-tan h3,
.section-tan p,
.section-tan .content-wrapper > p { color: var(--white); }
.section-tan .cta-btn { border-color: var(--white); }
.section-tan .cta-btn:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.section-tan .cta-btn.secondary { color: var(--white); }
.section-tan .cta-btn.secondary:hover { background: var(--white); color: var(--primary); }

/* About */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); line-height: 1.8; }

.about-image {
    overflow: hidden;
    border-radius: 10px;
}

.about-image img { width: 100%; height: auto; display: block; }

/* Shop */
.shop-subtitle { text-align: center; margin-bottom: 3rem; font-size: 1.1rem; color: var(--text-muted); max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.65; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-bottom: 3rem; }

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover { box-shadow: 0 4px 20px var(--shadow-md); transform: translateY(-3px); transition: all 0.2s ease; }

.product-image {
    height: 150px;
    background-size: cover;
    background-position: center 25%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-name { color: #fff; font-size: 1.4rem; margin-bottom: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.7); text-align: center; padding: 0 0.5rem; font-family: 'Playfair Display', serif; font-weight: 700; }

.product-tagline {
    color: #fff;
    font-size: 0.85rem;
    opacity: 0.95;
    position: absolute;
    bottom: 6px;
    left: 0; right: 0;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.product-grid .product-card:nth-child(1) .product-tagline,
.product-grid .product-card:nth-child(2) .product-tagline,
.product-grid .product-card:nth-child(3) .product-tagline,
.product-grid .product-card:nth-child(4) .product-tagline { bottom: 22px; }

.product-grid .product-card:nth-child(6) .product-name,
.product-grid .product-card:nth-child(7) .product-name { font-size: 0.95rem; padding: 0 0.5rem; text-align: center; line-height: 1.3; }

.product-grid .product-card:nth-child(6) .product-image,
.product-grid .product-card:nth-child(7) .product-image { height: 170px; }

.product-grid .product-card:nth-child(5) .product-name,
.product-grid .product-card:nth-child(5) .product-tagline,
.product-grid .product-card:nth-child(6) .product-name,
.product-grid .product-card:nth-child(6) .product-tagline,
.product-grid .product-card:nth-child(7) .product-name,
.product-grid .product-card:nth-child(7) .product-tagline { color: #1a1a1a; text-shadow: 0 0 6px rgba(255,255,255,0.6); }

.product-grid .product-card:nth-child(6) .product-tagline {
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 6px 0;
    text-shadow: none;
    bottom: 0;
}

.product-info { padding: 1.5rem; }
.product-info p { margin-bottom: 1rem; color: var(--text); line-height: 1.6; }

.bulk-orders {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}

.bulk-orders h3 { color: var(--evergreen); margin-bottom: 1rem; font-size: 1.3rem; }
.bulk-orders p { color: var(--text-muted); margin-bottom: 0.5rem; }
.bulk-orders ul { list-style: none; margin-bottom: 1rem; }
.bulk-orders li { color: var(--text-muted); padding: 0.25rem 0 0.25rem 1.5rem; position: relative; }
.bulk-orders li::before { content: "\2713"; position: absolute; left: 0; color: var(--evergreen); font-weight: bold; }

.order-cta { text-align: center; margin-top: 2rem; padding: 2rem; }
.order-cta p { color: var(--text-muted); font-size: 1.1rem; }

/* Payment */
.payment-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.65; }

.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }

.payment-method-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.payment-method-card:hover { box-shadow: 0 4px 20px var(--shadow-md); transform: translateY(-3px); transition: all 0.2s ease; }

.payment-method-card h3 { color: var(--evergreen); margin-bottom: 1.5rem; font-size: 1.3rem; }

.qr-placeholder, .cash-app-info { padding: 1.5rem; border-radius: 10px; background: var(--bg-warm); border: 1px solid var(--border); }

.qr-icon, .cash-app-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
}

.zelle-qr-img { width: 160px; height: 160px; object-fit: contain; border-radius: 10px; margin-bottom: 0.5rem; cursor: pointer; transition: transform 0.2s ease; }
.zelle-qr-img:hover { transform: scale(1.03); }

.qr-label { color: var(--text); font-weight: 600; margin-bottom: 0.5rem; }
.pay-note { color: var(--text-light); font-size: 0.9rem; }

.cash-app-tag { color: var(--evergreen); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }

.payment-instructions-card {
    background: var(--bg-warm);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--evergreen);
}

.payment-instructions-card p { color: var(--text-muted); line-height: 1.8; }

.pricing-summary { background: var(--bg-warm); border-radius: 10px; padding: 2rem; margin: 2rem 0; border: 1px solid var(--border); }
.pricing-summary h3 { color: var(--evergreen); margin-bottom: 1rem; }
.pricing-summary ul { list-style: none; margin-bottom: 1.5rem; }
.pricing-summary li { color: var(--text-muted); padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-bottom: 1px solid var(--border); }
.pricing-summary li:last-child { border-bottom: none; }
.pricing-summary li::before { content: "\2022"; position: absolute; left: 0; color: var(--evergreen); font-weight: bold; font-size: 1.3rem; }

.bulk-note { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.pricing-note { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin-top: 1.5rem; font-style: italic; }

/* Speaking */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin: 2.5rem 0; }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.service-card:hover { box-shadow: 0 4px 20px var(--shadow-md); transform: translateY(-3px); transition: all 0.2s ease; }

.service-card h3 { color: var(--evergreen); margin-bottom: 1rem; font-size: 1.1rem; }
.service-card ul { list-style: none; }
.service-card li { color: var(--text-muted); padding: 0.25rem 0 0.25rem 1.5rem; position: relative; }
.service-card li::before { content: "\2192"; position: absolute; left: 0; color: var(--evergreen); font-weight: bold; }

.book-cta { text-align: center; margin-top: 3rem; }
.speaking .cta-btn.large { background: var(--evergreen); border-color: var(--evergreen); }
.speaking .cta-btn.large:hover { background: var(--chocolate); border-color: var(--chocolate); }

.contact .cta-btn.submit { background: var(--evergreen); border-color: var(--evergreen); }
.contact .cta-btn.submit:hover { background: var(--chocolate); border-color: var(--chocolate); }
.contact .cta-btn.submit:disabled { background: rgba(95,113,68,0.6); border-color: rgba(95,113,68,0.6); }

/* Contact */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }

.contact-info, .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.contact-item { margin-bottom: 1rem; color: var(--text-muted); }
.contact-item a { color: var(--evergreen); text-decoration: none; font-weight: 600; }
.contact-item a:hover { color: var(--primary); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; color: var(--evergreen); font-weight: 600; font-size: 0.9rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(105,74,58,0.15);
}

.cta-btn.primary.submit { width: 100%; padding: 1rem; }

.founder-info {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
}

.founder-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--evergreen); }
.founder-info p { color: var(--text-muted); }

/* Footer */
.footer {
    background: var(--evergreen);
    padding: 2.5rem 2rem;
}

.footer-content { max-width: 1260px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand span { color: var(--white); font-weight: 500; }
.footer-brand span.copyright { color: rgba(255,255,255,0.7); font-weight: 400; font-size: 0.85rem; }

.footer-links { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.footer-links a { color: var(--white); text-decoration: none; font-size: 0.85rem; transition: opacity 0.2s ease; text-transform: uppercase; letter-spacing: 0.025em; }
.footer-links a:hover { opacity: 0.8; }
.footer-links .link-sep { color: rgba(255,255,255,0.3); user-select: none; }

/* Link styling */
a { text-decoration: none; transition: color 0.2s ease; }

.trademark { color: var(--evergreen); font-weight: 700; font-size: 0.75em; position: relative; top: -0.15em; }

/* Section accent divider */
.section-accent {
    width: 60px;
    height: 2px;
    background: var(--evergreen);
    margin: 0 auto 2rem;
    opacity: 0.6;
}

/* QR Modal */
.qr-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; cursor: pointer; }
.qr-modal.show { display: flex; }
.qr-modal-content { max-width: 90%; max-height: 90%; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); cursor: default; }
.qr-modal-close { position: absolute; top: 20px; right: 35px; color: #fff; font-size: 2.5rem; font-weight: 300; cursor: pointer; line-height: 1; opacity: 0.8; transition: opacity 0.2s; }
.qr-modal-close:hover { opacity: 1; }
.qr-modal-caption { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: #ccc; font-size: 1rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar { padding: 0.5rem 1rem; }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.6rem;
        cursor: pointer;
        color: var(--primary);
        padding: 0.25rem;
        line-height: 1;
        margin-left: auto;
    }

    .logo { gap: 0.2rem; }
    .logo-icon { height: 55px; margin-right: 0; }
    .logo span { font-size: 1.6rem; white-space: nowrap; font-family: 'Cormorant Garamond', 'Playfair Display', serif; }

    .navbar nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        order: 2;
        z-index: 999;
    }

    .navbar.nav-open nav { display: flex; }

    .navbar nav a {
        padding: 0.75rem 1.5rem;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
    }

    .navbar nav a:last-child { border-bottom: none; }

    .hero { padding: 110px 1.25rem 50px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }

    h2 { font-size: 1.7rem; margin-bottom: 1.5rem; }

    .content-wrapper { padding: 0; }

    .cta-btn { padding: 8px 16px; font-size: 14px; }
    .cta-buttons { gap: 0.5rem; }

    .about-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-text p { font-size: 0.95rem; }

    .product-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .product-card { max-width: 100%; }
    .product-info { padding: 1.25rem; }
    .product-info p { font-size: 0.9rem; }

    .product-grid .product-card:nth-child(6) .product-image,
    .product-grid .product-card:nth-child(7) .product-image { height: 180px; }
    .product-grid .product-card:nth-child(6) .product-name,
    .product-grid .product-card:nth-child(7) .product-name { font-size: 0.85rem; }

    .bulk-orders { padding: 1.5rem; margin-top: 1.5rem; }
    .bulk-orders h3 { font-size: 1.1rem; }

    .payment-options { grid-template-columns: 1fr; gap: 1rem; }
    .payment-method-card { padding: 1.25rem; }
    .payment-method-card h3 { font-size: 1.1rem; }
    .zelle-qr-img { width: 130px; height: 130px; }
    .qr-placeholder, .cash-app-info { padding: 1.25rem; }
    .pricing-summary { padding: 1.25rem; }
    .pricing-summary h3 { font-size: 1rem; }
    .pricing-summary li { font-size: 0.9rem; }
    .payment-instructions-card { padding: 1.25rem; margin: 1.25rem 0; }

    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.5rem; }
    .service-card h3 { font-size: 1rem; }

    .contact-container { grid-template-columns: 1fr; gap: 1.25rem; }
    .contact-form, .contact-info { padding: 1.5rem; }
    .founder-info { padding: 1.5rem; }

    .footer-content { flex-direction: column; text-align: center; gap: 1rem; }
    .footer-links { flex-direction: column; gap: 0.5rem; }
    .footer-links .link-sep { display: none; }

    .testimonials { grid-template-columns: 1fr; gap: 1rem; padding: 0; }
    .testimonial { padding: 1.5rem; }
    .testimonial p { font-size: 0.9rem; }
}
