/* ── CSS VARIABLES (Synced with Site Root) ─────────────────── */
:root {
    --gr-teal: #4a9b8c;
    --gr-teal-dark: #357a6d;
    --gr-teal-light: #e8f7f5;
    --gr-cream: #f8f5f0;
    --gr-cream-dk: #e8e0d4;
    --gr-brown: #3d2b1a;
    --gr-brown-mid: #6b4c30;
    --gr-gold: #c9a058;
    --gr-text-dark: #2c2016;
    --gr-text-mid: #5a4535;
    --gr-white: #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', sans-serif;

    --section-pad: 100px 0;
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--gr-white);
    color: var(--gr-text-dark);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================================
   BANNER & BREADCRUMB
   ============================================================ */
.retreat-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../img/our-5.jpg') center/cover no-repeat;
    color: var(--gr-white);
}

.retreat-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.retreat-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.retreat-banner__label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.retreat-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.retreat-banner__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 520px;
    opacity: 0.95;
    font-weight: 400;
}

.btn-banner-white {
    display: inline-block;
    background: var(--gr-white);
    color: #1a1a1a;
    padding: 16px 42px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-banner-white:hover {
    background: var(--gr-teal);
    color: var(--gr-white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.retreat-breadcrumb {
    background: var(--gr-cream);
    padding: 15px 0;
    border-bottom: 1px solid var(--gr-cream-dk);
}

.retreat-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.retreat-breadcrumb li {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gr-text-mid);
}

.retreat-breadcrumb li a {
    color: var(--gr-teal);
    transition: color 0.2s;
}

.retreat-breadcrumb li a:hover {
    color: var(--gr-teal-dark);
}

.retreat-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--gr-cream-dk);
}

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gr-teal);
    display: block;
    margin-bottom: 15px;
}

/* ── HEADINGS ───────────────────────────────────────────────── */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--gr-brown);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title-center {
    text-align: center;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gr-text-mid);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.8;
}

/* ── CTA BUTTONS ────────────────────────────────────────────── */
.btn-retreat {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid var(--gr-brown);
    color: var(--gr-brown);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.btn-retreat:hover {
    background: var(--gr-brown);
    color: var(--gr-white);
}

.btn-retreat-solid {
    background: var(--gr-brown);
    color: var(--gr-white);
}

.btn-retreat-solid:hover {
    background: transparent;
    color: var(--gr-brown);
}

/* ============================================================
   RETREAT GALLERY SLIDER (Synced with sv-adventure structure)
   ============================================================ */
.retreat-gallery-section {
    padding: 0;
    background: var(--gr-white);
    overflow: hidden;
    position: relative;
}

.sv-adventure__carousel {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.sv-adventure__carousel:active {
    cursor: grabbing;
}

.sv-adventure__track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.sv-adventure__item {
    flex: 0 0 450px;
    height: 420px;
    position: relative;
    overflow: hidden;
    margin-right: 2px;
}

.sv-adventure__img-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sv-adventure__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.sv-adventure__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 43, 26, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 35px;
    opacity: 0;
    transition: all 0.5s ease;
}

.sv-adventure__overlay span {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

/* Hover Perfection */
.sv-adventure__item:hover img {
    transform: scale(1.1);
}

.sv-adventure__item:hover .sv-adventure__overlay {
    opacity: 1;
}

.sv-adventure__item:hover .sv-adventure__overlay span {
    transform: translateY(0);
}

/* Responsive Perfection */
@media (max-width: 991px) {
    .sv-adventure__item {
        flex: 0 0 350px;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .sv-adventure__item {
        flex: 0 0 280px;
        height: 240px;
    }
}

/* ============================================================
   HERO / INTRO BAND  (full-width image split)
   ============================================================ */
.hero-band {
    background: var(--gr-white);
    padding: var(--section-pad);
}

.hero-band .text-col {
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-band .text-col p {
    color: var(--gr-text-mid);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    margin: 24px 0 36px;
    max-width: 440px;
}

.hero-band .img-col {
    position: relative;
    overflow: hidden;
}

.hero-band .img-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-band .img-col:hover img {
    transform: scale(1.03);
}

@media (min-width: 1024px) {
    .retreat-banner .fade-up.visible {
        left: 12rem;
        max-width: 50rem;
    }
}

@media (min-width: 1440px) {
    .retreat-banner .fade-up.visible {
        left: 12rem;
        max-width: 50rem;
    }
}

/* ============================================================
   WHAT MAKES IT UNIQUE — 4 FEATURE CARDS
   ============================================================ */
.unique-section {
    background: var(--gr-cream);
    padding: var(--section-pad);
}

.unique-section .intro-row {
    margin-bottom: 60px;
}

.feature-card {
    background: var(--gr-white);
    border: 1px solid var(--gr-cream-dk);
    padding: 36px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    border-radius: 4px;
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(61, 43, 26, 0.1);
    transform: translateY(-8px);
}

.feature-card .icon-wrap {
    width: 44px;
    height: 44px;
    border: 1.5px solid #c5ddda;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--gr-teal);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gr-brown);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.feature-card p {
    font-size: 14px;
    color: var(--gr-text-mid);
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================================
   INCLUSIONS & FEATURES — 4-COL GRID
   ============================================================ */
.inclusions-section {
    background: var(--gr-white);
    padding: var(--section-pad);
}

.inclusion-col h5 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--gr-brown);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inclusion-col h5 svg {
    color: var(--gr-teal);
    flex-shrink: 0;
    opacity: 0.8;
}

.inclusion-col ul {
    list-style: none;
    padding: 0;
}

.inclusion-col ul li {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--gr-text-mid);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.inclusion-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gr-gold);
    font-size: 16px;
    line-height: 1;
    top: 5px;
}

/* ============================================================
   IDEAL FOR — SUBTLE HIGHLIGHT BAND
   ============================================================ */
.ideal-section {
    background: var(--gr-cream);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.ideal-section .section-label {
    text-align: center;
    color: var(--gr-teal);
}

.ideal-section .section-title {
    text-align: center;
    color: var(--gr-brown);
}

.ideal-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.ideal-num {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gr-cream-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gr-gold);
    font-weight: 500;
}

.ideal-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gr-brown);
    margin-bottom: 14px;
}

