/* =============================================
   EMBODIED BY EMILY — Final Version
   Mother palette + Elegant layout + Mystical touches
   ============================================= */

:root {
    --terracotta:       #C67B5C;
    --terracotta-dark:  #A8624A;
    --terracotta-light: #D99A80;
    --olive:            #6B7B3A;
    --olive-light:      #8A9B56;
    --linen:            #F5EDE0;
    --linen-warm:       #F0E4D3;
    --clay:             #D4A574;
    --clay-light:       #E0BF98;
    --earth:            #3E2C1C;
    --earth-medium:     #5C4433;
    --sage:             #A8B89C;
    --sage-light:       #C5D1BC;
    --sage-pale:        #E8EDE4;
    --cream:            #FAF7F2;
    --white:            #FFFDF9;

    --font-serif:   'Cormorant Garamond', 'Georgia', serif;
    --font-sans:    'Source Sans 3', 'Segoe UI', sans-serif;

    --section-pad:  clamp(80px, 12vw, 140px);
    --container:    1200px;

    --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
    --ease-gentle:  cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--earth);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-gentle); }
ul { list-style: none; }

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* ---------- Typography ---------- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}
.section-label--center { text-align: center; }
.section-label--light  { color: var(--clay-light); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--earth);
    margin-bottom: 1.5rem;
}
.section-title--center { text-align: center; }
.section-title--light  { color: var(--linen); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: 2px solid transparent;
    text-align: center;
}
.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn--primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(198, 123, 92, 0.35);
}
.btn--outline {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn--outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--outline-light {
    color: var(--linen);
    border-color: rgba(245, 237, 224, 0.4);
}
.btn--outline-light:hover {
    background: rgba(245, 237, 224, 0.15);
    border-color: var(--linen);
    color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-gentle);
}
.nav--scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(62, 44, 28, 0.08);
}
.nav__inner {
    width: 90%; max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--linen);
    letter-spacing: 0.03em;
}
.nav--scrolled .nav__logo { color: var(--earth); }

.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.8);
    position: relative;
    padding: 4px 0;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--linen); }
.nav__links a:hover::after { width: 100%; }
.nav--scrolled .nav__links a { color: var(--earth-medium); }
.nav--scrolled .nav__links a:hover { color: var(--terracotta); }

.nav__cta {
    padding: 10px 24px !important;
    border: 1.5px solid rgba(245, 237, 224, 0.4);
    border-radius: 50px;
    transition: all 0.3s var(--ease-out) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
    background: var(--terracotta) !important;
    border-color: var(--terracotta) !important;
    color: var(--white) !important;
}
.nav--scrolled .nav__cta {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav__toggle span {
    width: 24px; height: 1.5px;
    background: var(--linen);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}
.nav--scrolled .nav__toggle span { background: var(--earth); }
.nav__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.nav__toggle--active span:nth-child(2) { opacity: 0; }
.nav__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--earth) 0%, var(--earth-medium) 30%, #6B5243 55%, var(--terracotta-dark) 85%);
    overflow: hidden;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(168, 184, 156, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(198, 123, 92, 0.08) 0%, transparent 50%);
    z-index: 1;
}

