/* ============================================================
   Yoga Retreat Rishikesh — scoped to .yr-page
   ============================================================ */

.yr-page {
    --yr-ink:        #0d0b1e;
    --yr-muted:      #6b7280;
    --yr-brand:      #4b4e93;
    --yr-brand-dark: #3a3d7a;
    --yr-gold:       #c9a84c;
    --yr-cream:      #faf8f5;
    --yr-white:      #ffffff;
    --yr-line:       #ebe8e2;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--yr-ink);
}

/* ── COMMON SECTION SPACING ── */
.yr-page .spacing {
    padding-top: 90px;
    padding-bottom: 90px;
}

@media (max-width: 991.98px) {
    .yr-page .spacing { padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 575.98px) {
    .yr-page .spacing { padding-top: 48px; padding-bottom: 48px; }
}

/* ============================================================
   HERO
   ============================================================ */
.yr-page .yr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0d0b1e;
    overflow: hidden;
}

.yr-page .yr-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.70;
}

.yr-page .yr-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,11,30,0.52) 0%,
        rgba(13,11,30,0.25) 45%,
        rgba(13,11,30,0.72) 100%
    );
}

/* centered text block */
.yr-page .yr-hero__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    padding: 140px 32px 100px;
}

/* breadcrumb */
.yr-page .yr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.yr-page .yr-breadcrumb a {
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.yr-page .yr-breadcrumb a:hover { color: rgba(255,255,255,0.80); }
.yr-page .yr-breadcrumb__sep { opacity: .35; flex-shrink: 0; }

.yr-page .yr-breadcrumb__current {
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}

/* heading */
.yr-page .yr-hero__title {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

.yr-page .yr-hero__title-accent {
    display: block;
    font-style: italic;
    font-weight: 800;
    color: var(--yr-gold);
    font-size: 0.85em;
    letter-spacing: 0px;
}

.yr-page .yr-hero__sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.50);
    font-weight: 400;
    margin: 14px 0 0;
    line-height: 1.75;
    font-style: italic;
}

/* ============================================================
   BOOKING CARD OUTER — sits below hero, pulls up via negative margin
   ============================================================ */
.yr-page .yr-booking-outer {
    position: relative;
    z-index: 10;
    margin-top: -62px;
    padding: 0 40px;
}

/* ── HORIZONTAL CARD ── */
.yr-page .yr-booking-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.28),
        0 0 0 1px rgba(0,0,0,0.06);
}

/* date column */
.yr-page .yr-booking-card__head {
    background: linear-gradient(135deg, var(--yr-brand) 0%, #6366b5 100%);
    padding: 20px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    min-width: 260px;
}

.yr-page .yr-bc__date-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* month tab pills */
.yr-page .yr-bc__tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.yr-page .yr-bc__tab {
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: .10em;
    border: 1px solid rgba(255,255,255,0.22);
    background: transparent;
    color: rgba(255,255,255,0.48);
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
    line-height: 1.6;
}

.yr-page .yr-bc__tab:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.80);
    border-color: rgba(255,255,255,0.36);
}

.yr-page .yr-bc__tab.is-active {
    background: rgba(255,255,255,0.22);
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

.yr-page .yr-bc__date {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.yr-page .yr-bc__meta {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.50);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* price options container */
.yr-page .yr-booking-card__prices {
    display: flex;
    flex: 1;
}

/* each price option — horizontal compact row */
.yr-page .yr-price-row {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 22px;
    border-left: 1px solid var(--yr-line);
    transition: background .2s;
    gap: 12px;
    min-height: 100%;
}

.yr-page .yr-price-row:hover { background: #f8f7ff; }

.yr-page .yr-price-row__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #ededf8;
    display: grid;
    place-items: center;
    color: var(--yr-brand);
    font-size: 0.80rem;
    flex-shrink: 0;
}

.yr-page .yr-price-row__info { flex: 1; min-width: 0; }

.yr-page .yr-price-row__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--yr-ink);
    line-height: 1.2;
    white-space: nowrap;
}

