body.glow-party-page {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: var(--sans);
    overflow-x: hidden;
}

body.glow-party-page a {
    color: inherit;
    text-decoration: none;
}

.glow-party-main {
    position: relative;
    padding-top: 24px;
}

.glow-hero,
.glow-story {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 470px);
    gap: 58px;
    align-items: center;
}

.glow-hero {
    margin-top: 24px;
}

.glow-kicker {
    margin: 0 0 12px;
    color: var(--pink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}

.glow-hero h1 {
    margin: 0;
    color: #6b124f;
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 62px);
    line-height: 0.98;
}

.glow-subtitle {
    margin: 16px 0 20px;
    color: #352331;
    font-family: var(--serif);
    font-size: clamp(23px, 2.1vw, 28px);
    font-weight: 700;
}

.glow-hero__copy > p:last-of-type {
    max-width: 650px;
    margin: 0;
    color: #3a2b35;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.7;
}

.glow-hero__visual {
    position: relative;
    min-height: 470px;
}

.glow-hero__visual::before {
    content: "";
    position: absolute;
    inset: 34px 8px 28px 18px;
    border-radius: 42%;
    background: radial-gradient(circle, rgba(247, 37, 104, 0.16), transparent 68%);
    filter: blur(8px);
}

.glow-hero__visual img {
    position: absolute;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 18px 34px rgba(116, 37, 70, 0.12);
}

.glow-hero__visual img:first-child {
    inset: 0 0 auto auto;
    height: 340px;
}

.glow-hero__visual img:nth-child(2) {
    left: 0;
    bottom: 0;
    width: 54%;
    height: 220px;
}

.glow-hero__visual span {
    position: absolute;
    right: 8%;
    bottom: 42px;
    color: #ff9cb5;
    font-size: 38px;
}

.glow-features,
.glow-gallery {
    width: min(1180px, calc(100% - 56px));
    margin: 88px auto 0;
}

.glow-features h2,
.glow-story h2,
.glow-audience h2,
.glow-gallery h2,
.glow-note h2 {
    margin: 0;
    color: var(--plum);
    font-family: var(--serif);
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1.08;
}

.glow-feature-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glow-feature-card {
    padding: 28px 28px 30px;
    border: 1px solid #f3ded8;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff, #fff7f5);
    box-shadow: 0 14px 28px rgba(116, 37, 70, 0.055);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.glow-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(116, 37, 70, 0.09);
}

.glow-feature-card span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff8a74, #f72568);
    font-size: 22px;
}

.glow-feature-card h3 {
    margin: 18px 0 10px;
    color: #6b124f;
    font-family: var(--serif);
    font-size: 28px;
}

.glow-feature-card p,
.glow-story p,
.glow-gallery p,
.glow-note p,
.glow-audience li {
    color: #392b34;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
}

.glow-story {
    margin-top: 92px;
}

.glow-story p {
    margin: 20px 0 0;
}

.glow-story__images {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 16px;
    align-items: end;
}

.glow-story__images img {
    width: 100%;
    height: 360px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(116, 37, 70, 0.1);
}

.glow-story__images img:last-child {
    height: 280px;
}

.glow-audience {
    width: min(980px, calc(100% - 56px));
    margin: 88px auto 0;
    padding: 38px 42px;
    border: 1px solid #f3ded8;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 230, 199, 0.42), rgba(255, 247, 245, 0.9));
}

.glow-audience ul {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
    list-style: none;
}

.glow-audience li {
    position: relative;
    padding-left: 28px;
}

.glow-audience li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pink);
}

.glow-gallery > p {
    margin: 14px 0 0;
}

.glow-gallery > div {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.glow-gallery img {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 14px 26px rgba(116, 37, 70, 0.08);
    transition: transform 220ms ease;
}

.glow-gallery img:hover {
    transform: scale(1.025);
}

.glow-note {
    width: min(980px, calc(100% - 56px));
    margin: 88px auto 0;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 230, 199, 0.55), rgba(255, 240, 246, 0.7));
}

.glow-note > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff8a74, #f72568);
    font-size: 25px;
}

.glow-note p {
    margin: 12px 0 0;
}

.glow-party-cta {
    margin-top: 88px;
}

.glow-party-cta .faq-cta__inner {
    grid-template-columns: 1fr;
    justify-items: center;
}

.glow-party-cta .faq-cta__text {
    padding-left: 0;
    text-align: center;
}

@media (max-width: 980px) {
    .glow-hero,
    .glow-story {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .glow-hero__visual {
        min-height: 420px;
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .glow-feature-grid,
    .glow-gallery > div {
        grid-template-columns: 1fr;
    }

    .glow-story__images {
        width: min(560px, 100%);
    }
}

@media (max-width: 700px) {
    .glow-party-main {
        padding-top: 18px;
    }

    .glow-hero,
    .glow-features,
    .glow-story,
    .glow-gallery {
        width: calc(100% - 28px);
    }

    .glow-hero__visual {
        min-height: 330px;
    }

    .glow-hero__visual img:first-child {
        height: 245px;
    }

    .glow-hero__visual img:nth-child(2) {
        height: 150px;
    }

    .glow-primary-cta {
        min-width: 100%;
    }

    .glow-audience,
    .glow-note {
        width: calc(100% - 28px);
        box-sizing: border-box;
        padding: 26px 22px;
    }

    .glow-audience ul,
    .glow-story__images {
        grid-template-columns: 1fr;
    }

    .glow-story__images img,
    .glow-story__images img:last-child,
    .glow-gallery img {
        height: 230px;
    }

    .glow-note {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .glow-party-cta {
        margin-top: 56px;
    }
}
