.retreats-page-v2 {
    --retreat-ink: #3f352d;
    --retreat-muted: #77706a;
    --retreat-green: #476857;
    --retreat-sand: #f1eadf;
    --retreat-cream: #fbfaf7;
    --retreat-line: #e7ded2;
    --retreat-shadow: 0 14px 34px rgba(48, 40, 32, 0.12);
    background: var(--retreat-cream);
    color: var(--retreat-ink);
    font-family: 'Raleway', sans-serif;
}

.retreats-page-v2 *,
.retreats-page-v2 *::before,
.retreats-page-v2 *::after {
    box-sizing: border-box;
}

.retreats-shell {
    width: min(100% - 48px, 1140px);
    margin: 0 auto;
}

.retreats-hero-v2,
.retreats-cta-v2 {
    position: relative;
    isolation: isolate;
    min-height: 610px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: url('../img/repeat-bg.jpg') center / cover no-repeat;
    text-align: center;
}

.retreats-hero-v2 {
    margin-top: 0;
    padding: 140px 0 72px;
}

.retreats-cta-v2 {
    min-height: 360px;
    background-image: url('../img/gr.jpg');
    color: #fff;
}

.retreats-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(18, 24, 18, 0.38), rgba(18, 24, 18, 0.5));
}

.retreats-hero-content,
.retreats-cta-content {
    color: #fff;
}

.retreats-hero-content h1,
.retreats-cta-content h2,
.retreats-section-heading h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.retreats-hero-content h1 {
    /* width: min(820px, 100%); */
    margin-inline: auto;
    font-size: clamp(3.15rem, 7vw, 5.7rem);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.retreats-hero-content p,
.retreats-cta-content p {
    width: min(700px, 100%);
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.65;
}

.retreats-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.retreats-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.retreats-btn:hover {
    transform: translateY(-2px);
}

.retreats-btn-light {
    border-color: #fff;
    background: #fff;
    color: #314536;
}

.retreats-btn-dark {
    background: rgba(19, 27, 20, 0.72);
}

.retreats-btn-outline {
    background: rgba(255, 255, 255, 0.08);
}

.retreats-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.retreats-pill-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(24, 34, 25, 0.62);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.retreats-section {
    padding: 88px 0;
}

.retreats-section-light {
    background: var(--retreat-cream);
}

.retreats-section-sand {
    background: var(--retreat-sand);
}

.retreats-section-heading {
    width: min(680px, 100%);
    margin: 0 auto 52px;
    text-align: center;
}

.retreats-section-heading h2 {
    color: var(--retreat-ink);
    font-size: clamp(2.35rem, 4.2vw, 3.45rem);
}

.retreats-section-heading p {
    margin: 12px auto 0;
    color: var(--retreat-muted);
    font-size: 1rem;
    line-height: 1.55;
}

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

.retreat-card,
.retreat-benefit,
.retreat-story {
    border: 1px solid var(--retreat-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--retreat-shadow);
    overflow: hidden;
}

.retreat-card {
    min-height: 500px;
}

.retreat-card-center {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 32px) / 2);
}

.retreat-card-image {
    position: relative;
    display: block;
    height: 275px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.retreat-card-image::after,
.retreat-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 0 0 / 41%), rgb(0 0 0 / 53%));
}

.retreat-card-image img,
.retreat-highlight img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.retreat-card:hover img,
.retreat-highlight:hover img {
    transform: scale(1.05);
}

.retreat-card-image span {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #354838;
    font-size: 0.72rem;
    font-weight: 800;
}

.retreat-card-body {
    padding: 26px 28px 30px;
}

.retreat-card-body h3,
.retreat-benefit h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--retreat-ink);
    font-size: 1.55rem;
    font-weight: 600;
}

.retreat-card-body p,
.retreat-benefit p,
.retreat-story p {
    margin: 13px 0 0;
    color: var(--retreat-muted);
    font-size: 0.94rem;
    line-height: 1.66;
}

.retreat-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--retreat-green);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.retreats-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.retreat-benefit {
    min-height: 210px;
    padding: 28px;
}

.retreat-benefit span {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--retreat-green);
    color: #fff;
    font-size: 1.05rem;
}

.retreats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.retreat-highlight {
    position: relative;
    height: 255px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(38, 32, 27, 0.16);
}

.retreat-highlight span {
    position: absolute;
    left: 18px;
    bottom: 17px;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.retreats-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.retreat-story {
    min-height: 245px;
    padding: 32px 30px;
    box-shadow: 0 10px 26px rgba(48, 40, 32, 0.08);
}

.retreat-story>i {
    display: block;
    color: #d8ac62;
    font-size: 2.15rem;
    line-height: 1;
}

.retreat-story strong {
    display: block;
    margin-top: 24px;
    color: var(--retreat-ink);
    font-size: 0.84rem;
}

.retreat-story span {
    display: block;
    margin-top: 3px;
    color: var(--retreat-muted);
    font-size: 0.75rem;
}

.retreats-cta-content h2 {
    font-size: clamp(2.4rem, 4.5vw, 4.1rem);
}

@media (max-width: 991px) {
    .retreats-shell {
        width: min(100% - 32px, 720px);
    }

    .retreats-card-grid,
    .retreats-benefit-grid,
    .retreats-highlight-grid,
    .retreats-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .retreats-hero-v2 {
        min-height: 560px;
        padding-top: 118px;
    }
}

@media (max-width: 640px) {
    .retreats-hero-v2 {
        min-height: 680px;
    }

    .retreats-section {
        padding: 64px 0;
    }

    .retreats-card-grid,
    .retreats-benefit-grid,
    .retreats-highlight-grid,
    .retreats-story-grid {
        grid-template-columns: 1fr;
    }

    .retreat-card {
        min-height: 0;
    }

    .retreat-card-center {
        width: 100%;
    }

    .retreat-card-image {
        height: 230px;
    }

    .retreat-highlight {
        height: 168px;
    }

    .retreats-btn {
        width: min(100%, 280px);
    }
}
