/**
 * Cocoon Treatment Pages
 *
 * Shared treatment styling and Massage Experience layout.
 */

/* =========================================================
   Design settings
   ========================================================= */

.treatment-page {
    --cocoon-gold: #ce982c;
    --cocoon-ivory: #fffce5;
    --cocoon-sand: #f8f3ea;
    --cocoon-grey: #333333;
    --cocoon-white: #ffffff;
    --cocoon-border: rgba(51, 51, 51, 0.14);

    background: var(--cocoon-white);
    color: var(--cocoon-grey);
    font-family: "PT Sans", sans-serif;
}
.cocoon-hero__picture {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.treatment-navigation {
    width: 100%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.14);
    background: #ffffff;
    color: #333333;
}

.treatment-navigation__inner {
    display: flex;
    width: min(1180px, calc(100% - 48px));
    min-height: 82px;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* =========================================================
   Locations
   ========================================================= */

.treatment-locations {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
}

.treatment-locations__label {
    flex: 0 0 auto;
    color: var(--cocoon-gold);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.treatment-locations__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.treatment-location {
    padding: 7px 14px;
    border: 1px solid var(--cocoon-border);
    border-radius: 100px;
    background: var(--cocoon-white);
    font-size: 0.9rem;
}

.treatment-breadcrumbs {
    min-width: 0;
    font-size: 0.82rem;
}

.treatment-breadcrumbs ol {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
}

.treatment-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    color: rgba(51, 51, 51, 0.68);
}

.treatment-breadcrumbs li:not(:last-child)::after {
    margin-left: 7px;
    color: #ce982c;
    content: "/";
}

.treatment-breadcrumbs a {
    color: #333333;
    text-decoration: none;
    transition: color 180ms ease;
}

.treatment-breadcrumbs a:hover,
.treatment-breadcrumbs a:focus-visible {
    color: #ce982c;
}

.treatment-breadcrumbs [aria-current="page"] {
    overflow: hidden;
    max-width: 280px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile */

@media (max-width: 767px) {
	.treatment-locations {
		border-bottom: 1px solid var(--cocoon-border);
		gap: 10px;
        font-size: 12px;
	}

	.treatment-navigation__inner {
		display: block;
	}
	
	.treatment-navigation {
		border: none;
	}
	.treatment-breadcrumbs {
		border-bottom: 1px solid rgb(51, 51, 51, 0.14);
	}
    .treatment-meta-bar__inner {
        width: calc(100% - 32px);
        min-height: 0;
        padding-top: 22px;
        padding-bottom: 22px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .treatment-availability {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .treatment-breadcrumbs ol {
        justify-content: flex-start;
    }

    .treatment-breadcrumbs [aria-current="page"] {
        max-width: 190px;
    }
}

/* =========================================================
   Treatment introduction
   ========================================================= */

.treatment-intro {
    padding: clamp(30px, 9vw, 30px) 24px;
    background: #ffffff;
    color: #333333;
}

.treatment-intro__inner {
    width: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.treatment-intro__header {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}



.treatment-intro__text {
    font-size: 1.08rem;
    line-height: 1.75;
}

.treatment-intro__text > *:first-child {
    margin-top: 0;
}

.treatment-intro__text > *:last-child {
    margin-bottom: 0;
}


/* Duration */

.treatment-duration {
    display: flex;
    margin: clamp(38px, 5vw, 58px) auto;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.treatment-duration__label {
    color: #ce982c;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}



.treatment-duration__value {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 1.5rem);
    line-height: 1.3;
}
.treatment-duration-row {
    display: inline-grid;
    margin: 0px 10px;
}
.treatment-duration-row__duration {
}
/* Benefits */

.treatment-benefits__label {
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
	margin-bottom:20px;
}

.treatment-benefits {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    text-align: left;
}

.treatment-benefits li {
    position: relative;
    padding: 18px 0 18px 34px;
    border: 1px solid rgba(51, 51, 51, 0.14);
    line-height: 1.55;
    padding: 16px 46px;
}

.treatment-benefits li::before {
    position: absolute;
    top: 24px;
    left: 22px;
    width: 14px;
    height: 7px;
    border-bottom: 2px solid #ce982c;
    border-left: 2px solid #ce982c;
    content: "";
    transform: rotate(-45deg);
}


/* WhatsApp CTA */

.treatment-intro__action {
    margin-top: clamp(38px, 5vw, 55px);
}




/* Mobile */

@media (max-width: 600px) {
    .treatment-intro {
        padding: 65px 16px;
    }

    .treatment-intro__title {
    }

    

    .treatment-benefits {
        grid-template-columns: 1fr;
    }

    .treatment-whatsapp-button {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }
}
		
/* =========================================================
   Shared section heading
   ========================================================= */

.massage-section-heading {
    max-width: 680px;
    margin: 0 auto clamp(45px, 6vw, 70px);
    text-align: center;
}

.heading__eyebrow {
    color: #ce982c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0px;
}


/* =========================================================
   Experience detail cards
   ========================================================= */

.massage-details {
    padding: clamp(55px, 9vw, 70px) 24px;
    background: #ffffff;
    color: #333333;
}

.massage-details__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.massage-details__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0px;
    border-left: 1px solid rgba(51, 51, 51, 0.14);
}

.massage-detail-card {
    position: relative;
    min-height: 200px;
    padding: clamp(35px, 4vw, 42px);
    border: 1px solid rgba(51, 51, 51, 0.14);
    border-left: none;
}

.massage-detail-card__number {
    display: block;
    margin-bottom: 42px;
    color: #ce982c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.massage-detail-card h3 {
    color: #333333;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

.massage-detail-card__content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.massage-detail-card__content > *:first-child {
    margin-top: 0;
}

.massage-detail-card__content > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Who it is for and considerations
   ========================================================= */

.massage-suitability {
    padding: 24px 24px 70px 24px;
    color: #333333;
}

.massage-suitability__inner {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--cocoon-sand);
}

.massage-suitability__row {
    display: grid;
    padding: clamp(20px, 8vw, 20px) 0;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(25px, 8vw, 40px);
    align-items: start;
}

.massage-suitability__row + .massage-suitability__row {
    border-top: 1px solid rgba(51, 51, 51, 0.16);
}

.massage-suitability__content {
    font-size: 1.06rem;
    line-height: 1.7;
}

.massage-suitability__content > *:first-child {
    margin-top: 0;
}

.massage-suitability__content > *:last-child {
    margin-bottom: 0;
}

.massage-suitability__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.massage-suitability__content li {
    position: relative;
    padding: 12px 0 12px 34px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}

.massage-suitability__content li:first-child {
    padding-top: 0;
}

.massage-suitability__content li::before {
    position: absolute;
    top: 19px;
    left: 2px;
    width: 14px;
    height: 7px;
    border-bottom: 2px solid #ce982c;
    border-left: 2px solid #ce982c;
    content: "";
    transform: rotate(-45deg);
}

.massage-suitability__content li:first-child::before {
    top: 7px;
}


/* Considerations use a simple gold line instead of a check */

.massage-suitability__row--considerations
.massage-suitability__content li::before {
    top: 22px;
    width: 14px;
    height: 1px;
    border: 0;
    background: #ce982c;
    transform: none;
}

.massage-suitability__row--considerations
.massage-suitability__content li:first-child::before {
    top: 10px;
}


/* =========================================================
   Tablet and mobile
   ========================================================= */

@media (max-width: 900px) {
    .massage-details__grid {
        grid-template-columns: 1fr;
    }

    .massage-detail-card {
        min-height: 0;
    }

    .massage-detail-card__number {
        margin-bottom: 25px;
    }
}

@media (max-width: 700px) {
    .massage-details,
    .massage-suitability {
        padding-right: 20px;
        padding-left: 20px;
    }

    .massage-suitability__row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .massage-detail-card {
        padding: 34px 28px;
    }

    .massage-suitability__content,
    .massage-detail-card__content {
        font-size: 1rem;
    }
}

/* =========================================================
   Sensory experience and what to expect
   ========================================================= */

.massage-sensory {
    padding: clamp(55px, 9vw, 70px) 24px;
    background: var(--cocoon-sand);
}

.massage-sensory__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.massage-sensory__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}


/* Individual cards */

.massage-sensory__card {
    position: relative;
    overflow: hidden;
    padding:
        clamp(50px, 6vw, 75px)
        clamp(35px, 5vw, 60px);
    border: 1px solid rgba(206, 152, 44, 0.2);
    background: var(--cocoon-white);
}


/* Gold strip */

.massage-sensory__card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 7px;
    background: #ce982c;
    content: "";
}


/* Headings */

.massage-sensory .heading__eyebrow {
    margin: 0 0 14px;
    color: #ce982c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
	text-align: center;
}
.massage-sensory h2 {
	text-align: center;
}


/* Content */

.massage-sensory__content {
    color: #333333;
    font-size: clamp(1.03rem, 1.2vw, 1.12rem);
    line-height: 1.75;
}

.massage-sensory__content > *:first-child {
    margin-top: 0;
}

.massage-sensory__content > *:last-child {
    margin-bottom: 0;
}

.massage-sensory__content ul {
    margin: 22px 0 0;
    padding-left: 22px;
}

.massage-sensory__content li {
    margin-bottom: 10px;
}


/* Tablet and mobile */

@media (max-width: 800px) {
    .massage-sensory__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .massage-sensory {
        padding: 65px 20px;
    }

    .massage-sensory__grid {
        gap: 22px;
    }

    .massage-sensory__card {
        padding: 48px 28px;
    }

    .massage-sensory h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }
}
/* Make a single card use the full width */
.massage-sensory__card:only-child {
    grid-column: 1 / -1;
}
.massage-sensory__card:only-child .massage-sensory__content {
    max-width: 850px;
}

/* =========================================================
   Massage enhancements
   ========================================================= */

.massage-enhancements {
    padding: clamp(50px, 10vw, 70px) 24px;
    background: var(--cocoon-sand);
}

.massage-enhancements__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* Section heading */

.massage-enhancements__heading  {
    max-width: 680px;
    margin: 0 auto clamp(35px, 6vw, 40px);
    text-align: center;
}

.massage-enhancements__heading h2 {
}

.massage-enhancements__intro {
    margin: 0;
    font-size: clamp(1.05rem, 1.3vw, 1.15rem);
    line-height: 1.7;
}


/* Cards */

.massage-enhancements__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
}

.massage-enhancement-card {
    min-width: 0;
}

.massage-enhancement-card__link {
    display: block;
    color: #333333;
    text-decoration: none;
}

.massage-enhancement-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
    background: #fffce5;
}

