:root {
    --ppc-ink: #020202;
    --ppc-paper: #ffffff;
    --ppc-white: #ffffff;
    --ppc-muted: rgba(2, 2, 2, .62);
    --ppc-line: rgba(178, 213, 229, .82);
    --ppc-accent: #b2d5e5;
    --ppc-accent-soft: #ffffff;
    --ppc-shell: min(1220px, calc(100% - 64px));
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ppc-paper);
    color: var(--ppc-ink);
}

.focus-skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-skip-link:focus {
    position: fixed;
    z-index: 10001;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--ppc-white);
    color: var(--ppc-ink);
}

.hero-header--ppc {
    position: fixed;
    color: var(--ppc-ink);
    background: linear-gradient(180deg, rgba(178, 213, 229, .94), rgba(178, 213, 229, .24));
    box-shadow: none;
}

.hero-header--ppc.is-scrolled,
.hero-header--ppc.is-menu-open {
    background: rgba(178, 213, 229, .96);
    box-shadow: 0 18px 54px rgba(178, 213, 229, .34);
    backdrop-filter: blur(20px) saturate(115%);
    -webkit-backdrop-filter: blur(20px) saturate(115%);
}

.ppc-landing {
    --ppc-route-x: max(32px, calc((100vw - 1220px) / 2));
    overflow: clip;
    background: var(--ppc-paper);
    color: var(--ppc-ink);
    font-family: var(--ft-font-body);
}

.ppc-landing--petni-trn {
    --ppc-accent: #b2d5e5;
    --ppc-accent-soft: #ffffff;
}

.ppc-landing--kicma {
    --ppc-accent: #b2d5e5;
    --ppc-accent-soft: #ffffff;
}

.ppc-landing h1,
.ppc-landing h2,
.ppc-landing h3,
.ppc-landing strong {
    font-family: var(--ft-font-heading);
}

.ppc-shell {
    width: var(--ppc-shell);
    margin-inline: auto;
}

.ppc-kicker {
    color: currentColor;
    font-family: var(--ft-font-heading);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ppc-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 0;
    border-radius: var(--ft-radius-pill);
    color: var(--ppc-ink);
    font-family: var(--ft-font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ppc-button:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 44px rgba(178, 213, 229, .34);
}

.ppc-button:active {
    transform: scale(.97);
}

.ppc-button--light {
    background: var(--ppc-accent);
    color: var(--ppc-ink);
}

.ppc-button--dark {
    background: var(--ppc-accent);
    color: var(--ppc-ink);
}

.ppc-text-link {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    font-family: var(--ft-font-heading);
    font-size: 13px;
    font-weight: 550;
}

.ppc-text-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform-origin: right;
    transition: transform .25s ease;
}

.ppc-text-link:hover::after {
    transform: scaleX(.35);
}

.ppc-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ppc-white);
    color: var(--ppc-ink);
}

.ppc-hero__media {
    position: absolute;
    z-index: 0;
    top: 92px;
    right: 32px;
    bottom: 32px;
    left: 48%;
    margin: 0;
    overflow: hidden;
    background: var(--ppc-accent);
}

.ppc-hero__media::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background: var(--ppc-accent);
    content: "";
    pointer-events: none;
}

.ppc-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    animation: ppc-hero-settle 1.5s cubic-bezier(.2, .7, .2, 1) both;
}

.ppc-landing--kicma .ppc-hero__media img {
    object-position: 56% center;
}

.ppc-hero__copy {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: max(32px, calc((100vw - 1220px) / 2));
    width: min(690px, 56vw);
    padding: 48px 56px 50px 0;
    background: linear-gradient(90deg, var(--ppc-white) 0%, var(--ppc-white) 84%, rgba(255, 255, 255, .94) 94%, transparent 100%);
    transform: translateY(-44%);
}

.ppc-hero__copy .ppc-kicker {
    margin-bottom: 28px;
    color: var(--ppc-ink);
}

.ppc-hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(54px, 5.7vw, 92px);
    font-weight: 400;
    letter-spacing: -.062em;
    line-height: .93;
}

.ppc-hero__lead {
    width: min(540px, 100%);
    margin: 30px 0 0;
    color: rgba(2, 2, 2, .7);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
}

.ppc-hero__actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 38px;
}

