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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: linear-gradient(160deg, #0f2027 0%, #203a43 40%, #2c5364 100%);
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ── */

header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    padding: 0.9rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #0f2027;
}

/* ── Hero ── */

.hero-logo {
    max-height: 220px;
    margin-bottom: 1.5rem;
}

.hero {
    text-align: center;
    padding: 8rem 0 7rem;
    color: white;
    background: linear-gradient(rgba(15, 32, 39, 0.45), rgba(15, 32, 39, 0.55)),
                url('hero.png') center/cover no-repeat;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 0.85rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button-dark {
    background: #0f2027;
    color: white;
    border: 1px solid #0f2027;
}

.cta-button-dark:hover {
    background: #1a3a4a;
    border-color: #1a3a4a;
}

/* ── Content Card ── */

.content {
    background: white;
    margin: 2.5rem 0;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.section {
    padding: 3.5rem 3rem;
}

.section:nth-child(even) {
    background: #f7f8fa;
}

.section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #0f2027;
    text-align: center;
    letter-spacing: -0.01em;
}

.section p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #3a3a4a;
}

/* ── Pillar Cards ── */

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

.pillar {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 3px solid #2c5364;
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pillar h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f2027;
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.pillar p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Subscribe ── */

.subscribe-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* ── About ── */

.about-content {
    max-width: 680px;
    margin: 0 auto;
}

.about-headshot {
    width: 220px;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    float: right;
    margin: 0.3rem 0 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-left: 0;
}

.disclosure {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #e8e8e8;
    padding-top: 1rem;
    margin-top: 1.5rem;
}

/* ── Footer ── */

footer {
    background: #0f2027;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

footer .verse {
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .section {
        padding: 2.5rem 1.5rem;
    }

    .section h2 {
        font-size: 1.7rem;
    }

    .about-headshot {
        float: none;
        display: block;
        margin: 0 auto 1rem;
    }

    .about-content {
        text-align: center;
    }
}
