:root {
    --shh-blue: #2258a8;
    --shh-blue-deep: #255ba8;
    --shh-blue-bright: #0068c9;
    --shh-pink: #ec268f;
    --shh-orange: #f9b233;
    --shh-green: #22ad4b;
    --shh-purple: #6f2da8;
    --shh-pale-grey: #f3f4f8;
    --shh-white: #ffffff;
    --shh-text: #195ca8;
    --shh-ink: #16213a;
    --shh-radius-md: 18px;
    --shh-radius-lg: 24px;
    --shh-radius-xl: 34px;
    --shh-container: 1280px;
}

body.shh-custom-page {
    margin: 0;
    background: var(--shh-white);
    color: var(--shh-text);
    font-family: "Fredoka","Nunito", "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
}

body.shh-custom-page .shh-site,
body.shh-custom-page .shh-site * {
    box-sizing: border-box;
}

body.shh-custom-page .shh-site {
    overflow: hidden;
    background: var(--shh-white);
    color: var(--shh-text);
    font-size: 18px;
    line-height: 1.45;
}

body.shh-custom-page .shh-site,
body.shh-custom-page .shh-site * {
    font-family: "Fredoka", "Nunito", "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif !important;
}

body.shh-custom-page a {
    color: inherit;
}

.shh-skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 1000;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: var(--shh-blue);
    color: var(--shh-white);
}

.shh-skip-link:focus {
    top: 1rem;
}

.shh-container {
    width: min(calc(100% - 48px), var(--shh-container));
    margin-inline: auto;
}

.shh-header {
    position: relative;
    z-index: 10;
    background: #0E56AD !important;
}

.shh-header__inner {
    display: grid;
    grid-template-columns: 270px 1fr auto;
    align-items: center;
    gap: 48px;
    width: 100%;
    min-height: 106px;
    margin-inline: auto;
    padding: 0 100px;
    background: #0E56AD !important;
    box-sizing: border-box;
}

.shh-logo {
    display: flex;
    align-items: center;
    width: 270px;
    max-width: 100%;
    text-decoration: none;
}

.shh-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.shh-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;
    margin-left: 72px;
}

.shh-nav__link {
    display: inline-flex;
    min-width: 0;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 7px;
    color: var(--shh-white) !important;
    font-family: "Fredoka", "Nunito", "Trebuchet MS", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: background-color .25s ease;
}

.shh-nav__link:hover,
.shh-nav__link.is-active {
    background: var(--shh-orange);
    color: var(--shh-white) !important;
}

.shh-nav__link.is-active {
    min-width: 112px;
}

.shh-icon-button {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--shh-white) !important;
    cursor: pointer;
}

.shh-icon-button svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.shh-mobile-menu {
    position: relative;
    display: none;
    justify-self: end;
    color: var(--shh-white);
}

.shh-mobile-menu > summary {
    list-style: none;
}

.shh-mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.shh-mobile-menu__panel {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    z-index: 20;
    display: grid;
    min-width: 220px;
    gap: 4px;
    padding: 12px;
    border-radius: 10px;
    background: #0071BC;
    box-shadow: 0 14px 34px rgba(22, 33, 58, .18);
}

.shh-mobile-menu__link {
    display: block;
    padding: 13px 14px;
    border-radius: 7px;
    color: var(--shh-white);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.shh-mobile-menu__link.is-active {
    background: var(--shh-orange);
    color: var(--shh-white) !important;
}

.shh-main {
    background: var(--shh-white);
}

.shh-page-content > * {
    margin-block: 0;
}

body.shh-custom-page .shh-page-content > .vgblk-rw-wrapper.limit-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.shh-custom-page .shh-page-content > .vgblk-rw-wrapper.limit-wrapper > .elementor {
    width: 100%;
    max-width: none;
}

.shh-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--shh-pale-grey);
}

.shh-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shh-home-hero > img {
    object-position: center center;
}

.shh-home-hero {
    min-height: 520px;
}

.shh-hero__content,
.shh-hero-card {
    position: relative;
    z-index: 1;
}

.shh-hero__content {
    width: min(calc(100% - 48px), var(--shh-container));
    margin-inline: auto;
    padding-top: 220px;
}

.shh-hero h1,
.shh-hero-card h1,
.shh-heading-pink,
.shh-heading-green,
.shh-story-card h2,
.shh-care-model__heading h2,
.shh-contact-band h2,
.shh-contact-details h2,
.shh-contact-form h2 {
    margin: 0;
    font-family: "Fredoka","Arial Rounded MT Bold", "Nunito", "Trebuchet MS", Arial, sans-serif;
    font-weight: 900;
    line-height: .98;
}

.shh-hero h1 {
    max-width: 360px;
    color: var(--shh-white);
    font-size: 58px;
}

.shh-page-hero {
    min-height: 350px;
    border-bottom-right-radius: var(--shh-radius-lg);
    border-bottom-left-radius: var(--shh-radius-lg);
}

.shh-page-hero > img {
    object-position: center;
}

.shh-hero-card {
    width: min(560px, calc(100% - 48px));
    margin-left: max(24px, calc((100% - var(--shh-container)) / 2 + 50px));
    transform: translateY(235px);
    padding: 48px 56px 46px;
    border-radius: 14px;
    color: var(--shh-white);
}

.shh-hero-card--purple {
    background: var(--shh-purple);
}

.shh-hero-card--green {
    background: var(--shh-green);
}

.shh-hero-card h1 {
    margin-bottom: 20px;
    color: var(--shh-pink);
    font-size: 44px;
}

.shh-hero-card--green h1 {
    color: var(--shh-orange);
}

.shh-hero-card p {
    max-width: 420px;
    margin: 0;
    color: var(--shh-white);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.24;
}

.shh-intro {
    position: relative;
    margin-top: -1px;
    padding: 92px 0 36px;
    border-top-left-radius: var(--shh-radius-xl);
    border-top-right-radius: var(--shh-radius-xl);
    background: var(--shh-white);
}

.shh-intro__grid,
.shh-approach-teaser__grid,
.shh-contact-band__grid,
.shh-about-story__grid,
.shh-contact-page__grid {
    display: grid;
    align-items: start;
    gap: 72px;
}

.shh-intro__grid {
    grid-template-columns: .78fr 1fr;
}

.shh-heading-pink,
.shh-heading-green {
    font-size: 43px;
}

.shh-heading-pink {
    max-width: 330px;
    color: var(--shh-pink);
}