.ppc-hero__index {
    position: absolute;
    z-index: 3;
    top: 92px;
    right: 32px;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: var(--ppc-accent);
    color: var(--ppc-ink);
    font-family: var(--ft-font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.ppc-proof {
    position: relative;
    z-index: 4;
    width: min(1100px, calc(100% - 96px));
    display: grid;
    margin: -54px auto 0;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    background: var(--ppc-white);
    box-shadow: 0 22px 70px rgba(178, 213, 229, .36);
}

.ppc-proof > div {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 30px;
    border-right: 1px solid var(--ppc-line);
}

.ppc-proof > div:first-child {
    background: var(--ppc-accent);
}

.ppc-proof > div:last-child {
    border-right: 0;
}

.ppc-proof strong {
    display: block;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 450;
    letter-spacing: -.045em;
    line-height: 1;
}

.ppc-proof span {
    display: block;
    margin-top: 10px;
    color: var(--ppc-muted);
    font-size: 12px;
    line-height: 1.35;
}

.ppc-proof > div:first-child span {
    color: rgba(2, 2, 2, .7);
}

.ppc-section {
    position: relative;
    padding: clamp(112px, 12vw, 184px) 0;
}

.ppc-section__head {
    width: min(760px, 100%);
}

.ppc-section__head .ppc-kicker,
.ppc-plan .ppc-kicker,
.ppc-story .ppc-kicker,
.ppc-faq .ppc-kicker {
    margin-bottom: 20px;
    color: var(--ppc-muted);
}

.ppc-section h2,
.ppc-plan h2,
.ppc-story h2,
.ppc-faq h2,
.ppc-booking h2 {
    margin: 0;
    font-size: clamp(40px, 4.8vw, 68px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .99;
}

.ppc-section__head > p:last-child {
    width: min(590px, 100%);
    margin-top: 26px;
    color: var(--ppc-muted);
    font-size: 17px;
    line-height: 1.65;
}

.ppc-signals {
    padding-top: clamp(142px, 15vw, 220px);
    background: var(--ppc-paper);
}

.ppc-signals::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ppc-route-x);
    width: 1px;
    background: var(--ppc-line);
    content: "";
}

.ppc-signals .ppc-shell {
    position: relative;
    padding-left: clamp(64px, 8vw, 128px);
}

.ppc-signals .ppc-shell::before {
    position: absolute;
    top: 3px;
    left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ppc-accent);
    box-shadow: 0 0 0 8px var(--ppc-paper);
    content: "";
}