.yr-page .yr-price-row__sub {
    font-size: 0.63rem;
    color: var(--yr-muted);
    margin-top: 1px;
    white-space: nowrap;
}

.yr-page .yr-price-row__amount { text-align: right; line-height: 1; flex-shrink: 0; }

.yr-page .yr-price-row__usd {
    font-size: 0.57rem;
    font-weight: 700;
    color: var(--yr-muted);
    letter-spacing: .07em;
    display: block;
}

.yr-page .yr-price-row__num {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--yr-brand);
    line-height: 1;
}

/* CTA column */
.yr-page .yr-booking-card__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    background: #fafafa;
    border-left: 1px solid var(--yr-line);
    flex-shrink: 0;
    gap: 8px;
    min-width: 190px;
}

.yr-page .yr-btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 11px;
    background: var(--yr-brand);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 8px 22px rgba(75,78,147,.38);
    white-space: nowrap;
}

.yr-page .yr-btn-register:hover {
    background: var(--yr-brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(75,78,147,.50);
}

.yr-page .yr-booking-card__note {
    font-size: 0.60rem;
    color: var(--yr-muted);
    text-align: center;
    line-height: 1.5;
}

/* ============================================================
   WHO IS THIS FOR
   ============================================================ */
.yr-page .yr-who {
    background: #fff;
}

/* section intro */
.yr-page .yr-who__intro {
    text-align: center;
    padding: 0 0 56px;
}

.yr-page .yr-who__intro-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.15;
    margin: 0 0 16px;
}

.yr-page .yr-who__intro-text {
    font-size: 1rem;
    color: var(--yr-muted);
    line-height: 1.82;
    font-style: italic;
    margin: 0;
}

/* 3-col card grid — inside container */
.yr-page .yr-who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

/* card */
.yr-page .yr-who-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.yr-page .yr-who-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .70s ease;
}

.yr-page .yr-who-card:hover .yr-who-card__bg {
    transform: scale(1.05);
}

/* gradient — heavy on top, fade out toward bottom */
.yr-page .yr-who-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,11,30,0.82) 0%,
        rgba(13,11,30,0.58) 40%,
        rgba(13,11,30,0.12) 68%,
        rgba(13,11,30,0.04) 100%
    );
}

/* content block — top aligned */
.yr-page .yr-who-card__content {
    position: relative;
    z-index: 2;
    padding: 48px 28px 36px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* icon — no circle */
.yr-page .yr-who-card__icon {
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.yr-page .yr-who-card__icon img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* title */
.yr-page .yr-who-card__title {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.30;
    margin: 0 0 18px;
}

/* gold dot separator */
.yr-page .yr-who-card__sep {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 90px;
    margin: 0 auto 18px;
}

.yr-page .yr-who-card__sep-line {
    flex: 1;
    height: 1px;
    background: rgba(201,168,76,0.50);
}

.yr-page .yr-who-card__sep-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--yr-gold);
    flex-shrink: 0;
}

/* tagline */
.yr-page .yr-who-card__text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.78;
    margin: 0;
    font-style: italic;
}

/* ============================================================
   CORE ELEMENTS
   ============================================================ */
.yr-page .yr-core {
    background: var(--yr-cream);
}


/* section header */
.yr-page .yr-core__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 64px;
}

.yr-page .yr-core__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin-bottom: 12px;
}

.yr-page .yr-core__heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.18;
    margin: 0 0 28px;
}

.yr-page .yr-core__intro p {
    font-size: 0.95rem;
    color: var(--yr-muted);
    line-height: 1.85;
    font-style: italic;
    margin: 0 0 14px;
}

.yr-page .yr-core__intro p:last-child { margin-bottom: 0; }

/* 3-col card grid */
.yr-page .yr-core__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* card */
.yr-page .yr-core-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(13,11,30,0.09);
    transition: box-shadow .32s ease;
    display: flex;
    flex-direction: column;
}

.yr-page .yr-core-card:hover {
    box-shadow: 0 18px 48px rgba(75,78,147,0.13);
}

/* image wrap with fade-out bottom */
.yr-page .yr-core-card__img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.yr-page .yr-core-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s ease;
}