.ideal-card p {
    font-size: 14.5px;
    color: var(--gr-text-mid);
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================================
   EXPERIENCE FLOW — TIMELINE
   ============================================================ */
.flow-section {
    background: var(--gr-white);
    padding: var(--section-pad);
}

.flow-timeline {
    position: relative;
    padding-left: 40px;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 40px;
    width: 1px;
    background: #e5e2da;
}

.flow-item {
    position: relative;
    padding-bottom: 60px;
    transition: var(--transition);
}

.flow-item:last-child {
    padding-bottom: 0;
}

.flow-dot {
    position: absolute;
    left: -44.5px;
    /* Offset to center on the 1px line */
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--gr-teal);
    border-radius: 50%;
    z-index: 2;
}

.flow-content .day-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gr-teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.flow-content h4 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--gr-brown);
    margin-bottom: 12px;
}

.flow-content p {
    font-size: 15px;
    color: var(--gr-text-mid);
    font-weight: 400;
    line-height: 1.85;
}

/* ============================================================
   GUEST STORIES — TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: var(--gr-cream);
    padding: var(--section-pad);
}

.testimonial-card {
    position: relative;
    padding-top: 30px;
    height: 100%;
}

.testimonial-card .quote-icon {
    color: var(--gr-cream-dk);
    position: absolute;
    top: -10px;
    left: -15px;
    z-index: 1;
    opacity: 0.8;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    color: var(--gr-brown);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    font-style: normal;
}

.testimonial-footer {
    margin-top: 1.5rem;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--gr-brown);
    margin-bottom: 4px;
}

.author-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gr-text-mid);
    text-transform: none;
    font-weight: 400;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    background: var(--gr-cream-dk);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: 'SANCTUARY';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 160px;
    font-weight: 600;
    color: rgba(61, 43, 26, 0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

.cta-section .section-title {
    margin-bottom: 16px;
}

.cta-section .section-subtitle {
    margin: 0 auto 40px;
    text-align: center;
}

/* ============================================================
   DIVIDER LINE
   ============================================================ */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gr-gold), transparent);
    margin: 0 auto;
    max-width: 200px;
}

/* ============================================================
   SCROLL ANIMATION CLASSES
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);

}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    :root {
        --section-pad: 72px 0;
    }

    .hero-band .text-col {
        padding-right: 0;
        margin-bottom: 36px;
    }

    .hero-band .img-col img {
        height: 340px;
    }

    .flow-item:hover {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    :root {
        --section-pad: 56px 0;
    }

    .feature-card {
        margin-bottom: 16px;
    }

    .inclusion-col {
        margin-bottom: 32px;
    }

    .ideal-card {
        margin-bottom: 16px;
    }

    .cta-section::after {
        font-size: 80px;
    }
}