.massage-enhancement-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.massage-enhancement-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            #a3a3a3,
            #373737
        );
}

.massage-enhancement-card__title {
    margin: 0;
    color: #333333;
    line-height: 1.3;
    text-align: left;
    transition: color 0.25s ease;
}

.massage-enhancement-card__link:hover
.massage-enhancement-card__image {
    transform: scale(1.045);
}

.massage-enhancement-card__link:hover
.massage-enhancement-card__title {
    color: #ce982c;
}

.massage-enhancement-card__link:focus-visible {
    outline: 2px solid #ce982c;
    outline-offset: 5px;
}


/* Mobile navigation */

.massage-enhancements__navigation {
    display: none;
    margin-top: 38px;
    text-align: center;
}

.massage-enhancements__button {
    display: inline-flex;
    min-width: 130px;
    padding: 13px 22px;
    border: 1px solid #ce982c;
    background: transparent;
    color: #333333;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.massage-enhancements__button:hover {
    background: #ce982c;
    color: #ffffff;
}

.massage-enhancements__arrow {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.massage-enhancements__slider.is-showing-second
.massage-enhancements__arrow {
    transform: rotate(180deg);
}


/* Optional note */

.massage-enhancements__note {
    max-width: 850px;
    margin: clamp(45px, 6vw, 70px) auto 0;
    padding: clamp(28px, 4vw, 42px);
    border-top: 5px solid #ce982c;
    background: #ffffff;
    font-size: clamp(1.02rem, 1.2vw, 1.1rem);
    line-height: 1.75;
    text-align: center;
}

.massage-enhancements__note > *:first-child {
    margin-top: 0;
}

.massage-enhancements__note > *:last-child {
    margin-bottom: 0;
}

.massage-enhancements__note a {
    color: #9d711c;
    font-weight: 700;
    text-underline-offset: 3px;
}


/* Tablet: show three cards, then the fourth */

@media (min-width: 601px) and (max-width: 900px) {
    .massage-enhancements__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .massage-enhancement-card:nth-child(n + 4) {
        display: none;
    }

    .massage-enhancements__slider.is-showing-second
    .massage-enhancement-card:nth-child(-n + 3) {
        display: none;
    }

    .massage-enhancements__slider.is-showing-second
    .massage-enhancement-card:nth-child(n + 4) {
        display: block;
        grid-column: 2;
    }

    .massage-enhancements__navigation {
        display: block;
    }
}
@media (min-width: 601px) {
    .massage-enhancements__navigation--three {
        display: none;
    }
}

/* Mobile: show two cards at a time */

@media (max-width: 600px) {
    .massage-enhancements {
        padding: 65px 20px;
    }

    .massage-enhancements__heading {
        margin-bottom: 42px;
    }

    .massage-enhancements__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .massage-enhancement-card:nth-child(n + 3) {
        display: none;
    }

    .massage-enhancements__slider.is-showing-second
    .massage-enhancement-card:nth-child(-n + 2) {
        display: none;
    }

    .massage-enhancements__slider.is-showing-second
    .massage-enhancement-card:nth-child(n + 3) {
        display: block;
    }

    .massage-enhancements__navigation {
        display: block;
    }

    .massage-enhancement-card__media {
        margin-bottom: 14px;
    }

    .massage-enhancement-card__title {
        font-size: clamp(1.05rem, 5vw, 1.3rem);
    }

    .massage-enhancements__note {
        padding: 28px 22px;
        text-align: left;
    }
}

/* =========================================================
   Related articles
   ========================================================= */

.related-articles {
    padding: clamp(50px, 10vw, 70px) 24px;
    overflow: hidden;
    background: #ffffff;
    color: #333333;
}

.related-articles__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   Section heading
   ========================================================= */

.related-articles__heading {
    max-width: 720px;
    margin: 0 auto clamp(35px, 6vw, 40px);
    text-align: center;
}

.related-articles__heading .heading__eyebrow {
    margin: 0 0 14px;
    color: #ce982c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.related-articles__heading h2 {
}

.related-articles__intro {
    margin: 0 auto;
    max-width: 620px;
    color: #555555;
    font-size: clamp(1.03rem, 1.3vw, 1.15rem);
    line-height: 1.7;
}


/* =========================================================
   Article grid
   ========================================================= */

.related-articles__slider {
    width: 100%;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
   	gap: clamp(22px, 2.5vw, 22px);
    align-items: stretch;
}


/* =========================================================
   Article card
   ========================================================= */

.related-article-card {
    position: relative;
    min-width: 0;
    height: 100%;
    border: 1px solid rgba(206, 152, 44, 0.16);
    box-shadow: 0 6px 10px rgba(51, 51, 51, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.related-article-card:hover,
.related-article-card:focus-within {
    z-index: 2;
    border-color: rgba(206, 152, 44, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(51, 51, 51, 0.16);
}

.related-article-card__link {
    display: flex;
    height: 100%;
    color: #333333;
    text-decoration: none;
    flex-direction: column;
}

.related-article-card__link:focus-visible {
    outline: 2px solid #ce982c;
    outline-offset: 4px;
}


/* =========================================================
   Landscape image
   ========================================================= */

.related-article-card__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
    flex: 0 0 auto;
    background: #eadfcb;
}

.related-article-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.55s ease,
        filter 0.35s ease;
}

.related-article-card:hover .related-article-card__image,
.related-article-card:focus-within .related-article-card__image {
    transform: scale(1.07);
    filter: brightness(0.75);
}

.related-article-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            #fffce5 0%,
            #eadfcb 100%
        );
}


