/* Shared landing and wedding closing section. */
.cta-section {
    --coral: #e45558;
    --cream: #ede6dc;
    --maroon: #561023;
    --offwhite: #efe8db;
    font-family: 'Nanum Myeongjo', serif;
    font-size: 16px;
    line-height: normal;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
}
.cta-section, .cta-section * { box-sizing: border-box; }
.cta-section img { display: block; max-width: 100%; }

/* ─── END CTA ─── */
.cta-section {
    display: grid;
    grid-template-columns: 716fr 745fr;
    min-height: 900px;
}

.cta-image {
    position: relative;
    overflow: hidden;
}

.cta-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.cta-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 421px;
    height: 451px;
    pointer-events: none;
}

.cta-star img {
    width: 100%;
    height: 100%;
}

.cta-content {
    background: var(--coral);
    padding: clamp(48px, 7vw, 60px) clamp(24px, 7vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    gap: clamp(28px, 5vw, 40px);
}

.cta-brand {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: clamp(110px, 16vw, 134px);
    flex-shrink: 0;
}

.cta-brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cta-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 30rem);
}

.cta-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    white-space: normal;
    margin-bottom: 20px;
}

.cta-line:first-child {
    margin-bottom: 36px;
}

.cta-caps {
    font-family: 'Nanum Myeongjo', serif;
    font-size: clamp(14px, 2.2vw, 17px);
    font-weight: 700;
    letter-spacing: clamp(4px, 0.65vw, 6.8px);
    color: var(--offwhite);
    text-transform: uppercase;
}

.cta-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(34px, 5.2vw, 44px);
    color: var(--offwhite);
    line-height: 1;
}

.cta-buttons {
    margin-top: clamp(16px, 4vw, 36px);
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cream);
    color: var(--maroon);
    font-family: 'Nanum Myeongjo', serif;
    font-size: clamp(14px, 2.2vw, 17px);
    font-weight: 500;
    text-transform: uppercase;
    padding: 18px 28px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    max-width: 100%;
}

.cta-section .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-cta img {
    width: 9px;
    height: 15px;
}

@media (max-width: 1024px) {
.cta-section {
    grid-template-columns: 1fr;
}

.cta-image {
    min-height: 400px;
}

.cta-star {
    width: 250px;
    height: 270px;
}

.cta-content {
    min-height: 0;
}
}

@media (max-width: 768px) {
.cta-content {
    padding: 40px 20px;
    gap: 24px;
}

.cta-italic {
    font-size: 30px;
}

.cta-caps {
    font-size: 14px;
    letter-spacing: 4px;
}

.cta-section .btn-cta {
    font-size: 14px;
    padding: 14px 20px;
}

.cta-brand {
    width: 100px;
}

.cta-buttons {
    margin-top: 12px;
}
}
