.cpsp-site {
    --cpsp-ink: #1c1721;
    --cpsp-muted: #5c5365;
    --cpsp-paper: #fffaf2;
    --cpsp-yellow: #ffcf24;
    --cpsp-pink: #e31b58;
    --cpsp-green: #1f8f52;
    --cpsp-blue: #1f5fbf;
    color: var(--cpsp-ink);
    background: #fff;
    font-family: inherit;
    overflow: hidden;
}

.cpsp-site * {
    box-sizing: border-box;
}

.cpsp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cpsp-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px max(18px, calc((100vw - 1180px) / 2));
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #6a2bbf, #1467d8, #008b4c, #ffcf24, #f27a16, #e31b58) 1;
    background:
        linear-gradient(135deg, rgba(255, 207, 36, .2), rgba(227, 27, 88, .08)),
        #fff1d6;
    backdrop-filter: blur(18px);
}

.cpsp-brand,
.cpsp-header nav a,
.cpsp-footer a {
    color: var(--cpsp-ink);
    font-weight: 900;
    text-decoration: none;
}

.cpsp-brand {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .7);
    white-space: nowrap;
}

.cpsp-brand img {
    display: block;
    width: auto;
    max-width: 154px;
    max-height: 48px;
    object-fit: contain;
}

.cpsp-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
}

.cpsp-menu-toggle {
    display: none !important;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 999px;
    background: var(--cpsp-ink);
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--cpsp-yellow);
}

.cpsp-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
}

.cpsp-header__button,
.cpsp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 2px solid var(--cpsp-ink);
    border-radius: 999px;
    background: var(--cpsp-ink);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--cpsp-yellow);
}

.cpsp-button--ghost {
    background: #fff;
    color: var(--cpsp-ink);
    box-shadow: 5px 5px 0 var(--cpsp-green);
}

.cpsp-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 28px;
    align-items: center;
    min-height: 560px;
    padding: clamp(38px, 5vw, 58px) max(20px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(135deg, rgba(255, 138, 0, .98), rgba(255, 207, 36, .94) 36%, rgba(227, 27, 88, .94) 70%, rgba(123, 63, 191, .96)),
        #ff8a00;
    color: #fff;
}

.cpsp-hero::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255, 255, 255, .42);
    pointer-events: none;
}

.cpsp-hero__content,
.cpsp-hero__panel {
    position: relative;
    z-index: 1;
}

.cpsp-logo-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 11px 16px;
    border: 1px solid rgba(28, 23, 33, .08);
    border-radius: 12px;
    background: rgba(255, 248, 237, .9);
    backdrop-filter: blur(14px);
}

.cpsp-logo-card img {
    width: auto;
    max-width: 132px;
    max-height: 48px;
    object-fit: contain;
}

.cpsp-hero p {
    margin: 0;
    color: #fff;
    font-weight: 900;
}

.cpsp-hero-logo {
    display: block;
    width: min(100%, 410px) !important;
    max-width: 410px !important;
    max-height: none;
    margin: 18px 0 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    box-shadow: none;
    filter: drop-shadow(0 18px 28px rgba(28, 23, 33, .28));
}

.cpsp-date {
    width: fit-content;
    margin: 0 0 24px;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, .74);
    background: rgba(28, 23, 33, .2);
    color: var(--cpsp-ink);
    color: #fff;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 900;
    line-height: 1.05;
}

.cpsp-date span {
    display: block;
    margin-top: 6px;
    font-size: 17px;
}

.cpsp-lead {
    max-width: 740px;
    margin-top: 14px !important;
    color: #fff !important;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.48;
}