/* =========================================================
   Explore overlay
   ========================================================= */

.related-article-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 20px;
    background: rgba(20, 20, 20, 0.28);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.35s ease,
        background-color 0.35s ease;
}

.related-article-card__overlay::after {
    width: 22px;
    height: 1px;
    margin-left: 10px;
    background: currentColor;
    content: "";
    transition: width 0.3s ease;
}

.related-article-card:hover .related-article-card__overlay,
.related-article-card:focus-within .related-article-card__overlay {
    background: rgba(20, 20, 20, 0.48);
    opacity: 1;
}

.related-article-card:hover .related-article-card__overlay::after,
.related-article-card:focus-within
.related-article-card__overlay::after {
    width: 34px;
}


/* =========================================================
   Card content
   ========================================================= */

.related-article-card__content {
    display: flex;
    padding: clamp(15px, 2.6vw, 15px);
    flex: 1;
    flex-direction: column;
}

.related-article-card__category {
    margin: 0 0 12px;
    color: #9d711c;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.related-article-card__title {
    margin: 0 0 14px;
    color: #333333;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 1.7vw, 1.3rem);
    line-height: 1.25;
    transition: color 0.25s ease;
}

.related-article-card:hover .related-article-card__title,
.related-article-card:focus-within
.related-article-card__title {
    color: #9d711c;
}

