/* Thriving Household — Shared Styles */

:root {
    --walnut:     #4A2C1A;
    --rose:       #B85C4A;
    --amber:      #D4870E;
    --sage:       #5A8C5C;
    --cream:      #FDFAF4;
    --cream-dark: #F0EBE3;
    --text:       #2D1A0F;
    --muted:      #7A6558;
    --border:     #DDD3C8;
    --shadow:     0 4px 24px rgba(74,44,26,0.08);
    --radius:     10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--walnut);
    line-height: 1.2;
}

/* ── Navigation ── */
.site-nav {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0 24px;
}
.nav-inner {
    max-width: 1040px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    text-decoration: none;
    line-height: 1;
}
.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--walnut);
    display: block;
}
.nav-logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--walnut); }
.nav-cta a {
    background: var(--sage);
    color: white !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}
.nav-cta a:hover { background: #497848; }

/* ── Footer ── */
.site-footer {
    background: var(--walnut);
    color: rgba(255,255,255,0.7);
    padding: 56px 24px 32px;
}
.footer-inner {
    max-width: 1040px;
    margin: 0 auto;
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px;
}
.footer-sub {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 32px;
}
.footer-nav {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: white; }
.footer-copy {
    font-size: 0.72rem;
    opacity: 0.4;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--sage);
    color: white;
}
.btn-primary:hover {
    background: #497848;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(90,140,92,0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--amber);
    border: 2px solid var(--amber);
}
.btn-ghost:hover {
    background: var(--amber);
    color: white;
}

/* ── Container ── */
.container {
    max-width: 1040px;
    margin: 0 auto;
}

/* ── Eyebrow labels ── */
.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 10px;
}

/* ── Mobile nav ── */
@media (max-width: 640px) {
    .nav-links li:not(.nav-cta) { display: none; }
    .nav-links { gap: 0; }
}