.cpsp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.cpsp-hero__side {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.cpsp-hero__panel,
.cpsp-video__frame {
    min-height: 320px;
    max-height: 520px;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: 18px;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(18px);
}

.cpsp-video-empty {
    display: grid;
    gap: 8px;
    place-items: center;
    min-height: 220px;
    width: 100%;
    padding: 18px;
    overflow-wrap: anywhere;
    border: 2px dashed rgba(255, 255, 255, .72);
    border-radius: 14px;
    color: #fff;
    text-align: center;
}

.cpsp-video-empty strong,
.cpsp-video-empty span {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.cpsp-video-link {
    display: inline-flex;
    margin-top: 12px;
    color: #fff;
    font-weight: 900;
}

.cpsp-hero__panel .instagram-media,
.cpsp-video__frame .instagram-media {
    max-width: 100% !important;
    min-width: 0 !important;
}

.cpsp-marquee {
    max-width: 100%;
    margin-top: 0;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, .38);
    border-bottom: 2px solid rgba(255, 255, 255, .38);
    border-radius: 0;
    background: linear-gradient(90deg, #6a2bbf, #1467d8, #008b4c, #ffcf24, #f27a16, #e31b58);
    color: #fff;
    box-shadow: 0 18px 45px rgba(28, 23, 33, .14);
}

.cpsp-marquee div {
    display: flex;
    width: max-content;
    gap: 24px;
    padding: 13px 0;
    animation: cpsp-marquee 24s linear infinite;
}

.cpsp-marquee span {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(28, 23, 33, .28);
}

@keyframes cpsp-marquee {
    from {
        transform: translateX(8%);
    }
    to {
        transform: translateX(-55%);
    }
}

.cpsp-section {
    padding: clamp(58px, 8vw, 96px) max(20px, calc((100vw - 1180px) / 2));
    background: #fff;
}

.cpsp-section:nth-of-type(odd) {
    background: var(--cpsp-paper);
}

.cpsp-agenda {
    background: linear-gradient(180deg, #fffaf2 0%, #fff 70%) !important;
}

.cpsp-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 207, 36, .24), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(227, 27, 88, .32), transparent 30%),
        linear-gradient(135deg, #35146a 0%, #4a257d 46%, #6a2bbf 100%) !important;
    color: #fff;
}

.cpsp-about::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    pointer-events: none;
}

.cpsp-about .cpsp-section__head p,
.cpsp-about .cpsp-section__head h2,
.cpsp-about .cpsp-section__head span {
    color: #fff;
}

.cpsp-about .cpsp-text-grid p {
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.cpsp-about__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
}

.cpsp-about__intro {
    display: grid;
    align-content: end;
    min-height: 470px;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
        rgba(255, 255, 255, .08);
    box-shadow: 0 30px 80px rgba(16, 10, 32, .28);
    backdrop-filter: blur(18px);
}

