@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
            --rose: #be185d;
            --cream: #fffbeb;
            --brown: #451a03;
            --shadow: 0 2px 8px rgba(69, 26, 3, 0.12);
        }

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

        html, body {
            font-family: 'Source Sans 3', sans-serif;
            color: var(--brown);
            background: var(--cream);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        header {
            background: var(--cream);
            border-bottom: 1px solid rgba(69, 26, 3, 0.1);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brown);
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        nav {
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: var(--brown);
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: color 0.2s;
        }

        nav a:hover {
            color: var(--rose);
        }

        nav a.active {
            color: var(--rose);
            font-weight: 600;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            margin: 4rem 0;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--brown);
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--brown);
            margin-bottom: 1.5rem;
            letter-spacing: -0.3px;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #5a3a2a;
            margin-bottom: 2rem;
            max-width: 600px;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-block;
            background: var(--rose);
            color: white;
            padding: 0.85rem 2rem;
            text-decoration: none;
            border-radius: 3px;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: background 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            background: #a01450;
        }

        #hero {
            padding: 3rem 0;
        }

        #coverage_scope, #reading_guides, #about_mission {
            padding: 2rem 0;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .coverage-item {
            padding: 1.5rem;
            background: white;
            border-radius: 4px;
            box-shadow: var(--shadow);
        }

        .coverage-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--rose);
            margin-bottom: 0.5rem;
        }

        .coverage-item p {
            font-size: 0.9rem;
            color: #5a3a2a;
        }

        #featured_content {
            margin: 5rem 0;
            padding: 3rem 0;
            border-top: 1px solid rgba(69, 26, 3, 0.1);
            border-bottom: 1px solid rgba(69, 26, 3, 0.1);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .featured-card {
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.2s;
        }

        .featured-card:hover {
            transform: translateY(-2px);
        }

        .featured-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .featured-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-card-content {
            padding: 1.5rem;
        }

        .featured-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--brown);
            margin-bottom: 0.5rem;
        }

        .featured-card p {
            font-size: 0.9rem;
            color: #5a3a2a;
            margin-bottom: 1rem;
        }

        .featured-card a {
            color: var(--rose);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .featured-card a:hover {
            text-decoration: underline;
        }

        .guides-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .guides-intro-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--brown);
            margin-bottom: 1rem;
        }

        .guides-intro-text p {
            color: #5a3a2a;
            margin-bottom: 1.5rem;
        }

        .guides-intro-image {
            width: 100%;
            height: 300px;
            border-radius: 4px;
            overflow: hidden;
        }

        .guides-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .guide-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .guide-item {
            padding: 1.5rem;
            background: white;
            border-left: 3px solid var(--rose);
            border-radius: 2px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .guide-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--brown);
            margin-bottom: 0.5rem;
        }

        #about_mission {
            background: #faf5f0;
            padding: 3rem 2rem;
            margin-left: -2rem;
            margin-right: -2rem;
            border-radius: 4px;
        }

        .mission-content {
            max-width: 700px;
        }

        .mission-content p {
            color: #5a3a2a;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        #cta_explore {
            text-align: center;
            padding: 4rem 0;
        }

        #cta_explore h2 {
            margin-bottom: 1.5rem;
        }

        .explore-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        footer {
            background: var(--brown);
            color: var(--cream);
            margin-top: 6rem;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }

        .footer-column p, .footer-column a {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 251, 235, 0.9);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-column a:hover {
            color: var(--rose);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 251, 235, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 251, 235, 0.8);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            nav {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.85rem;
            }

            .guides-intro {
                grid-template-columns: 1fr;
            }

            .explore-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                text-align: center;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