/* Subtle CSS starfield */
.hero__stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 45% 10%, rgba(255,255,255,0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 45%, rgba(255,255,255,0.25) 50%, transparent 100%),
        radial-gradient(1px 1px at 75% 20%, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 55%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 35% 80%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 55% 65%, rgba(255,255,255,0.2) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 75%, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(1px 1px at 5% 45%, rgba(255,255,255,0.25) 50%, transparent 100%),
        radial-gradient(1px 1px at 70% 85%, rgba(255,255,255,0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 40% 50%, rgba(255,255,255,0.15) 50%, transparent 100%),
        radial-gradient(1px 1px at 95% 35%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 90%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: starTwinkle 8s ease-in-out infinite alternate;
}

/* Moon crescent */
.hero__moon {
    position: absolute;
    top: 12%;
    right: 12%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow:
        inset 12px 2px 0 0 rgba(224, 191, 152, 0.35);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 2s var(--ease-out) 1.8s forwards;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}
.hero__preheading {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
    margin-bottom: 2rem;
}
.hero__title-embodied {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 300;
    line-height: 1;
    background: linear-gradient(135deg, var(--clay-light), var(--terracotta-light), var(--clay), var(--terracotta), var(--clay-light));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 1s var(--ease-out) 0.5s forwards, gradientShift 6s ease-in-out infinite;
    opacity: 0;
}
.hero__title-by {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    color: var(--linen);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero__tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(245, 237, 224, 0.75);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.hero__content .btn {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.3s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 2s forwards;
}
.hero__scroll span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.4);
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--clay), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about { padding: var(--section-pad) 0; background: var(--cream); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about__image-wrap { position: relative; }
.about__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(62, 44, 28, 0.12);
    border: 1px solid rgba(168, 184, 156, 0.15);
}
.about__lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--earth-medium);
    margin-bottom: 1.25rem;
}
.about__lead em { color: var(--terracotta); font-style: italic; }
.about__text p { margin-bottom: 1.25rem; color: var(--earth-medium); font-size: 0.95rem; }
.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sage-pale);
}
.about__stat { text-align: center; }
.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.about__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    position: relative;
    padding: clamp(60px, 10vw, 100px) 0;
    overflow: hidden;
    background: var(--earth);
}
.philosophy__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(107, 123, 58, 0.1) 0%, transparent 50%),
        linear-gradient(315deg, rgba(198, 123, 92, 0.08) 0%, transparent 50%);
}
.philosophy__quote {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.philosophy__quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--linen);
}
.philosophy__quote cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay);
}

/* ============================================
   OFFERINGS
   ============================================ */
.offerings { padding: var(--section-pad) 0; background: var(--linen); }
.offerings__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.offering-card {
    position: relative;
    background: var(--cream);
    border-radius: 12px;
    padding: 48px 36px 40px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(168, 184, 156, 0.15);
    box-shadow: 0 4px 24px rgba(62, 44, 28, 0.06);
}
.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(62, 44, 28, 0.12);
}
.offering-card--featured {
    background: linear-gradient(165deg, var(--cream) 0%, var(--sage-pale) 100%);
    border-color: rgba(107, 123, 58, 0.2);
}
.offering-card__icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    color: var(--terracotta);
}
.offering-card__icon svg { width: 60px; height: 60px; }
.offering-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--earth);
    margin-bottom: 16px;
}
.offering-card__desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--earth-medium);
    margin-bottom: 24px;
}
.offering-card__details { margin-bottom: 28px; }
.offering-card__details li {
    font-size: 0.82rem;
    color: var(--olive);
    padding: 6px 0;
    border-bottom: 1px solid var(--sage-pale);
}
.offering-card__details li:last-child { border-bottom: none; }

/* ============================================
   RETREATS
   ============================================ */
.retreats { padding: var(--section-pad) 0; background: var(--cream); }
.retreats__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.retreats__image-wrap { position: relative; }
.retreats__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(62, 44, 28, 0.15);
    border: 1px solid rgba(168, 184, 156, 0.15);
}
.retreats__lead {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--earth-medium);
    margin-bottom: 1.25rem;
}
.retreats__lead em { color: var(--terracotta); font-style: italic; }
.retreats__content > p {
    font-size: 0.95rem;
    color: var(--earth-medium);
    margin-bottom: 2.5rem;
}
.retreats__features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2.5rem; }
.retreats__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--linen);
    border-radius: 12px;
    border-left: 3px solid var(--terracotta);
    transition: transform 0.3s var(--ease-out);
}
.retreats__feature:hover { transform: translateX(4px); }
.retreats__feature-icon {
    font-size: 0.6rem;
    color: var(--terracotta);
    margin-top: 6px;
    flex-shrink: 0;
}
.retreats__feature h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--earth);
    margin-bottom: 4px;
}
.retreats__feature p { font-size: 0.88rem; color: var(--earth-medium); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--linen); }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.testimonial {
    background: var(--cream);
    border-radius: 12px;
    padding: 40px 32px;
    border-top: 3px solid var(--sage);
    box-shadow: 0 4px 24px rgba(62, 44, 28, 0.06);
    transition: all 0.4s var(--ease-out);
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(62, 44, 28, 0.1);
}
.testimonial__stars {
    color: var(--terracotta);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testimonial p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--earth-medium);
    margin-bottom: 20px;
}
.testimonial cite {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
}