.cpsp-about__intro p {
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--cpsp-yellow);
    color: var(--cpsp-ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-about__intro h2 {
    max-width: 560px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(46px, 7vw, 92px);
    line-height: .9;
}

.cpsp-about__intro strong {
    display: block;
    max-width: 620px;
    color: #fff;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.1;
}

.cpsp-about__intro span {
    display: block;
    max-width: 560px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
}

.cpsp-about__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cpsp-about__cards article {
    position: relative;
    min-height: 145px;
    padding: 24px 24px 24px 92px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    color: var(--cpsp-ink);
    box-shadow: 0 18px 42px rgba(16, 10, 32, .18);
}

.cpsp-about__cards article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 9px;
    background: linear-gradient(180deg, #ffcf24, #f27a16, #e31b58);
}

.cpsp-about__cards small {
    position: absolute;
    left: 24px;
    top: 24px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #7426bd, #e31b58);
    color: #fff;
    font-weight: 900;
}

.cpsp-about__cards h3 {
    margin: 0 0 8px;
    color: var(--cpsp-ink);
    font-size: 28px;
    line-height: 1;
}

.cpsp-about__cards p {
    margin: 0;
    color: var(--cpsp-muted);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

.cpsp-about__ribbon {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.cpsp-about__ribbon span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.cpsp-gallery {
    background:
        linear-gradient(180deg, #fff 0%, #fffaf2 100%) !important;
}

.cpsp-team {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 14%, rgba(31, 143, 82, .18), transparent 28%),
        linear-gradient(135deg, #e8f7ed 0%, #f7fff9 100%) !important;
}

.cpsp-signups {
    background: linear-gradient(135deg, #5b21b6, #e31b58 58%, #ff8a00) !important;
    color: #fff;
}

.cpsp-signups .cpsp-section__head p,
.cpsp-signups .cpsp-section__head h2,
.cpsp-signups .cpsp-section__head span {
    color: #fff;
}

.cpsp-attractions {
    background:
        radial-gradient(circle at 85% 12%, rgba(227, 27, 88, .14), transparent 28%),
        linear-gradient(180deg, #fff0d9 0%, #fff8ea 100%) !important;
}

.cpsp-faq {
    background: #fff !important;
}

.cpsp-contact {
    background: #f2ecff !important;
}

.cpsp-section__head {
    max-width: 880px;
    margin-bottom: 34px;
}

.cpsp-section__head p {
    margin: 0 0 10px;
    color: var(--cpsp-blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-section__head h2 {
    margin: 0;
    color: var(--cpsp-ink);
    font-size: clamp(38px, 6vw, 76px);
    line-height: .95;
    letter-spacing: 0;
}

.cpsp-section__head span {
    display: block;
    margin-top: 16px;
    color: var(--cpsp-muted);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

.cpsp-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cpsp-agenda .cpsp-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    align-items: stretch;
}

.cpsp-card,
.cpsp-agenda-row,
.cpsp-attraction,
.cpsp-faq-list details {
    border: 1px solid rgba(28, 23, 33, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 40px rgba(28, 23, 33, .08);
}

.cpsp-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
}

.cpsp-agenda-card {
    position: relative;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(28, 23, 33, .12);
}

.cpsp-agenda-card::before {
    display: none;
}

.cpsp-agenda-card__top {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    width: 100%;
    min-height: 76px;
    margin: 0;
    padding: 18px 20px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(135deg, #7426bd 0%, #b41cb3 44%, #e31b58 100%);
    color: #fff;
}

.cpsp-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--cpsp-yellow);
    font-size: 13px;
    font-weight: 900;
}

.cpsp-agenda-card__top span {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    line-height: 1.05;
    white-space: normal;
}

.cpsp-agenda-card__top b {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--cpsp-ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-agenda-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 20px 20px;
}

.cpsp-agenda-card__body h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.cpsp-agenda-card__body p {
    margin: 0 0 16px;
}

.cpsp-agenda-card__meta {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.cpsp-agenda-card__meta span {
    display: block;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff4cf;
    color: var(--cpsp-ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.cpsp-card h3,
.cpsp-agenda-row h3,
.cpsp-attraction h3 {
    margin: 0 0 10px;
    color: var(--cpsp-ink);
    font-size: 24px;
    line-height: 1.08;
}

.cpsp-card p,
.cpsp-agenda-row p,
.cpsp-attraction p {
    color: var(--cpsp-muted);
    font-weight: 700;
    line-height: 1.48;
}

.cpsp-card small {
    margin-top: auto;
    font-weight: 900;
}

.cpsp-link-button {
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--cpsp-pink);
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-center-button {
    margin: 28px auto 0;
}

.cpsp-expanded {
    display: none;
    margin-top: 34px;
    padding: 26px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 138, 0, .16), rgba(255, 207, 36, .16), rgba(31, 143, 82, .1), rgba(227, 27, 88, .1)),
        #fff;
    box-shadow: inset 0 0 0 1px rgba(28, 23, 33, .08), 0 22px 50px rgba(28, 23, 33, .08);
}

.cpsp-expanded.is-open {
    display: block;
}

.cpsp-agenda-row {
    display: grid;
    grid-template-columns: minmax(150px, 190px) 1fr;
    gap: 0;
    padding: 0;
    margin-top: 14px;
    overflow: hidden;
    border: 0;
    background: #fff;
}

.cpsp-agenda-row div {
    margin-top: 8px;
    font-weight: 800;
}

.cpsp-agenda-row__date {
    display: grid;
    align-content: center;
    gap: 10px;
    margin-top: 0 !important;
    padding: 22px;
    background: linear-gradient(135deg, #6a2bbf, #e31b58);
    color: #fff;
}

.cpsp-agenda-row__date span {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.05;
}

.cpsp-agenda-row__date b {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--cpsp-ink);
    font-size: 11px;
    text-transform: uppercase;
}

.cpsp-agenda-row__body {
    margin-top: 0 !important;
    padding: 24px;
}

.cpsp-agenda-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px !important;
}

.cpsp-agenda-meta span {
    display: inline-flex;
    gap: 5px;
    padding: 9px 11px;
    border-radius: 999px;
    background: #fff3d0;
    color: var(--cpsp-ink);
    font-size: 13px;
}

.cpsp-text-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cpsp-text-grid p,
.cpsp-wide-text {
    margin: 0;
    padding: 24px;
    border: 2px solid var(--cpsp-ink);
    background: #fff;
    color: var(--cpsp-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.58;
}

.cpsp-gallery__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}

.cpsp-gallery__stamp {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #6a2bbf, #e31b58);
    color: #fff;
    box-shadow: 0 24px 55px rgba(28, 23, 33, .16);
}

.cpsp-gallery__stamp strong {
    display: block;
    color: var(--cpsp-yellow);
    font-size: 46px;
    line-height: 1;
}

.cpsp-gallery__stamp span {
    display: block;
    margin-top: 8px;
    font-weight: 900;
    line-height: 1.25;
}

.cpsp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 82px;
    gap: 14px;
}

.cpsp-gallery-item {
    position: relative;
    min-height: 180px;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    background: #eee;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(28, 23, 33, .14);
    transform: rotate(var(--cpsp-tilt, 0deg));
}

.cpsp-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: inherit;
    pointer-events: none;
}

.cpsp-gallery-item.is-featured {
    grid-column: span 6;
    grid-row: span 5;
    --cpsp-tilt: -1deg;
}

.cpsp-collage-2,
.cpsp-collage-5 {
    grid-column: span 3;
    grid-row: span 3;
    --cpsp-tilt: 1.4deg;
}

.cpsp-collage-3,
.cpsp-collage-4,
.cpsp-collage-6 {
    grid-column: span 3;
    grid-row: span 2;
    --cpsp-tilt: -.8deg;
}

.cpsp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpsp-empty-gallery {
    padding: 40px;
    border: 2px dashed rgba(28, 23, 33, .24);
    border-radius: 14px;
    color: var(--cpsp-muted);
    font-weight: 900;
}

.cpsp-gallery-note {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--cpsp-muted);
    font-size: 18px;
    font-weight: 800;
}

.cpsp-mini-head {
    margin-top: 52px;
}

.cpsp-team__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}

.cpsp-team__hero > div {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(28, 23, 33, .09);
}

.cpsp-team__hero > div p {
    margin: 0 0 12px;
    color: var(--cpsp-blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-team__hero h2 {
    margin: 0;
    color: var(--cpsp-ink);
    font-size: clamp(46px, 7vw, 88px);
    line-height: .92;
}

.cpsp-team__hero > div span {
    display: block;
    max-width: 900px;
    margin-top: 18px;
    color: var(--cpsp-muted);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.38;
}

.cpsp-team__hero aside {
    display: grid;
    align-content: end;
    padding: clamp(26px, 4vw, 38px);
    border-radius: 26px;
    background: linear-gradient(135deg, #1f8f52, #008b4c);
    color: #fff;
    box-shadow: 0 22px 55px rgba(31, 143, 82, .22);
}

.cpsp-team__hero aside strong {
    display: block;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1;
}

.cpsp-team__hero aside small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

.cpsp-team__values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cpsp-team__values span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--cpsp-ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(28, 23, 33, .08);
}

.cpsp-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 178px), 1fr));
    gap: 22px;
}

.cpsp-person {
    padding: 22px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    text-align: center;
    box-shadow: 0 18px 36px rgba(28, 23, 33, .08);
}

.cpsp-site .cpsp-team-grid .cpsp-person .cpsp-person__photo-frame {
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
    height: 154px !important;
    min-height: 154px !important;
    max-height: 154px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 auto 14px !important;
    border: 5px solid var(--cpsp-green) !important;
    border-radius: 9999px !important;
    background: var(--cpsp-paper) !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    box-shadow: 0 12px 28px rgba(28, 23, 33, .12) !important;
}

.cpsp-site .cpsp-team-grid .cpsp-person .cpsp-person__photo-frame img {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
}

.cpsp-site .cpsp-team-grid .cpsp-person .cpsp-person__photo-frame span {
    color: var(--cpsp-pink);
    font-size: 54px;
    font-weight: 900;
}

.cpsp-person h3 {
    margin: 0;
    font-size: 20px;
}

.cpsp-person p {
    margin: 4px 0 0;
    color: var(--cpsp-muted);
    font-weight: 800;
}

.cpsp-impact {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 207, 36, .22), transparent 30%),
        linear-gradient(135deg, #0e6f3a 0%, #1f8f52 48%, #0f5f7a 100%) !important;
    color: #fff;
}