.related-article-card__excerpt {
    margin: 0;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.65;
}


/* =========================================================
   Next and Previous navigation
   ========================================================= */

.related-articles__navigation {
    display: none;
    margin-top: 38px;
    text-align: center;
}

.related-articles__button {
    display: inline-flex;
    min-width: 140px;
    padding: 13px 24px;
    border: 1px solid #ce982c;
    border-radius: 0;
    background: transparent;
    color: #333333;
    font-family: "PT Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.related-articles__button:hover,
.related-articles__button:focus-visible {
    background: #ce982c;
    color: #ffffff;
}

.related-articles__button:focus-visible {
    outline: 2px solid #333333;
    outline-offset: 3px;
}

.related-articles__arrow {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.related-articles__slider.is-showing-second
.related-articles__arrow {
    transform: rotate(180deg);
}


/* =========================================================
   Tablet: 3 cards, then the fourth
   ========================================================= */

@media (min-width: 601px) and (max-width: 900px) {
    .related-articles__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
   		gap: clamp(22px, 2.5vw, 22px);
    }

    /*
     * Hide the fourth article initially.
     */
    .related-article-card:nth-child(n + 4) {
        display: none;
    }

    /*
     * After clicking Next, hide the first three.
     */
    .related-articles__slider.is-showing-second
    .related-article-card:nth-child(-n + 3) {
        display: none;
    }

    /*
     * Display the fourth article in the centre.
     */
    .related-articles__slider.is-showing-second
    .related-article-card:nth-child(n + 4) {
        display: block;
        grid-column: 2;
    }

    /*
     * Show navigation for four articles.
     */
    .related-articles__navigation {
        display: block;
    }

    /*
     * Exactly three articles do not need navigation on tablet.
     */
    .related-articles__navigation--three {
        display: none;
    }

    .related-article-card__content {
        padding: 24px 20px;
    }

    .related-article-card__title {
        font-size: clamp(1.18rem, 2.8vw, 1.45rem);
    }
}


/* =========================================================
   Mobile: 2 cards at a time
   ========================================================= */

@media (max-width: 600px) {
    .related-articles {
        padding: 65px 20px;
    }

    .related-articles__heading {
        margin-bottom: 42px;
    }

    .related-articles__heading h2 {
        font-size: clamp(2.15rem, 10vw, 2.8rem);
    }

    .related-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
   		gap: clamp(22px, 2.5vw, 22px);
    }

    /*
     * Initially show only the first two articles.
     */
    .related-article-card:nth-child(n + 3) {
        display: none;
    }

    /*
     * After clicking Next, hide the first pair.
     */
    .related-articles__slider.is-showing-second
    .related-article-card:nth-child(-n + 2) {
        display: none;
    }

    /*
     * Display articles three and four.
     */
    .related-articles__slider.is-showing-second
    .related-article-card:nth-child(n + 3) {
        display: block;
    }

    .related-articles__navigation {
        display: block;
        margin-top: 32px;
    }

    .related-article-card__content {
        padding: 18px 15px 20px;
    }

    .related-article-card__category {
        margin-bottom: 8px;
        font-size: 0.62rem;
        letter-spacing: 0.09em;
    }

    .related-article-card__title {
        margin-bottom: 10px;
        font-size: clamp(1.05rem, 5vw, 1.28rem);
    }

    .related-article-card__excerpt {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    /*
     * Keep the hover movement smaller on touch devices.
     */
    .related-article-card:hover,
    .related-article-card:focus-within {
        transform: translateY(-4px);
    }
}


/* =========================================================
   Very small screens
   ========================================================= */

@media (max-width: 380px) {
    .related-articles {
        padding-right: 15px;
        padding-left: 15px;
    }

    .related-articles__grid {
        gap: 12px 10px;
    }

    .related-article-card__content {
        padding: 16px 12px 18px;
    }

    .related-article-card__excerpt {
        font-size: 0.82rem;
    }
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .related-article-card,
    .related-article-card__image,
    .related-article-card__overlay,
    .related-article-card__overlay::after,
    .related-article-card__title,
    .related-articles__arrow {
        transition: none;
    }

    .related-article-card:hover,
    .related-article-card:focus-within {
        transform: none;
    }

    .related-article-card:hover .related-article-card__image,
    .related-article-card:focus-within
    .related-article-card__image {
        transform: none;
    }
}

/* =========================================================
   Treatment FAQ
   ========================================================= */

.treatment-faq {
	padding: clamp(50px, 10vw, 70px) 24px;
	color: #333333;
}

.treatment-faq__inner {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
}


/* =========================================================
   Section heading
   ========================================================= */

.treatment-faq__heading {
	max-width: 720px;
	margin: 0 auto clamp(48px, 6vw, 50px);
	text-align: center;
}

.treatment-faq__heading .heading__eyebrow {
	margin: 0 0 14px;
	color: #ce982c;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.treatment-faq__heading h2 {
}

.treatment-faq__intro {
	max-width: 620px;
	margin: 0 auto;
	color: #555555;
	font-size: clamp(1.03rem, 1.3vw, 1.15rem);
	line-height: 1.7;
}


/* =========================================================
   FAQ columns
   ========================================================= */

.treatment-faq__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(45px, 7vw, 90px);
	align-items: start;
}

