@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@600;700&display=swap");

:root {
            --navy: #0f172a;
            --amber: #f59e0b;
            --off-white: #faf9f7;
            --light-gray: #f3f1ee;
            --text-dark: #1a202c;
            --text-light: #64748b;
            --border-light: #e2e8f0;
        }

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

        html, body {
            width: 100%;
            height: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--off-white);
            line-height: 1.6;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--navy);
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        a {
            color: var(--amber);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--navy);
        }

        /* Header & Navigation */
        header {
            background-color: white;
            border-bottom: 1px solid var(--border-light);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .nav-brand {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .nav-brand-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
        }

        .nav-brand-tagline {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--amber);
        }

        .nav-links a.active {
            color: var(--amber);
            border-bottom: 2px solid var(--amber);
            padding-bottom: 0.25rem;
        }

        /* Main Content */
        main {
            width: 100%;
        }

        section {
            width: 100%;
            padding: 4rem 2rem;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Editorial */
        #hero_editorial {
            background-color: var(--off-white);
            padding: 5rem 2rem;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 500px;
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Editorial Pillars */
        #editorial_pillars {
            background-color: white;
            padding: 5rem 2rem;
        }

        .pillars-intro {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .pillars-intro h2 {
            margin-bottom: 1rem;
        }

        .pillars-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .pillar-card {
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
        }

        .pillar-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(245, 158, 11, 0.1);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .pillar-card h3 {
            margin-bottom: 1rem;
        }

        .pillar-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Featured Content */
        #featured_content {
            background-color: var(--off-white);
            padding: 5rem 2rem;
        }

        .featured-intro {
            max-width: 1200px;
            margin: 0 auto 4rem;
        }

        .featured-intro h2 {
            margin-bottom: 0.5rem;
        }

        .featured-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .featured-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .featured-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
        }

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

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

        .featured-card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-card-tag {
            font-size: 0.75rem;
            color: var(--amber);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .featured-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .featured-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        .featured-card-link {
            color: var(--amber);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .featured-card-link:hover {
            color: var(--navy);
        }

        /* Community Tone */
        #community_tone {
            background-color: white;
            padding: 5rem 2rem;
        }

        .community-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .community-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 400px;
            order: 2;
        }

        .community-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .community-text {
            order: 1;
        }

        .community-text h2 {
            margin-bottom: 1.5rem;
        }

        .community-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1rem;
        }

        .community-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .community-list li {
            color: var(--text-dark);
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .community-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--amber);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* CTA Explore */
        #cta_explore {
            background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-container h2 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
        }

        .cta-container p {
            color: #cbd5e1;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--amber);
            color: var(--navy);
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn:hover {
            background-color: #f0a020;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background-color: var(--navy);
            color: white;
            margin-top: 4rem;
        }

        .footer-top {
            padding: 3rem 2rem;
            background-color: var(--navy);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-column h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
        }

        .footer-column p {
            color: #cbd5e1;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-column ul li a {
            color: #cbd5e1;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--amber);
        }

        .footer-bottom {
            padding: 2rem;
            background-color: #0a0f1a;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero-container,
            .community-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-image-container,
            .community-image-container {
                height: 300px;
            }

            .pillars-grid,
            .featured-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 1.5rem;
                font-size: 0.85rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .community-image-container {
                order: 1;
            }

            .community-text {
                order: 2;
            }
        }

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

            h2 {
                font-size: 1.4rem;
            }

            section {
                padding: 2.5rem 1.5rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }

            header nav {
                flex-direction: column;
                gap: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
