.wellbeing-page {
    background: var(--blanco-roto);
}

.wellbeing-hero {
    position: relative;
    min-height: clamp(470px, 66vh, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-position: center;
}

.wellbeing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(34, 27, 39, 0.72), rgba(50, 39, 55, 0.38)),
        radial-gradient(circle at 78% 20%, rgba(196, 216, 184, 0.22), transparent 32%);
}

.wellbeing-hero__content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    color: #fff;
}

.wellbeing-hero__content h1 {
    max-width: 680px;
    margin: 0 0 1.15rem;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.98;
    font-weight: 600;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.3);
    text-wrap: balance;
}

.wellbeing-hero__content > p:not(.wellbeing-eyebrow) {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
}

.wellbeing-eyebrow {
    margin: 0 0 0.75rem;
    color: #765f80;
    font-family: var(--font-sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wellbeing-hero .wellbeing-eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.wellbeing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.wellbeing-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

button.wellbeing-button {
    cursor: pointer;
}

.wellbeing-button:hover,
.wellbeing-button:focus-visible {
    transform: translateY(-2px);
}

.wellbeing-button--primary {
    border-color: #fff;
    background: #fff;
    color: #4f4056;
}

.wellbeing-button--primary:hover,
.wellbeing-button--primary:focus-visible {
    color: #3d2d5f;
    background: #f5f0f6;
}

.wellbeing-button--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.wellbeing-button--ghost:hover,
.wellbeing-button--ghost:focus-visible {
    color: #403645;
    background: #fff;
}

.wellbeing-button--outline {
    border-color: rgba(78, 62, 86, 0.35);
    color: #55445e;
    background: transparent;
}

.wellbeing-start,
.wellbeing-reading,
.wellbeing-next {
    padding: 5rem 0;
}

.wellbeing-heading {
    max-width: 700px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.wellbeing-heading--left {
    max-width: none;
    margin-left: 0;
    text-align: left;
}

.wellbeing-heading h2 {
    margin: 0 0 0.7rem;
    color: #493e4c;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.wellbeing-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: #706870;
    font-size: 0.96rem;
}

.wellbeing-heading--left > p:last-child {
    margin-left: 0;
}

.wellbeing-option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.wellbeing-option-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid #e2d9df;
    border-radius: 20px;
    background: #fff;
    color: #514952;
    text-align: left;
    box-shadow: 0 14px 36px rgba(56, 42, 62, 0.07);
    transition: transform 0.23s ease, box-shadow 0.23s ease, border-color 0.23s ease;
}

button.wellbeing-option-card {
    width: 100%;
    font-family: inherit;
    cursor: pointer;
}

.wellbeing-option-card:hover,
.wellbeing-option-card:focus-visible {
    color: #514952;
    transform: translateY(-6px);
    border-color: rgba(92, 72, 101, 0.42);
    box-shadow: 0 22px 45px rgba(56, 42, 62, 0.13);
}

.wellbeing-option-card__number {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    color: #c7bac8;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.wellbeing-option-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    color: #695675;
    background: #eee7f0;
    font-size: 1.1rem;
}

.wellbeing-option-card:nth-child(2) .wellbeing-option-card__icon {
    color: #566a55;
    background: #e5eee1;
}

.wellbeing-option-card:nth-child(3) .wellbeing-option-card__icon {
    color: #82663d;
    background: #f1e8d7;
}

.wellbeing-option-card:nth-child(4) .wellbeing-option-card__icon {
    color: #526b70;
    background: #e2ecee;
}

.wellbeing-option-card h3 {
    margin: 0 0 0.65rem;
    color: #4b3f50;
    font-size: 1.55rem;
    line-height: 1.08;
}

.wellbeing-option-card p {
    margin: 0 0 1.1rem;
    color: #706a70;
    font-size: 0.86rem;
    line-height: 1.6;
}

.wellbeing-option-card__link {
    margin-top: auto;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(82, 64, 91, 0.35);
    color: #5c4a66;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wellbeing-reading {
    background:
        radial-gradient(circle at 8% 16%, rgba(181, 201, 169, 0.22), transparent 28%),
        #f2f0e9;
}

.wellbeing-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.wellbeing-post-card {
    overflow: hidden;
    border: 1px solid #e1d8d0;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(55, 44, 59, 0.07);
}

.wellbeing-post-card__image {
    min-height: 210px;
    display: block;
    background-color: #ded7df;
    background-image: linear-gradient(145deg, #d8d2dd, #e9e4db);
    background-size: cover;
    background-position: center;
}

.wellbeing-post-card__body {
    padding: 1.35rem;
}

.wellbeing-post-card__body > p {
    margin: 0 0 0.45rem;
    color: #958995;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.wellbeing-post-card h3 {
    margin: 0 0 1rem;
    font-size: 1.45rem;
    line-height: 1.15;
}

.wellbeing-post-card h3 a {
    color: #4e4252;
}

.wellbeing-post-card__link {
    color: #695673;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wellbeing-reading__footer {
    margin-top: 2rem;
    text-align: center;
}

.wellbeing-next-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.wellbeing-next-card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 18px 42px rgba(49, 38, 55, 0.13);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wellbeing-next-card--therapies {
    background: linear-gradient(145deg, #4b3a58, #2d2533);
}

.wellbeing-next-card--shop {
    color: #473d42;
    background: linear-gradient(145deg, #e8deca, #d7c4aa);
}

.wellbeing-next-card:hover,
.wellbeing-next-card:focus-visible {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(49, 38, 55, 0.18);
}

.wellbeing-next-card--shop:hover,
.wellbeing-next-card--shop:focus-visible {
    color: #473d42;
}

.wellbeing-next-card > span {
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.75;
}

.wellbeing-next-card h3 {
    margin: 0 0 0.55rem;
    color: inherit;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.wellbeing-next-card p {
    max-width: 500px;
    margin: 0 0 1rem;
    color: inherit;
    font-size: 0.9rem;
    opacity: 0.88;
}

.wellbeing-next-card strong {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .wellbeing-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wellbeing-option-card {
        min-height: 275px;
    }
}

@media (max-width: 767.98px) {
    .wellbeing-hero {
        min-height: 500px;
        background-position: center;
    }

    .wellbeing-hero::after {
        background: linear-gradient(180deg, rgba(37, 29, 41, 0.58), rgba(42, 32, 47, 0.62));
    }

    .wellbeing-hero__content {
        padding-top: 3.8rem;
        padding-bottom: 3.8rem;
        text-align: center;
    }

    .wellbeing-hero__content h1,
    .wellbeing-hero__content > p:not(.wellbeing-eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }

    .wellbeing-hero__actions {
        justify-content: center;
    }

    .wellbeing-start,
    .wellbeing-reading,
    .wellbeing-next {
        padding: 3.7rem 0;
    }

    .wellbeing-option-grid,
    .wellbeing-post-grid,
    .wellbeing-next-grid {
        grid-template-columns: 1fr;
    }

    .wellbeing-option-card,
    .wellbeing-next-card {
        min-height: 0;
    }

    .wellbeing-post-card__image {
        min-height: 190px;
    }
}

@media (max-width: 420px) {
    .wellbeing-hero__actions {
        flex-direction: column;
    }

    .wellbeing-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wellbeing-button,
    .wellbeing-option-card,
    .wellbeing-next-card {
        transition: none;
    }
}
