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

:root {
            --dusty-rose: #be185d;
            --cream: #fffbeb;
            --dark-brown: #451a03;
            --light-gray: #f5f5f5;
            --border-gray: #e5e5e5;
        }

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

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

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

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lora', serif;
            font-weight: 700;
            line-height: 1.2;
        }

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

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

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

        p {
            margin-bottom: 1rem;
            font-size: 1rem;
        }

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

        a:hover {
            color: var(--dark-brown);
        }

        header {
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-gray);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .brand {
            font-family: 'Lora', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-brown);
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--dark-brown);
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

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

        nav a.active {
            background-color: var(--dusty-rose);
            color: #ffffff;
        }

        main {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        section {
            padding: 4rem 2rem;
        }

        .hero {
            position: relative;
            height: 600px;
            overflow: hidden;
            padding: 0;
            display: flex;
            align-items: flex-end;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 3rem 2rem 3rem 3rem;
            max-width: 50%;
        }

        .hero-content h1 {
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .hero-content p {
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 500;
        }

        .mission-statement {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 3rem;
            align-items: center;
        }

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

        .mission-text p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .mission-image {
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }

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

        .audience-section {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 3rem;
            align-items: center;
        }

        .audience-image {
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }

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

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

        .audience-text p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .audience-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .audience-list li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 1rem;
        }

        .audience-list li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--dusty-rose);
            font-weight: bold;
        }

        .content-flow {
            background-color: var(--light-gray);
            padding: 3rem;
            border-radius: 4px;
            margin: 2rem 0;
        }

        .content-flow h3 {
            margin-bottom: 1rem;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .process-step {
            text-align: center;
        }

        .process-step-number {
            font-family: 'Lora', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dusty-rose);
            margin-bottom: 0.5rem;
        }

        .process-step h4 {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .process-step p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .stat-highlight {
            background-color: #ffffff;
            border-left: 4px solid var(--dusty-rose);
            padding: 2rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .cta-section {
            padding: 5rem 2rem;
            text-align: center;
            background-color: var(--cream);
            border-radius: 4px;
            margin-top: 3rem;
        }

        .cta-section h2 {
            margin-bottom: 0.5rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background-color: var(--dusty-rose);
            color: #ffffff;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: var(--dark-brown);
            color: #ffffff;
        }

        .btn-secondary {
            background-color: var(--dark-brown);
            color: #ffffff;
        }

        .btn-secondary:hover {
            background-color: var(--dusty-rose);
        }

        footer {
            background-color: var(--dark-brown);
            color: #ffffff;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

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

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

        .footer-column a {
            color: #ffffff;
            transition: color 0.3s ease;
        }

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

        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

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

            h2 {
                font-size: 1.8rem;
            }

            nav {
                gap: 1rem;
            }

            nav a {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }

            .hero {
                height: 400px;
            }

            .hero-content {
                max-width: 100%;
                padding: 2rem;
            }

            .mission-statement {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .audience-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1rem;
            }

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            nav {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }

            nav a {
                width: 100%;
                text-align: center;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            section {
                padding: 2rem 1rem;
            }

            .hero {
                height: 300px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