.treatment-faq__column {
	min-width: 0;
}


/* =========================================================
   Questions and answers
   ========================================================= */

.treatment-faq__column h3 {
	color: #333333;
}



.treatment-faq__column h3:not(:first-child) {
	margin-top: clamp(34px, 4vw, 48px);
}

.treatment-faq__column p {
	margin: 0;
	color: #555555;
	font-size: clamp(1rem, 1.15vw, 1.08rem);
	line-height: 1.75;
}

.treatment-faq__column p + p {
	margin-top: 14px;
}

.treatment-faq__column ul,
.treatment-faq__column ol {
	margin: 14px 0 0;
	padding-left: 22px;
	color: #555555;
	font-size: clamp(1rem, 1.15vw, 1.08rem);
	line-height: 1.7;
}

.treatment-faq__column li + li {
	margin-top: 7px;
}

.treatment-faq__column a {
	color: #9d711c;
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}


/* Remove unwanted editor spacing */

.treatment-faq__column > *:first-child {
	margin-top: 0;
}

.treatment-faq__column > *:last-child {
	margin-bottom: 0;
}


/* =========================================================
   One populated column
   ========================================================= */

.treatment-faq--single-column .treatment-faq__columns {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
	.treatment-faq {
		padding: 65px 20px;
	}

	.treatment-faq__heading {
		margin-bottom: 44px;
	}

	.treatment-faq__heading h2 {
		font-size: clamp(2.15rem, 10vw, 2.8rem);
	}

	.treatment-faq__columns {
		grid-template-columns: 1fr;
		gap: 0;
	}

	/*
	 * Continue the question spacing naturally when the
	 * right column moves below the left column.
	 */
	.treatment-faq__column + .treatment-faq__column h3:first-child {
		margin-top: clamp(34px, 8vw, 44px);
	}

	.treatment-faq__column h3 {
		font-size: clamp(1.2rem, 5.5vw, 1.45rem);
	}

	.treatment-faq__column h3::after {
		left: 22px;
	}

	.treatment-faq__column p,
	.treatment-faq__column ul,
	.treatment-faq__column ol {
		font-size: 1rem;
	}
}