.yr-page .yr-core-card:hover .yr-core-card__img {
    transform: scale(1.06);
}

/* gradient fade from image into white */
.yr-page .yr-core-card__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, #fff 100%);
    pointer-events: none;
}

/* card body */
.yr-page .yr-core-card__body {
    padding: 4px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.yr-page .yr-core-card__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--yr-ink);
    line-height: 1.32;
    margin: 0 0 10px;
}

.yr-page .yr-core-card__text {
    font-size: 0.84rem;
    color: var(--yr-muted);
    line-height: 1.80;
    margin: 0;
    font-weight: 400;
    flex: 1;
}

/* ============================================================
   TEACHERS
   ============================================================ */
.yr-page .yr-teachers {
    background: #fff;
}


.yr-page .yr-teachers__header {
    text-align: center;
    margin-bottom: 60px;
}

.yr-page .yr-teachers__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin-bottom: 12px;
}

.yr-page .yr-teachers__heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.18;
    margin: 0;
}

.yr-page .yr-teachers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.yr-page .yr-teacher-card {
    text-align: center;
}

/* portrait photo */
.yr-page .yr-teacher-card__photo-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
}

.yr-page .yr-teacher-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .60s ease;
}

.yr-page .yr-teacher-card:hover .yr-teacher-card__photo {
    transform: scale(1.04);
}

/* subtle gold inset frame */
.yr-page .yr-teacher-card__photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px rgba(201,168,76,0.30);
    pointer-events: none;
    z-index: 2;
}

/* bottom gradient for readability if needed */
.yr-page .yr-teacher-card__photo-wrap::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(13,11,30,0.18));
    z-index: 1;
    pointer-events: none;
}

.yr-page .yr-teacher-card__name {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--yr-ink);
    margin: 0 0 12px;
    line-height: 1.25;
}

.yr-page .yr-teacher-card__divider {
    width: 36px;
    height: 2px;
    background: linear-gradient(to right, var(--yr-brand), var(--yr-gold));
    border-radius: 2px;
    margin: 0 auto 12px;
}

.yr-page .yr-teacher-card__role {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin: 0 0 5px;
}

.yr-page .yr-teacher-card__org {
    font-size: 0.80rem;
    color: var(--yr-muted);
    font-style: italic;
    margin: 0;
}

/* ============================================================
   DAILY SCHEDULE
   ============================================================ */
.yr-page .yr-schedule {
    background: var(--yr-cream);
}


.yr-page .yr-schedule__header {
    text-align: center;
    margin-bottom: 48px;
}

.yr-page .yr-schedule__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin-bottom: 12px;
}

.yr-page .yr-schedule__heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.18;
    margin: 0 0 14px;
}

.yr-page .yr-schedule__sub {
    font-size: 0.92rem;
    color: var(--yr-muted);
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

/* main card */
.yr-page .yr-schedule__card {
    background: #fff;
    border-radius: 28px;
    padding: 52px 60px 44px;
    box-shadow: 0 4px 48px rgba(13,11,30,0.07);
    position: relative;
    overflow: hidden;
}

/* lotus mandala watermark */
.yr-page .yr-schedule__lotus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    object-fit: contain;
    opacity: 0.055;
    pointer-events: none;
    user-select: none;
}

/* all content above the lotus */
.yr-page .yr-schedule__list,
.yr-page .yr-schedule__footer {
    position: relative;
    z-index: 1;
}

/* list */
.yr-page .yr-schedule__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* section group label (Morning / Afternoon / Evening) */
.yr-page .yr-schedule__group {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 0 10px;
}

.yr-page .yr-schedule__group:first-child {
    padding-top: 0;
}

.yr-page .yr-schedule__group-label {
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yr-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.yr-page .yr-schedule__group-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201,168,76,0.35), transparent);
}

/* each row */
.yr-page .yr-schedule__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(235,232,226,0.7);
}

.yr-page .yr-schedule__item:last-child {
    border-bottom: none;
}