.ppc-signals__grid {
    display: grid;
    gap: 0 72px;
    margin-top: clamp(70px, 9vw, 120px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ppc-signals__grid article {
    min-height: 250px;
    display: grid;
    align-content: start;
    padding: 28px 0 44px;
    grid-template-columns: 84px 1fr;
    border-top: 1px solid var(--ppc-line);
}

.ppc-signals__grid article:nth-child(even) {
    margin-top: 76px;
}

.ppc-signals__grid article > span,
.ppc-treatment__grid article > div > span,
.ppc-plan__steps article > span {
    color: var(--ppc-muted);
    font-family: var(--ft-font-heading);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ppc-signals__grid article > span {
    padding-top: 5px;
    color: var(--ppc-ink);
}

.ppc-signals__grid h3 {
    margin: 0;
    font-size: clamp(24px, 2.15vw, 31px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.ppc-signals__grid p {
    grid-column: 2;
    margin-top: 18px;
    color: var(--ppc-muted);
    font-size: 15px;
    line-height: 1.65;
}

.ppc-treatment {
    background: var(--ppc-accent);
    color: var(--ppc-ink);
}

.ppc-treatment::before {
    position: absolute;
    top: 0;
    left: var(--ppc-route-x);
    width: 1px;
    height: 78px;
    background: var(--ppc-accent);
    content: "";
}

.ppc-treatment .ppc-kicker {
    color: var(--ppc-ink);
}

.ppc-section__head--split {
    width: 100%;
    display: grid;
    align-items: end;
    gap: 96px;
    grid-template-columns: 1.35fr .65fr;
}

.ppc-section__head--split > p:last-child {
    margin: 0 0 7px;
    color: rgba(2, 2, 2, .62);
}

.ppc-treatment__grid {
    display: grid;
    gap: 28px 34px;
    margin-top: clamp(72px, 9vw, 120px);
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    grid-template-rows: repeat(2, auto);
}

.ppc-treatment__grid article {
    min-width: 0;
}

.ppc-treatment__grid article:first-child {
    grid-row: 1 / span 2;
}

.ppc-treatment__grid figure {
    margin: 0;
    overflow: hidden;
    background: var(--ppc-white);
}

.ppc-treatment__grid article:first-child figure {
    aspect-ratio: 1.15 / 1;
}

.ppc-treatment__grid article:not(:first-child) {
    display: grid;
    align-items: center;
    gap: 22px;
    grid-template-columns: minmax(150px, .85fr) 1fr;
}

.ppc-treatment__grid article:not(:first-child) figure {
    aspect-ratio: 1 / 1.05;
}

.ppc-treatment__grid .pf-clip {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.ppc-treatment__grid img {
    width: 100%;
    height: calc(100% + 10%);
    display: block;
    object-fit: cover;
}

.ppc-treatment__grid article:first-child > div {
    display: grid;
    gap: 20px 26px;
    padding: 28px 0 0;
    grid-template-columns: 46px minmax(180px, .55fr) 1fr;
}

.ppc-treatment__grid article:not(:first-child) > div {
    padding-right: 8px;
}

.ppc-treatment__grid h3 {
    margin: 10px 0 0;
    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.ppc-treatment__grid article:first-child h3 {
    margin: 0;
}

.ppc-treatment__grid p {
    margin-top: 14px;
    color: rgba(2, 2, 2, .62);
    font-size: 14px;
    line-height: 1.62;
}

.ppc-treatment__grid article:first-child p {
    margin: 0;
}

.ppc-plan {
    overflow: hidden;
    background: var(--ppc-accent-soft);
}

.ppc-plan__intro {
    display: grid;
    align-items: end;
    gap: 28px 80px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.ppc-plan__intro .ppc-kicker,
.ppc-plan__intro h2 {
    grid-column: 1;
}

.ppc-plan__intro .ppc-kicker {
    margin-bottom: -8px;
    color: var(--ppc-ink);
}

.ppc-plan__intro .ppc-text-link {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin-bottom: 8px;
}

.ppc-plan__steps {
    position: relative;
    display: grid;
    gap: 46px;
    margin-top: clamp(74px, 9vw, 118px);
    grid-template-columns: repeat(3, 1fr);
}

.ppc-plan__steps::before {
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(178, 213, 229, .82);
    content: "";
}

.ppc-plan__steps article {
    position: relative;
    padding: 44px 30px 0 0;
}

.ppc-plan__steps article::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border: 3px solid var(--ppc-accent);
    border-radius: 50%;
    background: var(--ppc-accent-soft);
    content: "";
    transform: translateY(-2px);
}

.ppc-plan__steps article:last-child::before {
    background: var(--ppc-accent);
}

.ppc-plan__steps article > span {
    color: rgba(2, 2, 2, .58);
}

.ppc-plan__steps h3 {
    margin-top: 30px;
    font-size: clamp(24px, 2.15vw, 31px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.14;
}

.ppc-plan__steps p {
    max-width: 310px;
    margin-top: 18px;
    color: rgba(2, 2, 2, .66);
    font-size: 15px;
    line-height: 1.62;
}

.ppc-prices {
    background: var(--ppc-paper);
}

.ppc-prices::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 82px;
    background: var(--ppc-line);
    content: "";
}

.ppc-prices__layout {
    display: grid;
    align-items: start;
    gap: 120px;
    grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
}

.ppc-prices .ppc-section__head {
    position: sticky;
    top: 132px;
}

.ppc-prices .ppc-button {
    margin-top: 38px;
}

.ppc-price-list {
    border-top: 2px solid var(--ppc-accent);
}

.ppc-price-list > div {
    display: grid;
    align-items: center;
    gap: 28px;
    min-height: 100px;
    padding: 20px 2px;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--ppc-line);
}

.ppc-price-list > div:first-child {
    min-height: 132px;
    padding-inline: 24px;
    background: var(--ppc-accent);
    border-bottom: 0;
}

.ppc-price-list > div > span {
    max-width: 450px;
    font-size: 15px;
    line-height: 1.45;
}

.ppc-price-list > div:first-child > span {
    font-family: var(--ft-font-heading);
    font-size: 18px;
    font-weight: 500;
}

.ppc-price-list > div p {
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-align: right;
    white-space: nowrap;
}

.ppc-price-list del {
    color: var(--ppc-muted);
    font-size: 12px;
}

.ppc-price-list strong {
    font-size: 22px;
    font-weight: 550;
    letter-spacing: -.03em;
}

.ppc-price-list > div:first-child strong {
    font-size: clamp(27px, 2.5vw, 37px);
}

.ppc-price-list small {
    display: block;
    padding-top: 18px;
    color: var(--ppc-muted);
    font-size: 11px;
}

.ppc-story {
    padding-top: 30px;
    padding-bottom: clamp(130px, 14vw, 210px);
    background: var(--ppc-paper);
}

.ppc-story__layout {
    position: relative;
    min-height: 720px;
}

.ppc-story figure {
    width: 68%;
    min-height: 720px;
    margin: 0;
    overflow: hidden;
    background: var(--ppc-accent-soft);
}

.ppc-story figure img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    display: block;
    object-fit: cover;
}

.ppc-story__layout > div {
    position: absolute;
    top: 50%;
    right: 0;
    width: min(520px, 46%);
    padding: clamp(46px, 5.5vw, 76px);
    background: var(--ppc-white);
    box-shadow: 0 30px 80px rgba(178, 213, 229, .36);
    transform: translateY(-50%);
}

.ppc-story__layout > div::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: var(--ppc-accent);
    content: "";
}

.ppc-story h2 {
    font-size: clamp(38px, 4.2vw, 58px);
}

.ppc-story__layout > div > p:not(.ppc-kicker) {
    margin-top: 28px;
    color: var(--ppc-muted);
    font-size: 16px;
    line-height: 1.65;
}

.ppc-story dl {
    margin-top: 38px;
    border-top: 1px solid var(--ppc-line);
}

.ppc-story dl > div {
    display: grid;
    gap: 18px;
    padding: 15px 0;
    grid-template-columns: 108px 1fr;
    border-bottom: 1px solid var(--ppc-line);
}

.ppc-story dt {
    color: var(--ppc-muted);
    font-size: 11px;
}

.ppc-story dd {
    margin: 0;
    font-family: var(--ft-font-heading);
    font-size: 13px;
}

.ppc-faq {
    background: var(--ppc-accent);
    color: var(--ppc-ink);
}

.ppc-faq .ppc-kicker {
    color: var(--ppc-ink);
}

.ppc-faq__layout {
    display: grid;
    align-items: start;
    gap: 118px;
    grid-template-columns: .72fr 1.28fr;
}

.ppc-faq__list {
    border-top: 1px solid rgba(255, 255, 255, .84);
}

.ppc-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, .84);
}

.ppc-faq summary {
    position: relative;
    padding: 30px 56px 30px 0;
    cursor: pointer;
    font-family: var(--ft-font-heading);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -.025em;
    list-style: none;
}

.ppc-faq summary::-webkit-details-marker {
    display: none;
}

.ppc-faq summary::after {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .94);
    border-radius: 50%;
    content: "+";
    color: var(--ppc-ink);
    font-size: 15px;
    transform: translateY(-50%);
}

.ppc-faq details[open] summary::after {
    content: "−";
}

.ppc-faq details p {
    max-width: 640px;
    padding: 0 56px 30px 0;
    color: rgba(2, 2, 2, .62);
    font-size: 15px;
    line-height: 1.65;
}

.ppc-booking {
    padding: clamp(90px, 10vw, 142px) 0;
    background: var(--ppc-white);
    color: var(--ppc-ink);
}

.ppc-booking .ppc-shell {
    display: grid;
    align-items: end;
    gap: 20px 70px;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
}

.ppc-booking .ppc-kicker,
.ppc-booking h2,
.ppc-booking .ppc-shell > p:not(.ppc-kicker) {
    grid-column: 1;
}

.ppc-booking .ppc-kicker {
    margin: 0;
    color: rgba(2, 2, 2, .68);
}

.ppc-booking h2 {
    max-width: 760px;
}

.ppc-booking .ppc-shell > p:not(.ppc-kicker) {
    max-width: 560px;
    margin: 5px 0 0;
    color: rgba(2, 2, 2, .68);
    font-size: 16px;
    line-height: 1.55;
}

.ppc-booking .ppc-button {
    min-height: 68px;
    grid-row: 1 / span 3;
    grid-column: 2;
    margin-bottom: 5px;
    background: var(--ppc-accent);
    color: var(--ppc-ink);
}

.ppc-mobile-book {
    display: none;
}

@keyframes ppc-hero-settle {
    from {
        opacity: .45;
        transform: scale(1.06);
    }
    to {
        opacity: 1;
        transform: scale(1.015);
    }
}

@media (max-width: 1040px) {
    :root {
        --ppc-shell: min(100% - 48px, 1220px);
    }

    .ppc-hero__copy {
        width: min(630px, 60vw);
    }

    .ppc-proof {
        width: min(920px, calc(100% - 64px));
        grid-template-columns: repeat(2, 1fr);
    }

    .ppc-proof > div:nth-child(2) {
        border-right: 0;
    }

    .ppc-proof > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--ppc-line);
    }

    .ppc-section__head--split {
        gap: 64px;
        grid-template-columns: 1.15fr .85fr;
    }

    .ppc-treatment__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    }

    .ppc-treatment__grid article:not(:first-child) {
        display: block;
    }

    .ppc-treatment__grid article:not(:first-child) figure {
        aspect-ratio: 16 / 10;
    }

    .ppc-treatment__grid article:not(:first-child) > div {
        padding: 20px 0 0;
    }

    .ppc-prices__layout,
    .ppc-faq__layout {
        gap: 72px;
    }

    .ppc-story__layout > div {
        width: min(520px, 52%);
    }
}