/* ============================================
   BOOKING
   ============================================ */
.booking { position: relative; padding: var(--section-pad) 0; overflow: hidden; }
.booking__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(198, 123, 92, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(107, 123, 58, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--earth), #2C1E12);
}
.booking__content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.booking__lead {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(245, 237, 224, 0.7);
    margin-bottom: 3rem;
}
.booking__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 2.5rem;
}
.booking__option {
    background: rgba(245, 237, 224, 0.05);
    border: 1px solid rgba(245, 237, 224, 0.1);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
}
.booking__option:hover {
    background: rgba(245, 237, 224, 0.1);
    border-color: rgba(198, 123, 92, 0.3);
}
.booking__option h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--linen);
    margin-bottom: 8px;
}
.booking__option p { font-size: 0.9rem; color: rgba(245, 237, 224, 0.5); margin-bottom: 24px; }
.booking__or {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(245, 237, 224, 0.5);
    margin-bottom: 1rem;
}
.booking__social { display: flex; justify-content: center; gap: 20px; margin-top: 2.5rem; }
.booking__social-link {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(245, 237, 224, 0.15);
    color: rgba(245, 237, 224, 0.5);
    transition: all 0.3s var(--ease-out);
}
.booking__social-link:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: rgba(198, 123, 92, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #2C1E12; padding: 60px 0 40px; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--linen);
    letter-spacing: 0.03em;
}
.footer__tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
}
.footer__location { font-size: 0.8rem; color: rgba(245, 237, 224, 0.4); }
.footer__divider {
    width: 40px; height: 1px;
    background: var(--terracotta);
    opacity: 0.25;
    margin: 20px 0;
}
.footer__email { font-size: 0.8rem; margin-top: 4px; }
.footer__email a { color: var(--clay); }
.footer__email a:hover { color: var(--terracotta-light); }
.footer__copy { font-size: 0.7rem; color: rgba(245, 237, 224, 0.25); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.3); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes starTwinkle {
    0%   { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__image-wrap { max-width: 400px; margin: 0 auto; }
    .retreats__grid { grid-template-columns: 1fr; gap: 40px; }
    .retreats__image-wrap { max-width: 450px; margin: 0 auto; order: -1; }
    .offerings__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .offerings__grid .offering-card:last-child,
    .testimonials__grid .testimonial:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(62, 44, 28, 0.15);
    }
    .nav__links--open { right: 0; }
    .nav__links a {
        color: var(--earth) !important;
        font-size: 1rem;
    }
    .nav__links a:hover { color: var(--terracotta) !important; }
    .nav__cta {
        border-color: var(--terracotta) !important;
        color: var(--terracotta) !important;
    }
    .hero__title-embodied { font-size: clamp(3rem, 14vw, 5rem); }
    .hero__title-by { font-size: clamp(1.4rem, 6vw, 2.2rem); }
    .hero__moon { width: 40px; height: 40px; top: 15%; right: 8%; }
    .offerings__grid, .testimonials__grid { grid-template-columns: 1fr; }
    .offerings__grid .offering-card:last-child,
    .testimonials__grid .testimonial:last-child {
        grid-column: auto; max-width: none;
    }
    .booking__options {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto; margin-right: auto;
    }
    .about, .offerings, .retreats, .testimonials, .booking { padding: 80px 0; }
    .philosophy { padding: 60px 0; }
}
@media (max-width: 480px) {
    .about__stats { flex-direction: column; align-items: center; gap: 20px; }
    .btn { padding: 12px 28px; font-size: 0.8rem; }
    .offering-card { padding: 36px 24px 32px; }
    .booking__option { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero__title-embodied {
        -webkit-text-fill-color: var(--clay-light);
        background: none;
    }
}
