.cta-banner {
    position: relative;
    overflow: hidden;
}
.cta-banner--dark, .cta-banner--image-bg { background: var(--brand-dark); }
.cta-banner--light { background: var(--brand-light); color: var(--brand-dark); }
.cta-banner--light h2 { color: var(--brand-dark); }

.cta-banner__bg {
    position: absolute;
    top: -10%; left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}
.cta-banner__bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0.25;
    filter: grayscale(1);
}
.cta-banner__overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(to top, var(--brand-dark), rgba(38,38,38,0.9), rgba(38,38,38,0.7));
}

.cta-banner__inner {
    position: relative; z-index: 1;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: 1.25rem;
}
@media (min-width: 768px) { .cta-banner__inner { gap: 1.75rem; } }

.cta-banner__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--brand-light);
}
@media (min-width: 768px)  { .cta-banner__title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .cta-banner__title { font-size: 3rem; } }
@media (min-width: 1280px) { .cta-banner__title { font-size: 3.5rem; } }

.cta-banner--light .cta-banner__title { color: var(--brand-dark); font-weight: 700; }

.cta-banner__body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--brand-gray);
    max-width: 44rem;
}
@media (min-width: 768px)  { .cta-banner__body { font-size: 1.125rem; } }
@media (min-width: 1024px) { .cta-banner__body { font-size: 1.25rem; } }
.cta-banner--light .cta-banner__body { color: rgba(38,38,38,0.7); font-weight: 500; }

.cta-banner__actions {
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    margin-top: 0.5rem;
}
@media (min-width: 640px) { .cta-banner__actions { flex-direction: row; gap: 1.25rem; } }

/* Quote band */
.quote-band {
    position: relative;
    height: 36vh;
    width: 100%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-darker);
}
@media (min-width: 768px) { .quote-band { height: 44vh; } }
.quote-band__bg {
    position: absolute; inset: 0;
    top: -10%;
    width: 100%; height: 120%;
}
.quote-band__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
}
.quote-band__overlay {
    position: absolute; inset: 0;
    background: rgba(38,38,38,0.4);
    mix-blend-mode: multiply;
}
.quote-band__inner {
    position: relative; z-index: 1;
    max-width: 56rem;
    text-align: center;
}
.quote-band__text {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(245,245,240,0.6);
    letter-spacing: 0.6em;
    text-transform: uppercase;
}
@media (min-width: 768px) { .quote-band__text { font-size: 0.875rem; } }
.quote-band__attribution {
    margin-top: 1.5rem;
    color: rgba(245,245,240,0.5);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Next page link */
.next-page {
    position: relative;
    min-height: 34vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    cursor: pointer;
    color: var(--brand-light);
    text-decoration: none;
}
@media (min-width: 768px) { .next-page { min-height: 42vh; } }
.next-page__bg {
    position: absolute;
    top: -10%; left: 0;
    width: 100%; height: 120%;
    transition: transform 0.6s var(--premium);
}
.next-page__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}
.next-page:hover .next-page__bg { transform: scale(1.03); }
.next-page__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--brand-darker), rgba(38,38,38,0.8), rgba(38,38,38,0.6));
    transition: opacity 0.5s;
}
.next-page:hover .next-page__overlay { opacity: 0.85; }
.next-page__content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 0 1.5rem;
    display: flex; flex-direction: column; align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) { .next-page__content { gap: 1.5rem; padding: 0 3rem; } }
.next-page__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brand-gray);
    font-weight: 500;
}
@media (min-width: 768px) { .next-page__eyebrow { font-size: 0.85rem; } }
.next-page__title {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.015em;
}
@media (min-width: 768px)  { .next-page__title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .next-page__title { font-size: 3.5rem; } }
.next-page__arrow {
    display: inline-flex;
    transition: transform 0.3s;
}
.next-page:hover .next-page__arrow { transform: translateX(0.5rem); }