.cpsp-impact__layout {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: stretch;
}

.cpsp-impact__copy {
    display: grid;
    align-content: end;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 26px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 28px 70px rgba(18, 12, 25, .18);
    backdrop-filter: blur(16px);
}

.cpsp-impact__copy p {
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--cpsp-yellow);
    color: var(--cpsp-ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-impact__copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 7vw, 82px);
    line-height: .92;
}

.cpsp-impact__copy span,
.cpsp-impact__copy strong,
.cpsp-impact__copy small {
    display: block;
    color: #fff;
}

.cpsp-impact__copy span {
    margin-top: 18px;
    color: rgba(255, 255, 255, .9);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.38;
}

.cpsp-impact__copy strong {
    margin-top: 22px;
    color: #fff;
    font-size: 18px;
    line-height: 1.55;
}

.cpsp-impact__copy small {
    margin-top: 16px;
    color: var(--cpsp-yellow);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.cpsp-wide-text {
    max-width: 980px;
    margin-bottom: 24px;
}

.cpsp-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cpsp-impact-grid article {
    position: relative;
    min-height: 150px;
    padding: 22px;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 207, 36, .24), rgba(255, 255, 255, .1)),
        rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .46);
    box-shadow: 0 20px 50px rgba(18, 12, 25, .18);
}

