.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: 650px;
    padding: 0;
    background: #ffffff;
}

.split-media {
    position: relative;
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 81px 8vw;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.split-content h2 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    text-transform: uppercase;
    color: var(--green);
    line-height: 1.1;
}

.split-content h2 span {
    font-weight: 400;
    color: var(--ink);
    display: block;
}

.experience-badge {
    background: var(--green);
    color: #ffffff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 170px;
    margin-left: -14vw;
    z-index: 10;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge .number {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 0.9;
}

.manifesto-actions {
    margin-top: 50px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.newsletter {
    background: var(--green-dark);
    color: #f3f7f4;
    text-align: center;
    padding: 108px 8vw;
    display: flex;
    justify-content: center;
}

.newsletter-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter .eyebrow {
    margin-bottom: 12px;
}

.newsletter h2 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin: 0 0 24px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.newsletter .subhead {
    margin: 0 auto 48px;
    max-width: 540px;
    opacity: 0.85;
}

.newsletter-form {
    margin: 0 auto 24px;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px;
    gap: 8px;
    width: 100%;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 24px;
    color: #f3f7f4;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    border: none;
    background: #f5f7f4;
    color: var(--green-dark);
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split-media {
        min-height: 400px;
    }

    .experience-badge {
        margin-left: 0;
        margin-bottom: -40px;
        padding: 30px 24px;
        min-width: 140px;
    }

    .experience-badge .number {
        font-size: 3.5rem;
    }
}

@media (max-width: 700px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        padding: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        margin-bottom: 12px;
        width: 100%;
        padding: 16px 20px;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 12px;
        padding: 16px;
    }
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 8vw 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--green-mid, #2d5c49);
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-col a,
.footer-policy-link {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 0.2s;
}

.footer-col a:hover,
.footer-policy-link:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* ═══ POLICY MODALS ═══ */
.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.policy-modal.open {
    opacity: 1;
    pointer-events: all;
}

.policy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 15, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.policy-panel {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    padding: 48px 48px 64px;
    transform: translateY(40px);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.policy-modal.open .policy-panel {
    transform: translateY(0);
}

.policy-modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--stone, #e4e1db);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -36px;
    z-index: 10;
    transition: background 0.2s;
}

.policy-modal-close:hover {
    background: var(--ink);
    color: #ffffff;
}

.policy-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    margin: 8px 0 36px;
    letter-spacing: -0.01em;
}

.policy-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--stone, #e4e1db);
}

.policy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-block h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark, #1b4332);
    margin-bottom: 14px;
}

.policy-block p,
.policy-block li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.policy-block ul,
.policy-block ol {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-note {
    font-size: 0.82rem;
    opacity: 0.65;
}

.policy-contact a {
    color: var(--green-dark, #1b4332);
    font-weight: 600;
    text-decoration: none;
}

.policy-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .policy-panel {
        padding: 32px 24px 48px;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }
}
