:root {
    --forest-deep: #2E3D28;
    --forest-sage: #7A9E7E;
    --terracotta: #C1622F;
    --stone: #D9C9B0;
    --sand: #F5F1E8;
    --earth-brown: #8B6F47;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Lora', serif;
    color: var(--forest-deep);
    background: var(--sand);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Crimson Pro', serif; font-weight: 600; line-height: 1.2; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: #A04E1F; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(193, 98, 47, 0.3); }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
}
nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--forest-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
nav .logo img { height: 44px; width: 44px; object-fit: contain; }
nav .logo span { color: var(--terracotta); font-style: italic; font-weight: 400; }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--forest-deep);
    text-decoration: none;
    transition: color 0.3s ease;
}
nav a:hover { color: var(--terracotta); }
.mobile-menu { display: none; font-size: 1.5rem; background: none; border: none; color: var(--forest-deep); cursor: pointer; }

/* Article hero */
.article-hero {
    margin-top: 70px;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(122, 158, 126, 0.12) 0%, rgba(217, 201, 176, 0.32) 100%);
}
.article-hero .inner { max-width: 760px; margin: 0 auto; }
.article-hero .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.2rem;
}
.article-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 1.2rem;
}
.article-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--earth-brown);
    letter-spacing: 0.5px;
}

/* Article body */
.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
}
.article-body p { font-size: 1.12rem; margin-bottom: 1.4rem; color: var(--forest-deep); }
.article-body h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--forest-deep);
    margin: 2.8rem 0 1.1rem;
    position: relative;
    padding-bottom: 0.6rem;
}
.article-body h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 3px;
    background: var(--terracotta);
}
.article-body h3 { font-size: 1.4rem; color: var(--terracotta); margin: 2rem 0 0.8rem; }
.article-body ul, .article-body ol { margin: 0 0 1.4rem 1.4rem; }
.article-body li { font-size: 1.12rem; margin-bottom: 0.7rem; }
.article-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--forest-deep); }
.article-body strong { color: var(--forest-deep); }
.article-body hr { border: none; border-top: 1px solid rgba(122, 158, 126, 0.4); margin: 2.8rem 0; }
.article-body blockquote {
    border-left: 4px solid var(--forest-sage);
    background: rgba(122, 158, 126, 0.1);
    padding: 1rem 1.4rem;
    margin: 0 0 1.4rem;
    font-style: italic;
    color: var(--earth-brown);
}
.article-body .disclaimer {
    font-size: 0.92rem;
    color: var(--earth-brown);
    font-style: italic;
}
.article-cta {
    margin-top: 2.5rem;
    text-align: center;
}
.article-back {
    display: inline-block;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--terracotta);
    text-decoration: none;
}
.article-back:hover { color: var(--forest-deep); }
.article-foot {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

/* Footer */
footer { background: var(--forest-deep); color: var(--stone); padding: 3rem 2rem 1.5rem; }
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; margin-bottom: 2rem;
}
.footer-section h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.2rem; }
.footer-section p, .footer-section a { font-size: 0.95rem; line-height: 1.8; color: var(--stone); text-decoration: none; }
.footer-section a:hover { color: var(--terracotta); }
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding-top: 2rem;
    border-top: 1px solid rgba(217, 201, 176, 0.2);
    text-align: center; font-size: 0.9rem;
}

@media (max-width: 968px) {
    nav ul { display: none; }
    .mobile-menu { display: block; }
}