/* =========================================================
   Very small screens
   ========================================================= */

@media (max-width: 380px) {
	.treatment-faq {
		padding-right: 16px;
		padding-left: 16px;
	}

	.treatment-faq__column h3 {
		padding-left: 20px;
	}

	.treatment-faq__column h3::after {
		left: 20px;
	}
}

/* =========================================================
   Massage booking CTA
   ========================================================= */

.massage-booking-cta {
	padding: clamp(75px, 9vw, 115px) 24px;
	overflow: hidden;
	background: #333333;
	color: #ffffff;
}

.massage-booking-cta__inner {
	display: grid;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.75fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: center;
}


/* Text */

.massage-booking-cta__content {
	max-width: 690px;
}

.massage-booking-cta__eyebrow {
	margin: 0 0 15px;
	color: #ce982c;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.massage-booking-cta h2 {
	color: #ffffff;
}

.massage-booking-cta__text {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.03rem, 1.3vw, 1.16rem);
	line-height: 1.75;
}


/* Buttons */

.massage-booking-cta__actions {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 16px;
}

.massage-booking-cta__button {
	display: flex;
	width: 100%;
	min-height: 58px;
	padding: 15px 22px;
	border: 1px solid #ffffff;
	background: #ffffff;
	color: #333333;
	font-family: "PT Sans", sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border-radius: 6px;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}