/* time badge */
.yr-page .yr-schedule__time {
    flex-shrink: 0;
    min-width: 162px;
    font-size: 0.73rem;
    font-weight: 800;
    color: var(--yr-brand);
    background: rgba(75,78,147,0.07);
    padding: 5px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.01em;
    align-self: flex-start;
    margin-top: 1px;
}

/* activity */
.yr-page .yr-schedule__activity {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--yr-ink);
    line-height: 1.45;
    padding-top: 5px;
}

.yr-page .yr-schedule__activity-note {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--yr-muted);
    font-style: italic;
    margin-top: 3px;
}

/* footer — deco + note */
.yr-page .yr-schedule__footer {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--yr-line);
}

.yr-page .yr-schedule__deco {
    font-size: 1rem;
    color: var(--yr-gold);
    letter-spacing: 0.4em;
    margin-bottom: 14px;
}

.yr-page .yr-schedule__note {
    font-size: 0.79rem;
    color: var(--yr-muted);
    font-style: italic;
    line-height: 1.80;
    margin: 0 auto;
    max-width: 540px;
}

/* ── SCHEDULE 2-COL LAYOUT ── */
.yr-page .yr-schedule__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* 6-image staggered gallery */
.yr-page .yr-sched-gallery {
    display: flex;
    gap: 8px;
    height: 780px;
    border-radius: 22px;
    overflow: hidden;
    position: sticky;
    top: 24px;
}

.yr-page .yr-sched-gallery__col {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    overflow: hidden;
}

.yr-page .yr-sched-gallery__img {
    width: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform .70s ease;
}

.yr-page .yr-sched-gallery__img:hover { transform: scale(1.06); }

/* Col 1 stagger: tall / short / medium */
.yr-page .yr-sched-gallery__col:nth-child(1) .yr-sched-gallery__img:nth-child(1) { flex: 3.5; }
.yr-page .yr-sched-gallery__col:nth-child(1) .yr-sched-gallery__img:nth-child(2) { flex: 1.8; }
.yr-page .yr-sched-gallery__col:nth-child(1) .yr-sched-gallery__img:nth-child(3) { flex: 2.2; }

/* Col 2 stagger: short / tall / short */
.yr-page .yr-sched-gallery__col:nth-child(2) .yr-sched-gallery__img:nth-child(1) { flex: 2; }
.yr-page .yr-sched-gallery__col:nth-child(2) .yr-sched-gallery__img:nth-child(2) { flex: 3.5; }
.yr-page .yr-sched-gallery__col:nth-child(2) .yr-sched-gallery__img:nth-child(3) { flex: 2; }

/* ============================================================
   WHAT YOU CARRY HOME
   ============================================================ */
.yr-page .yr-carry {
    position: relative;
    background: #0c0a1d;
    padding: 72px 20px;
    overflow: hidden;
    text-align: center;
}

/* faint image texture behind everything */
.yr-page .yr-carry__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.32;
    pointer-events: none;
    user-select: none;
}

/* lotus mandala — bottom-right corner */
.yr-page .yr-carry__lotus {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 460px;
    height: 460px;
    object-fit: contain;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
}

/* left corner mirror */
.yr-page .yr-carry__lotus-l {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 380px;
    height: 380px;
    object-fit: contain;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    transform: rotate(45deg);
}

.yr-page .yr-carry__inner {
    position: relative;
    z-index: 1;
}

.yr-page .yr-carry__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--yr-gold);
    margin-bottom: 20px;
}

.yr-page .yr-carry__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 10px;
}

.yr-page .yr-carry__heading span {
    color: var(--yr-gold);
}

.yr-page .yr-carry__rule {
    width: 52px;
    height: 1px;
    background: rgba(201,168,76,0.45);
    margin: 22px auto 36px;
}

/* prose paragraphs */
.yr-page .yr-carry__para {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.95;
    margin: 0;
    font-style: italic;
    font-weight: 300;
    padding: 18px 0;
}

.yr-page .yr-carry__para:first-of-type {
    padding-top: 0;
}

/* gold star separator between paragraphs */
.yr-page .yr-carry__sep {
    color: rgba(201,168,76,0.50);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
}

/* ============================================================
   FOOD & STAY
   ============================================================ */
