/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d2d2d;
    background: #fafaf7;
    line-height: 1.7;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}
.highlight { color: #8b4513; }

/* === Navigation === */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e4dc;
}
.nav__container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
    height: 64px;
}
.nav__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700; color: #1a1a1a;
}
.nav__logo span { color: #8b4513; }
.nav__menu { display: flex; gap: 2rem; }
.nav__menu a {
    font-size: 0.9rem; font-weight: 500; color: #555;
    transition: color 0.2s;
}
.nav__menu a:hover, .nav__menu a.active { color: #8b4513; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; }
.nav__toggle span {
    display: block; width: 24px; height: 2px; background: #333;
    margin: 5px 0; transition: 0.3s;
}

/* === Hero === */
.hero {
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #6b3a2a 100%);
    color: #fff;
    text-align: center;
}
.hero__content { max-width: 720px; margin: 0 auto; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem;
}
.hero__subtitle {
    font-size: 1.15rem; color: #c4a882; line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem; transition: all 0.3s;
    cursor: pointer;
}
.btn--primary { background: #c47f3a; color: #fff; }
.btn--primary:hover { background: #a66b2e; transform: translateY(-1px); }
.btn--outline { border: 2px solid #c4a882; color: #c4a882; background: transparent; }
.btn--outline:hover { background: rgba(196, 168, 130, 0.1); }

/* === Features === */
.features { padding: 80px 0; }
.features__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-card {
    background: #fff; padding: 2.5rem 2rem; border-radius: 12px;
    border: 1px solid #e8e4dc; transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.feature-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.8rem; }
.feature-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* === Quick Links === */
.quick-links { padding: 80px 0; background: #f4f0e8; }
.quick-links__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.quick-card {
    background: #fff; padding: 2rem; border-radius: 12px;
    border: 1px solid #e8e4dc; display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.quick-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.6rem; color: #2c1810; }
.quick-card p { color: #666; font-size: 0.9rem; line-height: 1.5; }

/* === Featured Articles === */
.featured { padding: 80px 0; }
.featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid #e8e4dc; transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.post-card__img {
    height: 200px; background: linear-gradient(135deg, #8b7355, #c4a882);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2rem;
}
.post-card__body { padding: 1.5rem; }
.post-card__tag {
    display: inline-block; padding: 4px 12px; background: #f0e6d8;
    color: #8b4513; border-radius: 20px; font-size: 0.8rem;
    font-weight: 600; margin-bottom: 0.8rem;
}
.post-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.6rem; }
.post-card p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }
.post-card__link { color: #8b4513; font-weight: 600; font-size: 0.9rem; }

/* === Newsletter === */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #fff; text-align: center;
}
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.newsletter p { color: #c4a882; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter__form {
    display: flex; gap: 1rem; max-width: 480px; margin: 0 auto; justify-content: center;
}
.newsletter__form input {
    flex: 1; padding: 14px 20px; border: none; border-radius: 6px;
    font-size: 1rem; background: rgba(255,255,255,0.1);
    color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.newsletter__form input::placeholder { color: #c4a882; }
.newsletter__form input:focus { outline: none; border-color: #c47f3a; }
.newsletter__form button { white-space: nowrap; }

/* === Footer === */
.footer { background: #1a1a1a; color: #999; padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1rem; }
.footer p { font-size: 0.9rem; line-height: 1.6; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: #c4a882; }
.footer__bottom { border-top: 1px solid #333; padding-top: 2rem; text-align: center; font-size: 0.85rem; }

/* === Page Header (for subpages) === */
.page-header {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #fff; text-align: center;
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.page-header p { color: #c4a882; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* === Content Page === */
.content-page { padding: 60px 0; }
.content-page .container { max-width: 800px; }
.content-page h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 2.5rem 0 1rem; color: #2c1810; }
.content-page h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 2rem 0 0.8rem; color: #4a2c1a; }
.content-page p { margin-bottom: 1.2rem; color: #444; line-height: 1.8; }
.content-page ul, .content-page ol { margin: 1rem 0 1.5rem 1.5rem; color: #444; }
.content-page li { margin-bottom: 0.5rem; }
.content-page .info-box {
    background: #f4f0e8; border-left: 4px solid #c47f3a;
    padding: 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav__menu {
        display: none; position: fixed; top: 64px; left: 0; right: 0;
        background: #fafaf7; flex-direction: column; padding: 1rem;
        border-bottom: 1px solid #e8e4dc; gap: 0;
    }
    .nav__menu.open { display: flex; }
    .nav__menu a { padding: 0.8rem 0; border-bottom: 1px solid #eee; }
    .nav__toggle { display: block; }
    .hero { padding: 120px 20px 80px; }
    .hero h1 { font-size: 2rem; }
    .features__grid, .quick-links__grid, .featured__grid, .footer__grid {
        grid-template-columns: 1fr;
    }
    .section-title { font-size: 1.6rem; }
    .newsletter__form { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
}