.massage-booking-cta__button:hover,
.massage-booking-cta__button:focus-visible {
	border-color: #ce982c;
	background: #ce982c;
	color: #ffffff;
	transform: translateX(6px);
}

.massage-booking-cta__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 4px;
}

.massage-booking-cta__arrow {
	flex: 0 0 auto;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.3s ease;
}

.massage-booking-cta__button:hover
.massage-booking-cta__arrow,
.massage-booking-cta__button:focus-visible
.massage-booking-cta__arrow {
	transform: translateX(5px);
}


/* =========================================================
   Tablet and mobile
   ========================================================= */

@media (max-width: 800px) {
	.massage-booking-cta {
		padding: 70px 24px;
	}

	.massage-booking-cta__inner {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.massage-booking-cta__content {
		max-width: 650px;
	}

	.massage-booking-cta__actions {
		max-width: 460px;
	}
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {
	.massage-booking-cta {
		padding: 65px 20px;
	}

	.massage-booking-cta__inner {
		gap: 32px;
	}

	.massage-booking-cta h2 {
		margin-bottom: 17px;
		font-size: clamp(2.2rem, 11vw, 2.85rem);
	}

	.massage-booking-cta__text {
		font-size: 1rem;
		line-height: 1.7;
	}

	.massage-booking-cta__actions {
		max-width: none;
		gap: 13px;
	}

	.massage-booking-cta__button {
		min-height: 56px;
		padding: 14px 19px;
		font-size: 0.95rem;
	}

	.massage-booking-cta__button:hover,
	.massage-booking-cta__button:focus-visible {
		transform: translateX(3px);
	}
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.massage-booking-cta__button,
	.massage-booking-cta__arrow {
		transition: none;
	}

	.massage-booking-cta__button:hover,
	.massage-booking-cta__button:focus-visible,
	.massage-booking-cta__button:hover
	.massage-booking-cta__arrow,
	.massage-booking-cta__button:focus-visible
	.massage-booking-cta__arrow {
		transform: none;
	}
}



/* =========================================================
   Treatment at a glance
   ========================================================= */

.treatment-glance {
	padding: clamp(70px, 8vw, 110px) 24px;
	background: #f8f3ea;
}

.treatment-glance__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.treatment-glance__heading {
	max-width: 680px;
	margin: 0 auto clamp(42px, 5vw, 62px);
	text-align: center;
}

.treatment-glance__heading h2 {
	margin: 0;
	color: #333333;
	font-family: "Playfair Display", serif;
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.12;
}

.treatment-glance__layout {
	display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	border: 1px solid rgba(206, 152, 44, 0.35);
	background: #ffffff;
}


/* =========================================================
   Suitable for and treatment areas
   ========================================================= */

.treatment-glance__lists {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 3vw, 44px);
    padding: clamp(14px, 4vw, 40px) clamp(14px, 4vw, 22px);
	border-right: 1px solid rgba(206, 152, 44, 0.28);
	background: #fffce5;
}

.treatment-glance__list-group {
	min-width: 0;
}

.treatment-glance__list-group h3 {
	margin: 0 0 22px;
	color: #333333;
	font-family: "Playfair Display", serif;
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	font-weight: 700;
	line-height: 1.25;
}

.treatment-glance__list-group ul {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 13px;
}

.treatment-glance__list-group li {
	display: grid;
	grid-template-columns: 10px minmax(0, 1fr);
	color: #555555;
	font-size: 0.96rem;
	line-height: 1.5;
	align-items: start;
	gap: 11px;
}

.treatment-glance__marker {
	display: block;
	width: 7px;
	height: 7px;
	margin-top: 0.52em;
	border: 1px solid #ce982c;
	border-radius: 50%;
}


/* =========================================================
   Practical treatment details
   ========================================================= */

.treatment-glance__details {
	display: grid;
	margin: 0;
    padding: clamp(14px, 4vw, 40px) clamp(14px, 4vw, 22px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-content: start;
	gap: 0;
}

.treatment-glance__detail {
	min-width: 0;
	padding: 0 28px 26px 0;
	margin: 0 0 26px;
}

.treatment-glance__detail:nth-child(even) {
	padding-right: 0;
	padding-left: 28px;
}

.treatment-glance__detail:nth-last-child(-n + 2) {
	margin-bottom: 0;
	padding-bottom: 0;
}

.treatment-glance__detail dt {
	margin: 0 0 8px;
	color: #9d711c;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.treatment-glance__detail dd {
    margin: 0;
    line-height: 1.45;
}


/* When only one side contains content */

.treatment-glance__layout:has(
	.treatment-glance__details:first-child
) {
	grid-template-columns: 1fr;
}

.treatment-glance__layout:has(
	.treatment-glance__lists:only-child
) {
	grid-template-columns: 1fr;
}

.treatment-glance__lists:only-child {
	border-right: 0;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 900px) {
	.treatment-glance__layout {
		grid-template-columns: 1fr;
	}

	.treatment-glance__lists {
		border-right: 0;
		border-bottom: 1px solid rgba(206, 152, 44, 0.28);
	}

	.treatment-glance__details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {
	.treatment-glance {
		padding: 65px 20px;
	}

	.treatment-glance__heading {
		margin-bottom: 38px;
	}

	.treatment-glance__heading h2 {
		font-size: clamp(2rem, 10vw, 2.65rem);
	}

	.treatment-glance__lists {
		grid-template-columns: 1fr;
		padding: 30px 24px;
		gap: 34px;
	}

	.treatment-glance__list-group h3 {
		margin-bottom: 17px;
	}

	.treatment-glance__list-group ul {
		gap: 11px;
	}

	.treatment-glance__list-group li {
		font-size: 0.92rem;
	}

	.treatment-glance__details {
		padding: 30px 24px;
		grid-template-columns: 1fr;
	}

	.treatment-glance__detail,
	.treatment-glance__detail:nth-child(even) {
		margin: 0 0 20px;
		padding: 0 0 20px;
		border-right: 0;
		border-bottom: 1px solid rgba(51, 51, 51, 0.12);
		border-left: 0;
	}

	.treatment-glance__detail:nth-last-child(-n + 2) {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(51, 51, 51, 0.12);
	}

	.treatment-glance__detail:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.treatment-glance__detail dd {
		font-size: 1.05rem;
	}
}


/* =========================================================
   Very small screens
   ========================================================= */

@media (max-width: 380px) {
	.treatment-glance {
		padding-right: 15px;
		padding-left: 15px;
	}

	.treatment-glance__lists,
	.treatment-glance__details {
		padding-right: 20px;
		padding-left: 20px;
	}
}