.yr-page .yr-stay {
    background: #fff;
}


.yr-page .yr-stay__header {
    text-align: center;
    margin-bottom: 72px;
}

.yr-page .yr-stay__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin-bottom: 12px;
}

.yr-page .yr-stay__heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.18;
    margin: 0;
}

/* alternating two-column blocks */
.yr-page .yr-stay__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.yr-page .yr-stay__block:last-child {
    margin-bottom: 0;
}

/* reverse: text left, images right */
.yr-page .yr-stay__block--reverse .yr-stay__mosaic {
    order: 2;
}

.yr-page .yr-stay__block--reverse .yr-stay__content {
    order: 1;
}

/* staggered 2-col mosaic */
.yr-page .yr-stay__mosaic {
    display: flex;
    gap: 6px;
    height: 460px;
    border-radius: 22px;
    overflow: hidden;
}

.yr-page .yr-stay__mosaic-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
    overflow: hidden;
}

/* col 1: tall top (60%), short bottom (40%) */
.yr-page .yr-stay__mosaic-col:nth-child(1) .yr-stay__mosaic-img:nth-child(1) { flex: 3; }
.yr-page .yr-stay__mosaic-col:nth-child(1) .yr-stay__mosaic-img:nth-child(2) { flex: 2; }

/* col 2: short top (40%), tall bottom (60%) */
.yr-page .yr-stay__mosaic-col:nth-child(2) .yr-stay__mosaic-img:nth-child(1) { flex: 2; }
.yr-page .yr-stay__mosaic-col:nth-child(2) .yr-stay__mosaic-img:nth-child(2) { flex: 3; }

.yr-page .yr-stay__mosaic-img {
    width: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform .65s ease;
}

.yr-page .yr-stay__mosaic-img:hover {
    transform: scale(1.06);
}

/* text content */
.yr-page .yr-stay__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yr-gold);
    margin-bottom: 20px;
}

.yr-page .yr-stay__label::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(201,168,76,0.50);
}

.yr-page .yr-stay__content-title {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.22;
    margin: 0 0 28px;
}

.yr-page .yr-stay__points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yr-page .yr-stay__point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--yr-line);
    font-size: 0.87rem;
    color: var(--yr-muted);
    line-height: 1.78;
}

.yr-page .yr-stay__point:last-child {
    border-bottom: none;
}

.yr-page .yr-stay__point::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yr-gold);
    flex-shrink: 0;
    margin-top: 9px;
}

/* ============================================================
   FAQ
   ============================================================ */
.yr-page .yr-faq {
    background: #fff;
}


.yr-page .yr-faq__header {
    text-align: center;
    margin-bottom: 52px;
}

.yr-page .yr-faq__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin-bottom: 12px;
}

.yr-page .yr-faq__heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.18;
    margin: 0;
}

/* accordion list */
.yr-page .yr-faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--yr-line);
}

/* each item */
.yr-page .yr-faq__item {
    border-bottom: 1px solid var(--yr-line);
}

/* question button */
.yr-page .yr-faq__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.yr-page .yr-faq__question {
    font-size: 1rem;
    font-weight: 700;
    color: var(--yr-ink);
    line-height: 1.40;
    flex: 1;
    transition: color .25s ease;
}

.yr-page .yr-faq__item.is-open .yr-faq__question {
    color: var(--yr-brand);
}

/* chevron icon */
.yr-page .yr-faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--yr-line);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .35s ease;
}

.yr-page .yr-faq__item.is-open .yr-faq__icon {
    background: var(--yr-brand);
    transform: rotate(180deg);
}

.yr-page .yr-faq__icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--yr-ink);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .25s ease;
}

.yr-page .yr-faq__item.is-open .yr-faq__icon svg {
    stroke: #fff;
}

/* smooth grid reveal — no max-height jank */
.yr-page .yr-faq__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s ease;
}

.yr-page .yr-faq__item.is-open .yr-faq__body {
    grid-template-rows: 1fr;
}

.yr-page .yr-faq__body-inner {
    overflow: hidden;
}