.cpsp-impact-grid article:first-child {
    grid-column: span 2;
}

.cpsp-impact-grid article::before {
    content: "";
    position: absolute;
    inset: auto -30px -48px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 207, 36, .28);
}

.cpsp-impact-grid strong {
    position: relative;
    display: block;
    color: var(--cpsp-yellow);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    text-shadow: 0 8px 24px rgba(28, 23, 33, .22);
}

.cpsp-impact-grid span {
    display: block;
    margin-top: 10px;
    font-weight: 900;
    line-height: 1.25;
}

.cpsp-attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 22px;
}

.cpsp-attractions__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 22px;
    align-items: end;
    margin-bottom: 34px;
}

.cpsp-attractions__head .cpsp-section__head {
    margin-bottom: 0;
}

.cpsp-attractions__head > strong {
    display: block;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffcf24, #f27a16);
    color: var(--cpsp-ink);
    font-size: 22px;
    line-height: 1.15;
    box-shadow: 0 22px 48px rgba(242, 122, 22, .18);
}

.cpsp-attraction {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(28, 23, 33, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.cpsp-attraction:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(28, 23, 33, .16);
}

.cpsp-attraction__media {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    background: linear-gradient(135deg, #ffcf24, #e31b58, #1f5fbf);
}

.cpsp-attraction__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(28, 23, 33, .26));
    pointer-events: none;
}

