/* === Global Styles === */

:root {
    --ink: #0c1220;
    --charcoal: #1a2335;
    --slate: #4a5568;
    --mist: #8b95a7;
    --cloud: #e2e8f0;
    --warm: #faf8f5;
    --cream: #f5f0eb;
    --green: #10b981;
    --green-deep: #059669;
    --green-glow: rgba(16, 185, 129, 0.12);
    --amber: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.10);
    --indigo: #6366f1;
    --indigo-glow: rgba(99, 102, 241, 0.10);
    --pink: #ec4899;
    --pink-glow: rgba(236, 72, 153, 0.10);
}

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

html {
    scroll-behavior: smooth;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.product-card.reveal { transition-delay: calc(var(--i, 0) * 0.1s); }

/* Skip to content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
    font-size: 0.85rem;
    border-radius: 0 0 8px 0;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

body {
    font-family: 'General Sans', sans-serif;
    color: var(--ink);
    background: var(--warm);
    line-height: 1.6;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Instrument Serif', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

.nav-cta {
    background: var(--green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'General Sans', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 13px;
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger svg { width: 28px; height: 28px; }


/* === Footer === */

footer {
    background: var(--ink);
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--green);
}

/* === Footer Links === */

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--mist);
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

/* === Responsive Nav === */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 99;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 18px;
    }
    .nav-hamburger {
        display: block;
    }
}