.shh-heading-green {
    color: var(--shh-green);
}

.shh-copy-block p,
.shh-value-card p,
.shh-belief-card p,
.shh-contact-details p,
.shh-contact-form label,
.shh-story-card p {
    color: var(--shh-blue);
    font-weight: 800;
}

.shh-copy-block p {
    max-width: 590px;
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.28;
}

.shh-copy-block h3 {
    margin: 0 0 28px;
    color: var(--shh-blue);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.shh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 7px;
    color: var(--shh-white);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.shh-button--pink {
    background: var(--shh-pink);
}

.shh-intro__doodle {
    display: block;
    width: min(300px, 80%);
    margin-top: 74px;
}

.shh-approach-teaser {
    padding: 88px 0 80px;
    background: var(--shh-pale-grey);
}

.shh-approach-teaser__grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 78px;
}

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

.shh-value-card img,
.shh-belief-card img,
.shh-care-card img,
.shh-story-image {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.shh-value-card img {
    aspect-ratio: 1.42;
}

.shh-value-card h3 {
    margin: 30px 0 10px;
    color: #ff8a20;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.shh-value-card p {
    min-height: 72px;
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.24;
}

.shh-value-card a {
    display: inline-flex;
    gap: 13px;
    align-items: center;
    color: var(--shh-purple);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

.shh-contact-band {
    position: relative;
    padding: 54px 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: var(--shh-orange);
}

.shh-contact-band__grid {
    grid-template-columns: .7fr 1.2fr auto auto;
    align-items: center;
    gap: 52px;
}

.shh-contact-band h2 {
    color: var(--shh-blue);
    font-size: 39px;
}

.shh-contact-band p {
    max-width: 470px;
    margin: 0;
    color: var(--shh-blue);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.22;
}

.shh-contact-band img {
    width: 150px;
}

.shh-about-story {
    padding: 142px 0 0;
    background: var(--shh-white);
}

.shh-about-story__grid {
    grid-template-columns: 1fr .86fr;
    align-items: center;
}

.shh-story-card {
    min-height: 485px;
    padding: 62px 58px;
    border-radius: 12px;
    background: var(--shh-orange);
}

.shh-story-card h2 {
    margin-bottom: 54px;
    color: var(--shh-pink);
    font-size: 40px;
}

.shh-story-card p {
    margin: 0 0 28px;
    max-width: 455px;
    font-size: 19px;
    line-height: 1.27;
}

.shh-story-image {
    min-height: 520px;
}

.shh-beliefs {
    position: relative;
    margin-top: -128px;
    padding: 260px 0 92px;
    background: var(--shh-pale-grey);
}

.shh-beliefs__doodle {
    position: absolute;
    left: 30px;
    top: 16px;
    width: 130px;
}

.shh-belief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.shh-belief-card img {
    aspect-ratio: .76;
}

.shh-belief-card h2 {
    margin: 34px 0 16px;
    color: var(--shh-green);
    font-size: 39px;
    font-weight: 900;
    line-height: 1;
}

.shh-belief-card p {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.shh-care-model {
    padding: 136px 0 150px;
    background: var(--shh-white);
}

.shh-care-model__heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    margin-bottom: 62px;
}

.shh-care-model__heading h2 {
    color: var(--shh-pink);
    font-size: 54px;
}

.shh-care-model__heading img {
    width: 112px;
}

.shh-care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 78px 48px;
}

.shh-care-card img,
.shh-care-card__statement {
    aspect-ratio: .72;
    border-radius: 10px;
}

.shh-care-card img {
    object-fit: cover;
}

.shh-care-card__statement {
    display: flex;
    align-items: flex-start;
    padding: 130px 42px 42px;
    background: var(--shh-purple);
    color: var(--shh-white);
}

.shh-care-card__statement p {
    margin: 0;
    color: var(--shh-white);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.28;
}

.shh-care-card h3 {
    margin: 26px 0 0;
    color: var(--shh-pink);
    font-size: 39px;
    font-weight: 900;
    line-height: .98;
}

.shh-contact-hero > img {
    object-position: center 32%;
}

.shh-contact-page {
    padding: 138px 0 110px;
    background: var(--shh-pale-grey);
}

.shh-contact-page__grid {
    grid-template-columns: .85fr 1fr;
}

.shh-contact-details,
.shh-contact-form {
    border-radius: 14px;
}

.shh-contact-details {
    padding: 56px;
    background: var(--shh-orange);
}

.shh-contact-details h2,
.shh-contact-form h2 {
    color: var(--shh-blue);
    font-size: 39px;
}

.shh-contact-details p {
    margin: 22px 0;
    font-size: 19px;
    line-height: 1.25;
}

.shh-detail-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.shh-detail-list p {
    margin: 0;
}

.shh-detail-list strong {
    display: block;
    color: var(--shh-pink);
    font-size: 16px;
    text-transform: uppercase;
}

.shh-detail-list a,
.shh-detail-list span {
    color: var(--shh-blue);
    font-weight: 900;
    text-decoration: none;
}

.shh-map-placeholder {
    display: grid;
    min-height: 190px;
    margin-top: 38px;
    place-items: center;
    border: 3px dashed rgba(34, 88, 168, .35);
    border-radius: 14px;
    color: var(--shh-blue);
    font-size: 30px;
    font-weight: 900;
}

.shh-contact-form {
    display: grid;
    gap: 22px;
    padding: 56px;
    background: var(--shh-white);
}

.shh-contact-form label {
    display: grid;
    gap: 8px;
    margin: 0;
    font-size: 16px;
}

.shh-contact-form input,
.shh-contact-form textarea {
    width: 100%;
    border: 2px solid rgba(34, 88, 168, .18);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--shh-ink);
    font: inherit;
    font-size: 18px;
}

.shh-contact-form textarea {
    resize: vertical;
}

.shh-form-alert {
    margin: 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 900;
}

.shh-form-alert--success {
    background: rgba(34, 173, 75, .12);
    color: var(--shh-green);
}

.shh-form-alert--error {
    background: rgba(236, 38, 143, .12);
    color: var(--shh-pink);
}

.shh-footer {
    position: relative;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    background: var(--shh-blue-deep);
    color: var(--shh-orange);
    overflow: hidden;
}

.shh-footer__doodle {
    display: none;
}

.shh-footer__inner {
    display: grid;
    grid-template-columns: 150px 150px minmax(360px, 1fr);
    gap: 75px;
    width: min(calc(100% - 96px), 1040px);
    margin-inline: auto;
    padding: 76px 0 48px;
}