.yr-page .yr-faq__answer {
    font-size: 0.90rem;
    color: var(--yr-muted);
    line-height: 1.85;
    padding: 0 40px 24px 0;
}

.yr-page .yr-faq__answer p {
    margin: 0 0 12px;
}

.yr-page .yr-faq__answer p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   CLOSING / SUPPORT SECTION
   ============================================================ */
.yr-page .yr-closing {
    background: var(--yr-cream);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.yr-page .yr-closing__lotus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    object-fit: contain;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
}

.yr-page .yr-closing__inner {
    position: relative;
    z-index: 1;
}

.yr-page .yr-closing__tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yr-brand);
    margin-bottom: 14px;
}

.yr-page .yr-closing__heading {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 900;
    color: var(--yr-ink);
    line-height: 1.22;
    margin: 0 0 10px;
}

.yr-page .yr-closing__rule {
    width: 44px;
    height: 1px;
    background: rgba(201,168,76,0.50);
    margin: 20px auto 32px;
}

.yr-page .yr-closing__body {
    font-size: 0.92rem;
    color: var(--yr-muted);
    line-height: 1.88;
    margin: 0 0 16px;
}

.yr-page .yr-closing__body:last-of-type {
    margin-bottom: 0;
}

/* divider before closing lines */
.yr-page .yr-closing__sep {
    width: 100%;
    height: 1px;
    background: var(--yr-line);
    margin: 36px 0;
}

/* "We look forward…" line */
.yr-page .yr-closing__warmth {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--yr-ink);
    line-height: 1.70;
    margin: 0 0 28px;
    font-weight: 400;
}

/* Namaste */
.yr-page .yr-closing__namaste {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--yr-brand);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ============================================================
   MODAL
   ============================================================ */
.yr-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13,11,30,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.yr-modal-overlay.is-open { display: flex; }

.yr-modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(13,11,30,.45);
    animation: yr-slide-up .3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes yr-slide-up {
    from { opacity:0; transform: translateY(28px) scale(.97); }
    to   { opacity:1; transform: translateY(0)    scale(1); }
}

.yr-modal__header {
    background: linear-gradient(135deg, var(--yr-brand) 0%, #6366b5 100%);
    padding: 24px 26px 20px;
    border-radius: 22px 22px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.yr-modal__header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 3px;
}

.yr-modal__header p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.62);
    margin: 0;
}

.yr-modal__close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .2s;
}

.yr-modal__close:hover { background: rgba(255,255,255,0.30); }
.yr-modal__body { padding: 22px 26px 26px; }

.yr-modal .eq-form__field { margin-bottom: 11px; }

.yr-modal .eq-form__label {
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--yr-muted);
    margin-bottom: 4px;
}

.yr-modal .eq-form__input,
.yr-modal .eq-form__select,
.yr-modal .eq-form__textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--yr-line);
    border-radius: 10px;
    font-size: 0.86rem;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--yr-ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: auto;
}

.yr-modal .eq-form__input:focus,
.yr-modal .eq-form__select:focus,
.yr-modal .eq-form__textarea:focus {
    border-color: var(--yr-brand);
    box-shadow: 0 0 0 3px rgba(75,78,147,.11);
}

.yr-modal .eq-form__input[readonly] {
    background: var(--yr-cream);
    color: var(--yr-muted);
    cursor: default;
}

.yr-modal .eq-form__textarea { resize: none; min-height: 56px; }

.yr-modal .retreatSubmit {
    width: 100%;
    padding: 13px;
    border-radius: 11px;
    background: var(--yr-brand);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    transition: background .25s, transform .2s;
    box-shadow: 0 6px 18px rgba(75,78,147,.32);
}