.cpsp-attraction__media img,
.cpsp-attraction__placeholder {
    width: 100%;
    aspect-ratio: 5 / 4;
    display: block;
    background: linear-gradient(135deg, #ffcf24, #e31b58, #1f5fbf);
    object-fit: cover;
}

.cpsp-attraction__placeholder {
    display: grid;
    place-items: center;
}

.cpsp-attraction__placeholder span {
    margin: 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--cpsp-ink);
}

.cpsp-attraction__body {
    padding: 22px !important;
}

.cpsp-attraction__body > span {
    display: block;
    margin-bottom: 10px;
    color: var(--cpsp-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cpsp-attraction a {
    display: inline-flex;
    margin-top: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff0d9;
    color: var(--cpsp-pink);
    font-weight: 900;
    text-decoration: none;
}

.cpsp-faq-list {
    display: grid;
    gap: 12px;
}

.cpsp-faq-list details {
    padding: 18px 20px;
}

.cpsp-faq-list summary {
    cursor: pointer;
    font-size: 19px;
    font-weight: 900;
}

.cpsp-faq-list p {
    margin: 12px 0 0;
    color: var(--cpsp-muted);
    font-weight: 700;
    line-height: 1.5;
}

.cpsp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 22px;
}

.cpsp-contact-form,
.cpsp-contact-info {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(28, 23, 33, .08);
}

.cpsp-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cpsp-contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 900;
}

.cpsp-contact-form label:last-of-type {
    grid-column: 1 / -1;
}

.cpsp-contact-form input,
.cpsp-contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 2px solid rgba(28, 23, 33, .18);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
}

.cpsp-contact-form button,
.cpsp-form-ok {
    grid-column: 1 / -1;
}

.cpsp-form-ok {
    padding: 12px 14px;
    border-radius: 10px;
    background: #dff6e8;
    color: #126533;
    font-weight: 900;
}

.cpsp-contact-info {
    display: grid;
    align-content: start;
    gap: 10px;
}

.cpsp-contact-info strong {
    margin-top: 12px;
    color: var(--cpsp-blue);
    text-transform: uppercase;
}

.cpsp-contact-info a {
    color: var(--cpsp-ink);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.cpsp-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    padding: 42px max(20px, calc((100vw - 1180px) / 2));
    background: var(--cpsp-ink);
    color: #fff;
}

.cpsp-footer img {
    width: 170px;
    max-width: 100%;
    height: auto;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
}

.cpsp-footer h2 {
    margin: 16px 0 8px;
    color: #fff;
}

.cpsp-footer p,
.cpsp-footer small {
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.cpsp-footer nav,
.cpsp-footer div:last-child {
    display: grid;
    align-content: start;
    gap: 10px;
}

.cpsp-footer a {
    color: #fff;
}

.cpsp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(28, 23, 33, .88);
}

.cpsp-lightbox img {
    max-width: min(100%, 1100px);
    max-height: 88vh;
    border-radius: 12px;
    object-fit: contain;
}

.cpsp-lightbox button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    font-weight: 900;
}

.cpsp-admin .cpsp-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 1100px;
}

.cpsp-admin-field,
.cpsp-repeat-row label {
    display: grid;
    gap: 5px;
    font-weight: 700;
}

.cpsp-admin-field input,
.cpsp-repeat-row input {
    width: 100%;
}

.cpsp-repeat {
    display: grid;
    gap: 12px;
    max-width: 1100px;
}