.shh-footer h2 {
    margin: 0 0 21px;
    color: var(--shh-white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.shh-footer__contact h2 {
    color: var(--shh-orange);
    font-size: 18px;
    line-height: 1;
    text-transform: none;
}

.shh-footer ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shh-footer li {
    margin: 0;
    padding: 0;
}

.shh-footer__column li::before {
    display: none !important;
    content: none !important;
}

.shh-footer a {
    color: var(--shh-orange);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.shh-footer__column h2,
.shh-footer__column ul {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.shh-footer__column a {
    display: block;
    margin-left: 0 !important;
    padding-left: 0 !important;
    font-weight: 400 !important;
    text-indent: 0;
}

@media (min-width: 801px) {
    .shh-footer__column ul {
        position: relative;
        left: -26px;
    }
}

.shh-socials {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 72px;
}

.shh-socials a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    padding: 0;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 6px;
    background: transparent;
    box-shadow: none;
    font-size: 9px;
    line-height: 1;
}

.shh-socials a:has(img) {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-size: 0;
    line-height: 0;
}

.shh-socials img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.shh-footer__contact {
    justify-self: end;
    width: min(100%, 400px);
}

.shh-footer__contact img {
    display: block;
    width: auto;
    max-width: 120px;
    height: auto;
    margin-bottom: 24px;
    object-fit: contain;
}

.shh-footer__contact .shh-footer__logo {
    width: 120px;
    max-width: 100%;
    height: auto;
}

.shh-footer address {
    margin: 26px 0 0;
    color: var(--shh-orange);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.35;
}

.shh-footer__company {
    margin: 0 0 18px;
}

.shh-footer__description {
    max-width: 370px;
    margin: 0 0 28px;
    line-height: 1.45;
}

.shh-footer__contact address a {
    display: inline-block;
    margin-top: 6px;
}

.shh-footer__phone {
    display: inline-flex;
    margin-top: 10px;
}

.shh-footer__legal {
    width: 100%;
    margin: 0;
    padding: 28px 0;
    background: var(--shh-white);
    color: var(--shh-blue);
}

.shh-footer__legal-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: min(calc(100% - 96px), 900px);
    margin-inline: auto;
}

.shh-footer__legal p {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
}

.shh-footer__legal nav {
    display: flex;
    gap: 52px;
}

.shh-footer__legal a {
    color: var(--shh-blue);
    font-size: 10px;
}

.shh-page-content .elementor,
.shh-page-content .elementor-section,
.shh-page-content .elementor-column,
.shh-page-content .elementor-widget-wrap,
.shh-page-content .elementor-widget {
    position: relative;
}

.shh-page-content .elementor-section > .elementor-container {
    width: min(calc(100% - 48px), var(--shh-container));
    max-width: none;
    margin-inline: auto;
}

.shh-page-content .elementor-section.shh-hero {
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-inline: 0 !important;
}

.shh-page-content .elementor-section.shh-hero > .elementor-container {
    width: 100%;
    max-width: none !important;
    min-height: inherit;
    padding: 0 !important;
}

.shh-page-content .shh-hero .elementor-column,
.shh-page-content .shh-hero .elementor-widget-wrap {
    position: static;
}

.shh-page-content .shh-hero .elementor-widget-wrap.elementor-element-populated {
    padding: 0 !important;
}

.shh-page-content .shh-hero .elementor-column.shh-hero-media-col {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    height: 100%;
}

.shh-page-content .shh-hero .shh-hero-media-col > .elementor-widget-wrap {
    width: 100%;
    height: 100%;
}

.shh-page-content .shh-hero .elementor-column.shh-hero-title-col,
.shh-page-content .shh-page-hero .elementor-column.shh-hero-card {
    z-index: 1;
}

.shh-page-content .shh-hero .elementor-column.shh-hero-title-col {
    width: 100% !important;
    min-height: inherit;
}

.shh-page-content .shh-hero-title-col > .elementor-widget-wrap {
    width: min(calc(100% - 128px), var(--shh-container));
    min-height: inherit;
    margin-inline: auto;
    padding: 0 !important;
}

.shh-page-content .shh-home-hero .shh-hero-title-col > .elementor-widget-wrap {
    width: min(calc(100% - 96px), 940px);
}

.shh-page-content .shh-hero-card,
.shh-page-content .shh-hero-card--purple,
.shh-page-content .shh-hero-card--green {
    transform: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
}

.shh-page-content .shh-hero-media.elementor-widget,
.shh-page-content .shh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.shh-page-content .shh-hero-media .elementor-widget-container,
.shh-page-content .shh-hero-media .elementor-image,
.shh-page-content .shh-hero-media img {
    width: 100% !important;
    height: 100% !important;
}

.shh-page-content .shh-hero-media img {
    display: block;
    max-width: none;
    object-fit: cover;
}

.shh-page-content .shh-hero-title {
    z-index: 1;
    width: min(360px, 100%);
    margin-top: 175px;
}

.shh-page-content .shh-hero-title .elementor-heading-title {
    color: var(--shh-white);
    font-family: "Fredoka","Arial Rounded MT Bold", "Nunito", "Trebuchet MS", Arial, sans-serif;
    font-size: 58px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-page-hero > .elementor-container {
    align-items: flex-start;
}

.shh-page-content .shh-page-hero .shh-hero-card {
    width: min(438px, calc(100% - 48px));
    margin-left: max(24px, calc((100% - 873px) / 2));
    margin-top: 190px;
}

.shh-page-content .shh-page-hero .shh-hero-card > .elementor-widget-wrap.elementor-element-populated {
    display: block;
    padding: 43px 55px 42px !important;
    border-radius: 12px;
}

.shh-page-content .shh-hero-card--purple > .elementor-widget-wrap {
    background: var(--shh-purple);
}

.shh-page-content .shh-hero-card--green > .elementor-widget-wrap {
    background: var(--shh-green);
}

.shh-page-content .shh-card-heading .elementor-heading-title {
    margin: 0;
    color: var(--shh-pink);
    font-family: "Fredoka","Arial Rounded MT Bold", "Nunito", "Trebuchet MS", Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-hero-card--green .shh-card-heading .elementor-heading-title {
    color: var(--shh-orange);
}

.shh-page-content .shh-card-copy p {
    max-width: 360px;
    margin: 18px 0 0;
    color: var(--shh-white);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.shh-page-content .shh-two-column-section > .elementor-container {
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: 72px;
}

.shh-page-content .shh-intro--home {
    overflow: visible;
    padding: 80px 0 94px;
}

.shh-page-content .shh-intro--home > .elementor-container {
    width: min(calc(100% - 96px), 940px);
    grid-template-columns: 255px 1fr;
    align-items: start;
    gap: 55px;
}

.shh-page-content .shh-intro--home .shh-intro-title-col,
.shh-page-content .shh-intro--home .shh-intro-title-col > .elementor-widget-wrap {
    position: relative;
    overflow: visible;
}

.shh-page-content .shh-two-column-section .elementor-column,
.shh-page-content .shh-card-row-section .elementor-column,
.shh-page-content .shh-care-grid-section .elementor-column,
.shh-page-content .shh-contact-band .elementor-column,
.shh-page-content .shh-care-model-heading-section .elementor-column {
    width: 100% !important;
}

.shh-page-content .shh-heading-pink .elementor-heading-title,
.shh-page-content .shh-heading-green .elementor-heading-title {
    font-family: "Fredoka","Arial Rounded MT Bold", "Nunito", "Trebuchet MS", Arial, sans-serif;
    font-size: 43px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-heading-pink .elementor-heading-title {
    max-width: 330px;
    color: var(--shh-pink);
}

.shh-page-content .shh-heading-green .elementor-heading-title {
    color: var(--shh-green);
}

.shh-page-content .shh-copy-block p,
.shh-page-content .shh-copy-block h3 {
    max-width: 590px;
    color: var(--shh-blue);
    font-weight: 800;
}

.shh-page-content .shh-copy-block p {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.28;
}

.shh-page-content .shh-copy-block h3 {
    margin: 0 0 28px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.shh-page-content .shh-intro--home .shh-intro-doodle.elementor-widget {
    position: absolute;
    left: -38px;
    top: 238px;
    z-index: 2;
    width: 250px;
    margin: 0;
}

.shh-page-content .shh-intro-doodle img {
    display: block;
    width: 250px;
    max-width: none;
    margin: 0;
}

.shh-page-content .shh-button-widget .elementor-button {
    min-height: 48px;
    padding: 15px 28px;
    border-radius: 7px;
    background: var(--shh-pink);
    color: var(--shh-white);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.shh-page-content .shh-button-widget.shh-button--pink {
    background: transparent;
}

.shh-page-content .shh-intro--home .shh-button-widget .elementor-button {
    min-height: 32px;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 12px;
}

.shh-page-content .shh-link-button .elementor-button {
    min-height: auto;
    padding: 0;
    background: transparent;
    color: var(--shh-purple);
    font-size: 16px;
}

.shh-page-content .shh-link-button .elementor-button-text::after {
    content: " →";
    padding-left: 8px;
}

.shh-page-content .shh-card-row-section {
    padding: 0 0 80px;
    background: var(--shh-pale-grey);
}

.shh-page-content .shh-card-row-section > .elementor-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.shh-page-content .shh-three-card-section > .elementor-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
}

.shh-page-content .shh-value-card img,
.shh-page-content .shh-belief-card img,
.shh-page-content .shh-care-card img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.shh-page-content .shh-value-card img {
    aspect-ratio: 1.42;
}

.shh-page-content .shh-value-card .elementor-heading-title {
    margin: 30px 0 10px;
    color: #ff8a20;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.shh-page-content .shh-value-card p {
    min-height: 72px;
    margin: 0 0 22px;
    color: var(--shh-blue);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.24;
}

.shh-page-content .shh-contact-band > .elementor-container {
    display: grid;
    grid-template-columns: .7fr 1.2fr auto auto;
    align-items: center;
    gap: 52px;
}

.shh-page-content .shh-contact-band .elementor-heading-title {
    color: var(--shh-blue);
    font-size: 39px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-contact-band p {
    max-width: 470px;
    margin: 0;
    color: var(--shh-blue);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.22;
}

.shh-page-content .shh-contact-doodle-col img {
    width: 150px;
}

.shh-page-content .shh-story-card > .elementor-widget-wrap {
    display: block;
    min-height: 485px;
    padding: 62px 58px;
    border-radius: 12px;
    background: var(--shh-orange);
}

.shh-page-content .shh-story-card {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.shh-page-content .shh-story-card .elementor-heading-title {
    margin-bottom: 54px;
    color: var(--shh-pink);
    font-size: 40px;
    font-weight: 900;
}

.shh-page-content .shh-story-card p {
    max-width: 455px;
    margin: 0 0 28px;
    color: var(--shh-blue);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.27;
}

.shh-page-content .shh-story-image img {
    min-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.shh-page-content .shh-about-story {
    padding: 140px 0 0;
}

.shh-page-content .shh-about-story > .elementor-container {
    width: min(calc(100% - 96px), 944px);
    grid-template-columns: minmax(0, 510px) minmax(0, 434px);
    gap: 0;
}

.shh-page-content .shh-about-story .shh-story-card {
    z-index: 1;
}

.shh-page-content .shh-about-story .shh-story-card > .elementor-widget-wrap {
    min-height: 480px;
    padding: 58px 40px 50px;
}

.shh-page-content .shh-about-story .shh-story-card .elementor-heading-title {
    margin-bottom: 52px;
    font-size: 36px;
}

.shh-page-content .shh-about-story .shh-story-card p {
    max-width: 455px;
    font-size: 17px;
    line-height: 1.25;
}

.shh-page-content .shh-about-story .shh-story-image {
    z-index: 2;
    margin-left: -38px;
}

.shh-page-content .shh-about-beliefs {
    position: relative;
    margin-top: -160px;
    padding: 170px 0 50px;
    overflow: visible;
}

.shh-page-content .shh-about-beliefs::before,
.shh-page-content .shh-about-beliefs::after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.shh-page-content .shh-about-beliefs::before {
    top: 10px;
    left: max(28px, calc((100% - 1120px) / 2));
    width: 130px;
    aspect-ratio: 317 / 372;
    background-image: url("../images/pages/doodle-house.png");
}

.shh-page-content .shh-about-beliefs::after {
    bottom: 78px;
    left: max(150px, calc((100% - 873px) / 2 + 150px));
    width: 112px;
    aspect-ratio: 243 / 238;
    background-image: url("../images/pages/doodle-square.png");
}

.shh-page-content .shh-about-beliefs > .elementor-container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 96px), 873px);
    gap: 36px;
}

.shh-page-content .shh-about-beliefs .shh-belief-card img {
    aspect-ratio: .65;
}

.shh-page-content .shh-belief-card img {
    aspect-ratio: .76;
}

.shh-page-content .shh-belief-card .elementor-heading-title {
    margin: 34px 0 16px;
    color: var(--shh-green);
    font-size: 39px;
    font-weight: 900;
    line-height: 1;
}

.shh-page-content .shh-belief-card p {
    margin: 0;
    color: var(--shh-blue);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.shh-page-content .shh-care-model-heading-section {
    padding: 136px 0 62px;
    background: var(--shh-white);
}

.shh-page-content .shh-care-model-heading-section > .elementor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.shh-page-content .shh-care-model-heading-section .elementor-heading-title {
    color: var(--shh-pink);
    font-size: 54px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-care-doodle-col {
    max-width: 112px;
}

.shh-page-content .shh-care-grid-section {
    padding: 0 0 150px;
    background: var(--shh-white);
}

.shh-page-content .shh-care-grid-section > .elementor-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 78px 48px;
}

.shh-page-content .shh-care-card img,
.shh-page-content .shh-care-card__statement {
    aspect-ratio: .72;
    border-radius: 10px;
}

.shh-page-content .shh-care-card img {
    object-fit: cover;
}

.shh-page-content .shh-care-card__statement {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 130px 42px 42px;
    background: var(--shh-purple);
}

.shh-page-content .shh-care-card__statement p {
    margin: 0;
    color: var(--shh-white);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.28;
}

.shh-page-content .shh-care-card .elementor-heading-title {
    margin: 26px 0 0;
    color: var(--shh-pink);
    font-size: 39px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-approach-care-heading {
    padding: 65px 0 42px;
}

.shh-page-content .shh-approach-care-heading > .elementor-container {
    width: min(calc(100% - 96px), 650px);
    gap: 72px;
}

.shh-page-content .shh-approach-care-heading .elementor-column {
    flex: 0 0 auto;
    width: auto !important;
}

.shh-page-content .shh-approach-care-heading .elementor-heading-title {
    font-size: 52px;
}

.shh-page-content .shh-approach-care-heading .shh-care-doodle-col {
    max-width: 96px;
}

.shh-page-content .shh-approach-care-heading .shh-care-doodle-col img {
    display: block;
    width: 96px;
    max-width: none;
}

.shh-page-content .shh-approach-care-grid {
    position: relative;
    padding: 0 0 230px;
    overflow: visible;
}

.shh-page-content .shh-approach-care-grid::after {
    content: "";
    position: absolute;
    right: max(48px, calc((100% - 873px) / 2 - 55px));
    bottom: -18px;
    z-index: 3;
    width: 150px;
    aspect-ratio: 462 / 452;
    background: url("../images/pages/doodle-heart.png") center / contain no-repeat;
    pointer-events: none;
}

.shh-page-content .shh-approach-care-grid > .elementor-container {
    width: min(calc(100% - 96px), 873px);
    gap: 78px 36px;
}

.shh-page-content .shh-approach-care-grid .shh-care-card img,
.shh-page-content .shh-approach-care-grid .shh-care-card__statement {
    aspect-ratio: .773;
}

.shh-page-content .shh-approach-care-grid .shh-care-card__statement {
    padding: 108px 32px 32px;
}

.shh-page-content .shh-approach-care-grid .shh-care-card__statement p {
    font-size: 18px;
    line-height: 1.25;
}

.shh-page-content .shh-approach-care-grid .shh-care-card .elementor-heading-title {
    margin-top: 24px;
    font-size: 36px;
}

.shh-page-content .shh-contact-details > .elementor-widget-wrap {
    display: block;
    padding: 56px;
    border-radius: 14px;
    background: var(--shh-orange);
}

.shh-page-content .shh-contact-details .elementor-heading-title,
.shh-contact-form h2 {
    color: var(--shh-blue);
    font-size: 39px;
    font-weight: 900;
    line-height: .98;
}

.shh-page-content .shh-contact-details p {
    margin: 22px 0;
    color: var(--shh-blue);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

/* Restored from Backups/spring-hill-house-style-updated.css, excluding the old blue header rules. */
@media (min-width: 801px) {
    .shh-home-hero {
        min-height: 750px !important;
    }

    .shh-home-hero > .elementor-container {
        min-height: 750px !important;
    }

    .shh-home-hero .shh-hero-media-col,
    .shh-home-hero .shh-hero-media-col > .elementor-widget-wrap {
        min-height: 750px !important;
    }

    .shh-home-hero .shh-hero-title-col {
        display: flex;
        align-items: center;
    }

    .shh-home-hero .shh-hero-title-col > .elementor-widget-wrap {
        width: min(calc(100% - 60px), 1400px) !important;
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important;
    }

    .approach-gif img {
        display: block;
        width: auto;
        height: 475px;
    }

    .shh-footer {
        z-index: 10;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .shh-footer ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .shh-footer li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .shh-footer__column h2 {
        margin-left: 0 !important;
    }

    .shh-footer__column a {
        display: inline-block;
    }

    .shh-footer__column ul {
        left: 0;
    }

    .shh-footer__contact img,
    .shh-footer__logo {
        display: block;
        width: 120px !important;
        height: 81px !important;
        max-width: 120px !important;
        margin: 0 0 40px !important;
    }

    .shh-footer,
    .shh-footer a,
    .shh-footer p,
    .shh-footer li,
    .shh-footer address,
    .shh-footer span {
        color: #FBB03B !important;
        font-family: "Fredoka", sans-serif !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        line-height: 1.4;
    }

    .shh-footer h2 {
        margin-bottom: 24px;
        color: #FFFFFF !important;
        font-family: "Fredoka", sans-serif !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        text-transform: uppercase;
    }

    .shh-socials img {
        display: block;
        width: 28px !important;
        height: 28px !important;
        max-width: 28px !important;
    }

    .shh-socials a {
        display: inline-block;
        width: auto !important;
        height: auto !important;
        margin: 0 10px 0 0;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        line-height: 0;
        outline: none !important;
    }

    .shh-socials a:hover,
    .shh-socials a:focus,
    .shh-socials a:active {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .shh-footer__inner {
        display: grid !important;
        grid-template-columns: 220px 220px 400px !important;
        column-gap: 180px !important;
        row-gap: 48px !important;
        align-items: start !important;
        justify-content: center !important;
        width: min(calc(100% - 96px), 1400px) !important;
        max-width: 1400px !important;
        margin-inline: auto !important;
        padding: 76px 0 48px !important;
    }

    .shh-footer__contact {
        width: 400px !important;
    }

    .shh-footer__company {
        margin: 0 0 18px !important;
    }

    .shh-footer__description {
        max-width: 370px !important;
        margin: 0 0 30px !important;
        line-height: 1.45 !important;
    }

    .shh-footer address {
        margin: 0 !important;
        line-height: 1.45 !important;
    }

    .shh-footer__contact address a {
        display: inline-block !important;
        margin-top: 6px !important;
    }

    .shh-footer__legal-inner {
        width: 100%;
        max-width: 1400px;
    }

    .shh-footer__legal {
        background: #FFFFFF;
    }

    .shh-footer__legal p,
    .shh-footer__legal a {
        color: #2D5DA8 !important;
        font-family: "Fredoka", sans-serif !important;
        font-size: 13px !important;
        font-weight: 400 !important;
        line-height: 1.3;
        text-decoration: none;
    }

    .shh-footer__legal p {
        margin: 0;
    }

    .shh-footer__legal p strong {
        font-weight: 600;
    }

    .shh-footer__legal nav {
        display: flex;
        align-items: center;
        gap: 48px;
    }

    .shh-hero-title .elementor-heading-title {
        width: 500px !important;
        max-width: 500px !important;
    }
}

.shh-intro-card,
.shh-intro-card > .elementor-container,
.shh-intro-card > .e-con-inner {
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
}

.about-us-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 445px !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden !important;
}

.about-us-hero .elementor-container,
.about-us-hero .elementor-column,
.about-us-hero .elementor-widget-wrap,
.about-us-hero .elementor-widget-image,
.about-us-hero .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    height: 500px !important;
}

.about-us-hero img {
    display: block !important;
    width: 100vw !important;
    max-width: none !important;
    height: 500px !important;
    object-fit: cover !important;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-card .elementor-widget-image {
    width: 100%;
}

.trust-card .elementor-widget-image img {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.trust-card .elementor-widget-heading,
.trust-card .elementor-widget-text-editor {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.care-model-cards {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    column-gap: 90px !important;
    row-gap: 50px !important;
    background: transparent !important;
}

.care-model-cards > .e-con {
    flex: 1 1 0 !important;
    max-width: 388px !important;
    min-width: 0 !important;
    background: transparent !important;
}

.care-model-cards .elementor-widget-html {
    width: 100% !important;
    background: transparent !important;
}

.value-card {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    transition: transform 1.35s ease;
}

.value-image {
    position: relative;
    width: 100% !important;
    overflow: hidden;
    aspect-ratio: 388 / 619;
    border-radius: 20px;
}

.value-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 1.7s cubic-bezier(.22, .61, .36, 1);
}

.value-overlay {
    position: absolute;
    inset: 150px 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 45px 30px 35px;
    border-radius: 20px 20px 0 0;
    background: rgba(102, 45, 145, .94);
    color: #FFFFFF;
    transform: translateY(100%);
    transition: transform 1.55s cubic-bezier(.22, .61, .36, 1);
    backdrop-filter: blur(4px);
}

.value-overlay p {
    margin: 0;
    color: #FFFFFF !important;
    font-family: "Fredoka", sans-serif !important;
    font-size: 28px;
    font-weight: 400 !important;
    letter-spacing: 0;
    line-height: 1.45 !important;
}

.value-card h3 {
    margin: 20px 0 0;
    color: #20AB42;
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card:hover .value-image img,
.value-card.is-open .value-image img {
    transform: scale(1.08);
}

.value-card:hover .value-overlay,
.value-card.is-open .value-overlay {
    transform: translateY(0);
}

@keyframes shh-value-tap-cue {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(22, 33, 58, .18);
    }

    50% {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(22, 33, 58, .24);
    }
}

@keyframes shh-value-strip-peek {
    0%,
    58%,
    100% {
        transform: translateY(100%);
    }

    12%,
    26% {
        transform: translateY(calc(100% - 52px));
    }
}

.shh-contact-form-wrap {
    width: 100% !important;
    max-width: 1020px !important;
    margin: 0 auto !important;
}

.shh-contact-form-wrap .elementor-widget-container,
.shh-contact-form-wrap .elementor-shortcode,
.shh-contact-form-wrap .shh-contact-form {
    width: 100% !important;
}

.contact-form .wpcf7-form {
    box-sizing: border-box;
    width: min(100%, 1020px);
    min-height: 580px;
    margin: 0 auto;
    padding: 64px 56px 46px;
    border-radius: 16px;
    background: #F2F2F7;
}

.contact-form .wpcf7-form p {
    margin: 0 0 28px;
}

.contact-form .wpcf7-form label {
    display: block;
    color: #0E56AD;
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form textarea {
    box-sizing: border-box;
    width: 100%;
    height: 74px;
    margin-top: 8px;
    padding: 0 32px;
    border: none;
    border-radius: 12px;
    background: #FFFFFF;
    color: #0E56AD;
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 400;
    outline: none;
}

.contact-form .wpcf7-form textarea {
    height: 170px;
    padding-top: 24px;
    resize: none;
}

.contact-form .wpcf7-form input::placeholder,
.contact-form .wpcf7-form textarea::placeholder {
    color: #0E56AD;
    opacity: 1;
}

.contact-form .wpcf7-submit {
    display: block;
    width: 153px;
    height: 44px;
    margin: 14px auto 0;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: #ED1E79;
    color: #FFFFFF;
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

.contact-form .wpcf7-submit:hover {
    background: #ED1E79;
    color: #FFFFFF;
}

.contact-form .wpcf7-spinner {
    display: none;
}

@media (max-width: 1400px) {
    .care-model-cards {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 900px) {
    .care-model-cards {
        flex-direction: column !important;
        align-items: center !important;
    }

    .care-model-cards > .e-con {
        flex: 0 1 auto !important;
        width: 100% !important;
        max-width: 388px !important;
    }

    .value-card h3 {
        font-size: 40px;
    }

    .value-image {
        cursor: pointer;
        touch-action: manipulation;
    }

    .value-image:focus-visible {
        outline: 3px solid var(--shh-orange);
        outline-offset: 4px;
    }

    .value-overlay {
        inset: 0;
        align-items: center;
        justify-content: center;
        padding: clamp(32px, 8vw, 72px) clamp(32px, 8vw, 58px);
        text-align: center;
    }

    .value-image::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 3;
        height: 52px;
        border-radius: 20px 20px 0 0;
        background: rgba(102, 45, 145, .94);
        pointer-events: none;
        transform: translateY(100%);
        animation: shh-value-strip-peek 5.8s ease-in-out 1.1s infinite;
        transition: opacity .2s ease;
    }

    .value-image::after {
        content: "Read more";
        position: absolute;
        right: 18px;
        bottom: 18px;
        z-index: 4;
        padding: 9px 14px;
        border-radius: 999px;
        background: var(--shh-orange);
        color: var(--shh-blue);
        font-size: 15px;
        font-weight: 400;
        line-height: 1;
        pointer-events: none;
        animation: shh-value-tap-cue 2.4s ease-in-out infinite;
    }

    .value-card:hover .value-image::after,
    .value-card.is-open .value-image::after,
    .value-image:active::after,
    .value-image:focus-within::after {
        opacity: 0;
    }

    .value-card:hover .value-image::before,
    .value-card.is-open .value-image::before,
    .value-image:active::before,
    .value-image:focus-within::before {
        opacity: 0;
        animation: none;
        transform: translateY(100%);
    }

    .value-card:hover .value-overlay,
    .value-card.is-open .value-overlay,
    .value-image:active .value-overlay,
    .value-image:focus-within .value-overlay {
        transform: translateY(0);
        animation: none;
    }

    .value-overlay p {
        max-width: 100%;
        font-size: clamp(30px, 8vw, 40px);
        font-weight: 400 !important;
        line-height: 1.1 !important;
        text-align: center;
        overflow-wrap: break-word;
    }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
    .value-image::after,
    .value-image::before {
        animation: none;
    }
}

@media (max-width: 767px) {
    .contact-form .wpcf7-form {
        width: calc(100% - 32px);
        min-height: auto;
        padding: 32px 20px;
    }

    .contact-form .wpcf7-form input[type="text"],
    .contact-form .wpcf7-form input[type="email"],
    .contact-form .wpcf7-form textarea {
        height: 58px;
        padding: 0 20px;
        font-size: 18px;
    }

    .contact-form .wpcf7-form textarea {
        height: 140px;
        padding-top: 18px;
    }
}

@media (max-width: 1100px) {
    body.shh-custom-page .shh-site {
        padding-top: var(--shh-header-height, 92px);
    }

    .shh-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        transform: translateY(0);
        transition: transform .28s ease, box-shadow .28s ease;
        will-change: transform;
    }

    body.admin-bar .shh-header {
        top: 32px;
    }

    .shh-header.shh-header--hidden {
        transform: translateY(-100%);
        box-shadow: none;
    }

    .shh-header.shh-header--pinned {
        box-shadow: 0 10px 28px rgba(22, 33, 58, .18);
    }

    .shh-header__inner {
        grid-template-columns: minmax(180px, 1fr) auto;
        min-height: 92px;
        gap: 28px;
        padding: 0 50px;
    }

    .shh-nav {
        display: none;
    }

    .shh-mobile-menu {
        display: block;
    }

    .shh-card-row,
    .shh-care-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shh-page-content .shh-card-row-section > .elementor-container,
    .shh-page-content .shh-care-grid-section > .elementor-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shh-page-content .shh-about-story > .elementor-container {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    }

    .shh-page-content .shh-about-story .shh-story-image {
        margin-left: -28px;
    }

    .shh-page-content .shh-about-beliefs > .elementor-container,
    .shh-page-content .shh-approach-care-grid > .elementor-container {
        width: min(calc(100% - 48px), 873px);
    }

    .shh-contact-band__grid,
    .shh-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .shh-contact-band img {
        display: none;
    }
}

@media (max-width: 782px) {
    body.admin-bar .shh-header {
        top: 46px;
    }
}

@media (max-width: 800px) {
    body.shh-custom-page .shh-site {
        font-size: 16px;
        padding-top: var(--shh-header-height, 72px);
    }

    .shh-header__inner {
        width: 100%;
        min-height: 72px;
        gap: 18px;
        padding: 0 24px;
    }

    .shh-logo {
        width: 230px;
    }

    .shh-logo img {
        width: 100%;
    }

    .shh-mobile-menu__panel {
        width: min(260px, calc(100vw - 32px));
        min-width: 0;
    }

    .shh-hero {
        min-height: 520px;
    }

    .shh-hero h1 {
        max-width: 290px;
        font-size: 48px;
    }

    .shh-page-content .shh-hero-title .elementor-heading-title {
        font-size: 48px;
    }

    .shh-hero__content {
        padding-top: 170px;
    }

    .shh-page-content .shh-hero-title-col > .elementor-widget-wrap {
        width: min(calc(100% - 48px), var(--shh-container));
    }

    .shh-page-content .shh-home-hero .shh-hero-title-col > .elementor-widget-wrap {
        width: min(calc(100% - 48px), var(--shh-container));
    }

    .shh-page-content .shh-hero-title {
        width: min(290px, 100%);
        margin-top: 170px;
    }

    .shh-page-content .shh-intro--home {
        padding: 70px 0 36px;
    }

    .shh-page-content .shh-intro--home > .elementor-container {
        width: min(calc(100% - 48px), var(--shh-container));
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .shh-page-content .shh-intro--home .shh-intro-doodle.elementor-widget {
        position: static;
        width: 210px;
        margin-top: 30px;
    }

    .shh-page-content .shh-intro-doodle img {
        width: 210px;
    }

    .shh-page-hero {
        min-height: 430px;
    }

    .shh-page-content .shh-page-hero .shh-hero-card {
        width: calc(100% - 48px) !important;
        margin: 215px 24px 0;
    }

    .shh-page-content .shh-page-hero .shh-hero-card > .elementor-widget-wrap.elementor-element-populated {
        padding: 32px 28px !important;
    }

    .shh-hero-card {
        margin-inline: 24px;
        transform: translateY(250px);
        padding: 34px 30px;
    }

    .shh-hero-card h1,
    .shh-heading-pink,
    .shh-heading-green,
    .shh-story-card h2,
    .shh-belief-card h2,
    .shh-contact-band h2,
    .shh-contact-details h2,
    .shh-contact-form h2 {
        font-size: 34px;
    }

    .shh-hero-card p,
    .shh-copy-block p,
    .shh-story-card p,
    .shh-belief-card p {
        font-size: 17px;
    }

    .shh-intro {
        padding-top: 70px;
    }

    .shh-intro__grid,
    .shh-approach-teaser__grid,
    .shh-about-story__grid,
    .shh-contact-page__grid,
    .shh-belief-grid,
    .shh-card-row,
    .shh-care-grid,
    .shh-contact-band__grid,
    .shh-footer__inner {
        grid-template-columns: 1fr;
    }

    .shh-page-content .shh-two-column-section > .elementor-container,
    .shh-page-content .shh-card-row-section > .elementor-container,
    .shh-page-content .shh-three-card-section > .elementor-container,
    .shh-page-content .shh-care-grid-section > .elementor-container,
    .shh-page-content .shh-contact-band > .elementor-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .shh-page-content .shh-care-model-heading-section > .elementor-container {
        flex-direction: column;
        gap: 24px;
    }

    .shh-page-content .shh-heading-pink .elementor-heading-title,
    .shh-page-content .shh-heading-green .elementor-heading-title,
    .shh-page-content .shh-card-heading .elementor-heading-title,
    .shh-page-content .shh-story-card .elementor-heading-title,
    .shh-page-content .shh-contact-band .elementor-heading-title,
    .shh-page-content .shh-contact-details .elementor-heading-title,
    .shh-contact-form h2 {
        font-size: 34px;
    }

    .shh-page-content .shh-copy-block p,
    .shh-page-content .shh-copy-block h3,
    .shh-page-content .shh-card-copy p,
    .shh-page-content .shh-contact-band p,
    .shh-page-content .shh-story-card p,
    .shh-page-content .shh-belief-card p,
    .shh-page-content .shh-contact-details p {
        font-size: 17px;
    }

    .shh-page-content .shh-story-card > .elementor-widget-wrap,
    .shh-page-content .shh-contact-details > .elementor-widget-wrap,
    .shh-contact-form {
        padding: 34px 30px;
    }

    .shh-page-content .shh-story-card > .elementor-widget-wrap {
        min-height: auto;
    }

    .shh-page-content .shh-story-image img {
        min-height: auto;
    }

    .shh-page-content .shh-about-story {
        padding: 110px 0 0;
    }

    .shh-page-content .shh-about-story .shh-story-image {
        margin-left: 0;
    }

    .shh-page-content .shh-about-beliefs {
        margin-top: 0;
        padding: 72px 0 86px !important;
    }

    .shh-page-content .shh-about-beliefs::before {
        display: none;
    }

    .shh-page-content .shh-about-beliefs .shh-belief-card img {
        aspect-ratio: .76;
    }

    .shh-page-content .shh-about-beliefs::after,
    .shh-page-content .shh-approach-care-grid::after {
        display: none;
    }

    .shh-page-content .shh-approach-care-heading {
        padding: 82px 0 36px;
    }

    .shh-page-content .shh-approach-care-grid {
        padding-bottom: 92px;
    }

    .shh-page-content .shh-contact-doodle-col,
    .shh-page-content .shh-care-doodle-col {
        display: none;
    }

    .shh-intro__doodle {
        width: 180px;
        margin-top: 30px;
    }

    .shh-story-card,
    .shh-contact-details,
    .shh-contact-form {
        padding: 34px 28px;
    }

    .shh-footer {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .shh-footer__inner {
        position: relative;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
        gap: 34px 30px;
        width: min(calc(100% - 54px), 440px);
        padding: 70px 0 148px;
    }

    .shh-footer h2 {
        margin-bottom: 28px;
        font-size: clamp(18px, 5.2vw, 23px);
        line-height: 1;
    }

    .shh-footer ul {
        gap: 24px;
    }

    .shh-footer .shh-footer__column ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    .shh-footer .shh-footer__column li,
    .shh-footer .shh-footer__column a {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .shh-footer a {
        font-size: clamp(18px, 5.1vw, 22px);
        line-height: 1.1;
    }

    .shh-socials {
        position: absolute;
        left: 50%;
        bottom: 48px;
        gap: 64px;
        margin-top: 0;
        transform: translateX(-50%);
    }

    .shh-socials a {
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 0;
        font-size: 0;
    }

    .shh-socials img {
        display: block;
        width: 42px;
        height: 42px;
    }

    .shh-footer__contact {
        display: block;
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        width: auto;
        padding-top: 26px;
        border-top: 0;
    }

    .shh-footer__contact img,
    .shh-footer__contact .shh-footer__logo {
        width: min(100%, 150px);
        max-width: 100%;
        height: auto;
        margin: 0 0 22px;
    }

    .shh-footer__company {
        display: none;
    }

    .shh-footer__description {
        display: none;
    }

    .shh-footer__contact h2 {
        margin: 0 0 4px;
        font-size: 16px;
    }

    .shh-footer address {
        margin: 0;
        font-size: 0;
        line-height: 1.18;
    }

    .shh-footer__contact address::before {
        content: "Lincolnshire\A United Kingdom";
        display: block;
        margin-bottom: 28px;
        color: var(--shh-orange);
        font-size: clamp(18px, 5vw, 22px);
        font-weight: 400;
        line-height: 1.12;
        white-space: pre-line;
    }

    .shh-footer__contact address a {
        margin-top: 12px;
        font-size: clamp(16px, 4.6vw, 20px);
        font-weight: 700;
    }

    .shh-footer__contact address a[href^="mailto"] {
        display: none;
    }

    .shh-footer__contact address a[href^="tel"] {
        display: block;
        margin-top: 0;
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.15;
    }

    .shh-footer__legal {
        padding: 22px 0 24px;
    }

    .shh-footer__legal-inner {
        flex-direction: column;
        gap: 12px;
        width: min(calc(100% - 54px), 440px);
        align-items: flex-start;
    }

    .shh-footer__legal nav {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .shh-footer__legal nav a {
        white-space: nowrap;
    }

    .shh-footer__legal p,
    .shh-footer__legal a {
        font-size: 14px;
        line-height: 1.25;
    }

    .shh-beliefs {
        margin-top: 0;
        padding-top: 110px;
    }

    .shh-beliefs__doodle {
        width: 90px;
    }

    .shh-care-model__heading {
        justify-content: flex-start;
        gap: 24px;
        margin-bottom: 44px;
    }

    .shh-care-model__heading h2 {
        font-size: 40px;
    }

    .shh-care-model__heading img {
        width: 74px;
    }

    .shh-care-card h3 {
        font-size: 34px;
    }

    .shh-footer__doodle {
        display: none;
    }

    .shh-footer__legal-inner {
        flex-direction: column;
        gap: 16px;
    }
}