.yr-modal .retreatSubmit:hover {
    background: var(--yr-brand-dark);
    transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE — tablet (≤991px)
   ============================================================ */
@media (max-width: 991.98px) {
    /* Booking card: no overlap, stacks vertically */
    .yr-page .yr-booking-outer { margin-top: 0; padding: 0 20px; }
    .yr-page .yr-booking-card { flex-direction: column; border-radius: 16px; }
    .yr-page .yr-booking-card__head {
        min-width: unset;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 18px 22px;
    }
    .yr-page .yr-bc__meta { margin-top: 0; }
    .yr-page .yr-booking-card__prices { flex-direction: row; }
    .yr-page .yr-price-row {
        border-left: none;
        border-top: 1px solid var(--yr-line);
        padding: 14px 18px;
    }
    .yr-page .yr-booking-card__cta {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid var(--yr-line);
        min-width: unset;
        padding: 14px 18px;
    }
    .yr-page .yr-booking-card__note { text-align: left; }

    /* Teachers: 2 cols on tablet */
    .yr-page .yr-teachers__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Schedule: gallery above, schedule below */
    .yr-page .yr-schedule__cols { grid-template-columns: 1fr; gap: 28px; }
    .yr-page .yr-sched-gallery { height: 420px; position: static; }
    .yr-page .yr-schedule__card { padding: 36px 36px 30px; }

    /* Stay: stack blocks */
    .yr-page .yr-stay__block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 52px; }
    .yr-page .yr-stay__block--reverse .yr-stay__mosaic { order: unset; }
    .yr-page .yr-stay__block--reverse .yr-stay__content { order: unset; }
    .yr-page .yr-stay__mosaic { height: 340px; }
}

/* ============================================================
   RESPONSIVE — large mobile (≤767px)
   ============================================================ */
@media (max-width: 767.98px) {
    /* Who */
    .yr-page .yr-who__grid { grid-template-columns: 1fr; gap: 3px; }
    .yr-page .yr-who__intro { padding: 0 0 36px; }
    .yr-page .yr-who-card { aspect-ratio: 4 / 3; }

    /* Core */
    .yr-page .yr-core__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* Teachers: 1 col */
    .yr-page .yr-teachers__grid { grid-template-columns: 1fr; }

    /* Schedule */
    .yr-page .yr-schedule__card { padding: 28px 22px 24px; }
    .yr-page .yr-sched-gallery { height: 380px; }
    .yr-page .yr-schedule__time { min-width: 130px; font-size: 0.68rem; }

    /* Stay */
    .yr-page .yr-stay__mosaic { height: 280px; }
    .yr-page .yr-stay__block { margin-bottom: 40px; }

    /* FAQ */
    .yr-page .yr-faq__answer { padding-right: 0; }
    .yr-page .yr-faq__btn { padding: 18px 0; }
}

/* ============================================================
   RESPONSIVE — small mobile (≤575px)
   ============================================================ */
@media (max-width: 575.98px) {
    /* Hero */
    .yr-page .yr-hero__inner { padding: 100px 16px 160px; }
    .yr-page .yr-hero__title { font-size: 1.75rem; }
    .yr-page .yr-breadcrumb__current {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 1;
    }

    /* Booking card: overlaps 30% of hero banner */
    .yr-page .yr-booking-outer { margin-top: -30%; padding: 0 12px; }
    .yr-page .yr-booking-card__head { flex-direction: column; align-items: flex-start; gap: 0; }
    .yr-page .yr-booking-card__prices { flex-direction: column; }
    .yr-page .yr-price-row { border-top: 1px solid var(--yr-line); }
    .yr-page .yr-price-row:first-child { border-top: none; }

    /* Core */
    .yr-page .yr-core__grid { grid-template-columns: 1fr; }
    .yr-page .yr-core__header { margin-bottom: 36px; }
    .yr-page .yr-core-card__img-wrap { height: 220px; }

    /* Schedule */
    .yr-page .yr-schedule__card { padding: 24px 18px 20px; }
    .yr-page .yr-schedule__time { min-width: 108px; font-size: 0.64rem; padding: 4px 8px; }
    .yr-page .yr-sched-gallery { height: 340px; }

    /* Stay */
    .yr-page .yr-stay__mosaic { height: 240px; }
    .yr-page .yr-stay__block { margin-bottom: 36px; gap: 20px; }

    /* Carry */
    .yr-page .yr-carry { padding: 60px 0; }

    /* Modal */
    .yr-modal__body { padding: 18px 18px 22px; }
    .yr-modal__header { padding: 20px 18px 16px; }
}