.cpsp-repeat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    border: 1px solid #dcdcde;
    background: #fff;
}

.cpsp-repeat-row strong {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .cpsp-header {
        position: sticky;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
    }

    .cpsp-menu-toggle {
        display: inline-flex !important;
    }

    .cpsp-header nav,
    .cpsp-header__button {
        display: none;
    }

    .cpsp-header.is-open nav,
    .cpsp-header.is-open .cpsp-header__button {
        display: grid;
        grid-column: 1 / -1;
        width: 100%;
    }

    .cpsp-header nav {
        gap: 0;
        border: 0;
        border-radius: 18px;
        overflow: hidden;
        background:
            linear-gradient(135deg, rgba(255, 207, 36, .24), rgba(227, 27, 88, .12)),
            #fff;
        box-shadow: 0 18px 36px rgba(28, 23, 33, .14);
    }

    .cpsp-header nav a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(28, 23, 33, .08);
    }

    .cpsp-header nav a:last-child {
        border-bottom: 0;
    }

    .cpsp-hero,
    .cpsp-about__layout,
    .cpsp-gallery__intro,
    .cpsp-team__hero,
    .cpsp-impact__layout,
    .cpsp-attractions__head,
    .cpsp-contact-grid,
    .cpsp-footer {
        grid-template-columns: 1fr;
    }

    .cpsp-hero {
        min-height: 0;
        padding-top: 30px;
    }

    .cpsp-card-grid,
    .cpsp-text-grid,
    .cpsp-impact-grid,
    .cpsp-attraction-grid,
    .cpsp-gallery-grid,
    .cpsp-contact-form,
    .cpsp-admin .cpsp-admin-grid,
    .cpsp-repeat-row {
        grid-template-columns: 1fr;
    }

    .cpsp-gallery-item.is-featured {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .cpsp-gallery-grid {
        grid-auto-rows: auto;
    }

    .cpsp-gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 230px;
        transform: none;
    }

    .cpsp-gallery__stamp {
        padding: 20px;
    }

    .cpsp-hero-logo {
        width: min(100%, 320px) !important;
        max-width: 320px !important;
        max-height: none;
        margin: 14px 0 18px;
    }

    .cpsp-hero__panel,
    .cpsp-video__frame {
        min-height: 260px;
        max-height: none;
    }

    .cpsp-logo-card {
        width: min(274px, calc(100vw - 64px));
        justify-content: center;
        gap: 12px;
    }

    .cpsp-logo-card img {
        max-width: 118px;
        max-height: 38px;
    }

    .cpsp-logo-card img:last-child {
        max-width: 94px;
    }

    .cpsp-about::before {
        inset: 14px;
        border-radius: 20px;
    }

    .cpsp-about__intro {
        min-height: 0;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .cpsp-about__intro h2 {
        font-size: clamp(42px, 15vw, 64px);
    }

    .cpsp-about__intro strong {
        font-size: 22px;
    }

    .cpsp-about__cards article {
        min-height: 0;
        padding: 88px 20px 22px;
    }

    .cpsp-about__cards small {
        left: 20px;
        top: 20px;
    }

    .cpsp-marquee span {
        font-size: 14px;
    }

    .cpsp-agenda-row {
        grid-template-columns: 1fr;
    }

    .cpsp-agenda-row__date {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .cpsp-agenda-meta span {
        width: 100%;
        border-radius: 14px;
    }

    .cpsp-team__hero > div,
    .cpsp-team__hero aside,
    .cpsp-impact__copy,
    .cpsp-attractions__head > strong {
        border-radius: 20px;
    }

    .cpsp-team__hero > div span {
        font-size: 18px;
    }

    .cpsp-impact-grid article:first-child {
        grid-column: auto;
    }

    .cpsp-impact__copy h2 {
        font-size: clamp(42px, 14vw, 64px);
    }

    .cpsp-attractions__head > strong {
        font-size: 19px;
    }
}
