.cta-banner {
    background: var(--red);
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: 'RAKI-YATA';
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 300px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.cta-banner-left {
    position: relative;
    z-index: 2;
}

.cta-banner-left h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: 2px;
    color: white;
    line-height: 1.0;
    margin-bottom: 14px;
}

.cta-banner-left p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 480px;
}

.cta-banner-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.btn-white {
    background: white;
    color: var(--red);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    white-space: nowrap;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-1px);
}

.btn-white-ghost {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
    white-space: nowrap;
}

.btn-white-ghost:hover {
    color: white;
    gap: 12px;
}

.btn-white-ghost::after {
    content: '→';
}