@media (max-width: 780px) {
    :root {
        --ppc-shell: min(100% - 32px, 1220px);
    }

    .hero-header--ppc {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero-header--ppc .hero-action {
        display: none;
    }

    .ppc-hero {
        min-height: 100svh;
    }

    .ppc-hero__media {
        inset: 0;
    }

    .ppc-hero__media::before {
        background: linear-gradient(180deg, rgba(178, 213, 229, .24) 15%, rgba(255, 255, 255, .18) 42%, rgba(178, 213, 229, .86) 82%);
    }

    .ppc-hero__media::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: 6px;
    }

    .ppc-hero__media img {
        object-position: 65% center;
    }

    .ppc-landing--kicma .ppc-hero__media img {
        object-position: 58% center;
    }

    .ppc-hero__copy {
        top: auto;
        right: 16px;
        bottom: 44px;
        left: 16px;
        width: auto;
        padding: 24px;
        background: rgba(255, 255, 255, .9);
        transform: none;
    }

    .ppc-hero__copy .ppc-kicker {
        margin-bottom: 17px;
        font-size: 9px;
    }

    .ppc-hero h1 {
        max-width: 640px;
        font-size: clamp(42px, 11.8vw, 62px);
        line-height: .96;
    }

    .ppc-hero__lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .ppc-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-top: 22px;
    }

    .ppc-hero__actions .ppc-button {
        display: none;
    }

    .ppc-hero__index {
        top: 78px;
        right: 16px;
    }

    .ppc-proof {
        width: calc(100% - 32px);
        margin-top: -18px;
    }

    .ppc-proof > div {
        min-height: 112px;
        padding: 20px 16px;
    }

    .ppc-proof strong {
        font-size: 22px;
    }

    .ppc-proof span {
        font-size: 10px;
    }

    .ppc-section {
        padding: 104px 0;
    }

    .ppc-section h2,
    .ppc-plan h2,
    .ppc-story h2,
    .ppc-faq h2,
    .ppc-booking h2 {
        font-size: clamp(38px, 10.6vw, 51px);
    }

    .ppc-section__head > p:last-child {
        font-size: 16px;
    }

    .ppc-signals {
        padding-top: 126px;
    }

    .ppc-signals::before {
        display: none;
    }

    .ppc-signals .ppc-shell {
        padding-left: 0;
    }

    .ppc-signals .ppc-shell::before {
        display: none;
    }

    .ppc-signals__grid {
        display: block;
        margin-top: 60px;
    }

    .ppc-signals__grid article,
    .ppc-signals__grid article:nth-child(even) {
        min-height: 0;
        margin-top: 0;
        padding: 26px 0 36px;
        grid-template-columns: 58px 1fr;
    }

    .ppc-section__head--split {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .ppc-treatment::before {
        height: 54px;
        left: 16px;
    }

    .ppc-treatment__grid {
        display: block;
        margin-top: 62px;
    }

    .ppc-treatment__grid article + article {
        margin-top: 58px;
    }

    .ppc-treatment__grid article:first-child figure,
    .ppc-treatment__grid article:not(:first-child) figure {
        aspect-ratio: 4 / 3.7;
    }

    .ppc-treatment__grid article:first-child > div,
    .ppc-treatment__grid article:not(:first-child) > div {
        display: grid;
        gap: 12px 18px;
        padding: 22px 0 0;
        grid-template-columns: 40px 1fr;
    }

    .ppc-treatment__grid article:first-child h3,
    .ppc-treatment__grid article:not(:first-child) h3 {
        margin: 0;
    }

    .ppc-treatment__grid article:first-child p,
    .ppc-treatment__grid article:not(:first-child) p {
        grid-column: 2;
        margin: 3px 0 0;
    }

    .ppc-plan__intro {
        display: block;
    }

    .ppc-plan__intro .ppc-kicker {
        margin-bottom: 18px;
    }

    .ppc-plan__intro .ppc-text-link {
        margin-top: 28px;
    }

    .ppc-plan__steps {
        display: block;
        margin-top: 60px;
        padding-left: 28px;
    }

    .ppc-plan__steps::before {
        top: 6px;
        bottom: 10px;
        left: 5px;
        width: 1px;
        height: auto;
    }

    .ppc-plan__steps article {
        padding: 0 0 54px;
    }

    .ppc-plan__steps article::before {
        top: 2px;
        left: -28px;
    }

    .ppc-plan__steps h3 {
        margin-top: 17px;
    }

    .ppc-prices::before {
        left: 16px;
        height: 54px;
    }

    .ppc-prices__layout,
    .ppc-faq__layout {
        gap: 58px;
        grid-template-columns: 1fr;
    }

    .ppc-prices .ppc-section__head {
        position: static;
    }

    .ppc-price-list > div,
    .ppc-price-list > div:first-child {
        align-items: start;
        gap: 14px;
        min-height: 0;
        padding: 24px 0;
        grid-template-columns: 1fr;
    }

    .ppc-price-list > div:first-child {
        padding: 26px 20px;
    }

    .ppc-price-list > div p {
        text-align: left;
    }

    .ppc-story {
        padding-top: 0;
        padding-bottom: 110px;
    }

    .ppc-story__layout {
        min-height: 0;
    }

    .ppc-story figure {
        width: 100%;
        min-height: 430px;
    }

    .ppc-story figure img {
        min-height: 430px;
    }

    .ppc-story__layout > div {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 20px);
        margin: -58px 0 0 auto;
        padding: 42px 30px 38px;
        transform: none;
    }

    .ppc-story h2 {
        font-size: clamp(37px, 10vw, 48px);
    }

    .ppc-story dl > div {
        grid-template-columns: 98px 1fr;
    }

    .ppc-faq summary {
        padding-right: 46px;
        font-size: 18px;
    }

    .ppc-booking {
        padding: 94px 0 128px;
    }

    .ppc-booking .ppc-shell {
        display: block;
    }

    .ppc-booking .ppc-shell > p:not(.ppc-kicker) {
        margin-top: 22px;
    }

    .ppc-booking .ppc-button {
        width: 100%;
        min-height: 60px;
        margin-top: 30px;
    }

    .ppc-mobile-book {
        position: fixed;
        z-index: 9998;
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: var(--ft-radius-pill);
        background: var(--ppc-accent);
        box-shadow: 0 16px 42px rgba(178, 213, 229, .42);
        color: var(--ppc-ink);
        font-family: var(--ft-font-body);
        font-size: 15px;
        font-weight: 500;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ppc-hero__media img {
        animation: none;
    }

    .ppc-button,
    .ppc-text-link::after {
        transition: none;
    }
}
