/* ==========================================================
   Heather Black — Retro-Organic Modern Mystic
   Multi-Page · Playful · Inviting · Heart-Centered
   ========================================================== */

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

/* -------- TOKENS -------- */
:root {
    --periwinkle:       #CCCCFF;
    --periwinkle-deep:  #9b99d6;
    --periwinkle-light: #e8e8ff;
    --sage:             #B2AC88;
    --sage-deep:        #8d885f;
    --sage-light:       #d6d3be;
    --peach:            #FFDAB9;
    --peach-deep:       #e8a96d;
    --peach-light:      #fff0e0;
    --cream:            #FFFDD0;
    --cream-alt:        #faf6e0;
    --dark:             #3a3330;
    --dark-soft:        #5e5650;
    --white:            #fffef8;

    --ff-heading: 'DM Serif Display', Georgia, serif;
    --ff-body:    'Quicksand', 'Segoe UI', sans-serif;

    --shadow-sm:  0 2px 8px rgba(60,50,48,.06);
    --shadow-md:  0 8px 28px rgba(60,50,48,.1);
    --shadow-lg:  0 14px 44px rgba(60,50,48,.14);
    --radius:     14px;
    --radius-lg:  22px;
    --radius-pill: 50px;
    --transition: .35s cubic-bezier(.4,0,.2,1);

    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.06'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; font-size: 20px; }

body {
    font-family: var(--ff-body);
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

img { max-width:100%; height:auto; display:block }
a { text-decoration:none; color:inherit }
.container { max-width:1140px; margin:0 auto; padding:0 1.5rem }
.text-center { text-align:center }

/* -------- SCROLL REVEAL -------- */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}
.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-item:nth-child(2) { transition-delay: .08s }
.reveal-item:nth-child(3) { transition-delay: .16s }
.reveal-item:nth-child(4) { transition-delay: .24s }

/* -------- SECTION HELPERS -------- */
section { padding: 5.5rem 0 }

.section-eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--peach-deep);
    margin-bottom: .6rem;
}

.section-heading {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    text-align: center;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    color: var(--dark-soft);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* -------- BUTTONS -------- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    pointer-events: none;
    border-radius: inherit;
    mix-blend-mode: overlay;
}

.btn-peach { background: var(--peach); color: var(--dark) }
.btn-peach:hover { background: var(--peach-deep); color:#fff; transform:translateY(-2px); box-shadow:var(--shadow-md) }

.btn-sage { background: var(--sage); color:#fff }
.btn-sage:hover { background: var(--sage-deep); transform:translateY(-2px); box-shadow:var(--shadow-md) }

.btn-periwinkle { background: var(--periwinkle); color: var(--dark) }
.btn-periwinkle:hover { background: var(--periwinkle-deep); color:#fff; transform:translateY(-2px); box-shadow:var(--shadow-md) }

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: .75rem 2rem;
}
.btn-outline:hover { background: var(--dark); color:var(--cream); transform:translateY(-2px); box-shadow:var(--shadow-md) }

.btn-hero {
    background: rgba(255,255,255,.2);
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    backdrop-filter: blur(6px);
}
.btn-hero:hover { background: rgba(255,255,255,.35); border-color:#fff; transform:translateY(-2px) }

.btn-sm { padding: .55rem 1.4rem; font-size: .82rem }
.btn-lg { padding: 1rem 2.8rem; font-size: 1rem }
.btn-full { width:100%; text-align:center }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 1rem; left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 0;
    transition: var(--transition);
    width: 80rem;
    max-width: calc(100vw - 2rem);
}
.navbar.scrolled {
    top: .75rem;
}

.nav-inner {
    background: rgba(58,51,48,.95);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--radius-pill);
    padding: .85rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,.15), 0 0 0 1px rgba(255,255,255,.1);
    min-height: 60px;
    gap: 2rem;
}

.nav-logo {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
    position: relative;
    padding: .5rem .75rem;
    border-radius: var(--radius);
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: .75rem; right: .75rem; bottom: .25rem;
    height: 2px;
    background: var(--peach);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}
.nav-links a:hover::after { transform: scaleX(1) }
.nav-links a.active {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.nav-links a.active::after { transform: scaleX(1) }
.nav-links a:focus {
    outline: 2px solid var(--peach);
    outline-offset: 2px;
}

.nav-cta {
    background: var(--peach) !important;
    color: var(--dark) !important;
    padding: .6rem 1.4rem !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    border: 2px solid var(--peach) !important;
}
.nav-cta::after { display: none !important }
.nav-cta:hover { 
    background: var(--peach-deep) !important; 
    color: #fff !important;
    border-color: var(--peach-deep) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(232,169,109,.3) !important;
}

/* Mobile toggle */
.nav-toggle { 
    display:none; 
    background:none; 
    border:none; 
    cursor:pointer; 
    padding:.75rem;
    border-radius: var(--radius);
    min-height: 44px;
    min-width: 44px;
    position: relative;
}
.nav-toggle:focus {
    outline: 2px solid var(--peach);
    outline-offset: 2px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 3px;
    background: #fff;
    margin: 5px auto;
    border-radius: 3px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5.5px) }
.nav-toggle.open span:nth-child(2) { opacity: 0 }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5.5px) }

/* ============================================================
   HERO (Home page full-height) — Serene Landscape Scene
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(
        170deg,
        #2d2b55 0%,
        #4a3f6b 20%,
        #6b5b8a 40%,
        #9b8bb8 55%,
        #c4a882 72%,
        #d4b896 85%,
        #c9a96e 100%
    );
    padding: 8rem 1.5rem 3rem;
}

/* ---- Scene container ---- */
.hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ---- Floating particles ---- */
.particles { position: absolute; inset: 0 }
.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: rgba(255,253,220,0.7);
    box-shadow: 0 0 6px 2px rgba(255,253,220,0.3);
    animation: particleFloat var(--dur) ease-in-out var(--delay) infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0 }
    15% { opacity: 0.8 }
    50% { transform: translateY(-60px) translateX(15px); opacity: 0.5 }
    85% { opacity: 0.7 }
}

/* ---- Landscape silhouettes ---- */
.hero-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
}
.mtn-far  { animation: layerDrift 30s ease-in-out infinite }
.mtn-mid  { animation: layerDrift 24s ease-in-out infinite reverse }
.mtn-near { animation: layerDrift 18s ease-in-out infinite }
.mist-drift { animation: mistMove 20s ease-in-out infinite; opacity: 0.5 }

@keyframes layerDrift {
    0%, 100% { transform: translateX(0) }
    50% { transform: translateX(12px) }
}
@keyframes mistMove {
    0%, 100% { opacity: 0.3; transform: translateX(0) }
    50% { opacity: 0.6; transform: translateX(-20px) }
}

/* ---- Lotus mandala ---- */
.hero-lotus-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 50vw, 500px);
    height: clamp(300px, 50vw, 500px);
    z-index: 0;
}
.hero-lotus {
    width: 100%;
    height: 100%;
    animation: lotusRotate 120s linear infinite;
}
@keyframes lotusRotate {
    from { transform: rotate(0deg) }
    to   { transform: rotate(360deg) }
}
.lotus-aura {
    animation: auraPulse 6s ease-in-out infinite;
}
@keyframes auraPulse {
    0%, 100% { r: 92; opacity: 0.8 }
    50% { r: 98; opacity: 1 }
}

/* Petals breathe */
.petal {
    fill: rgba(255,255,255,0.04);
    animation: petalBreathe 5s ease-in-out infinite;
}
.p2 { animation-delay: -0.6s }
.p3 { animation-delay: -1.2s }
.p4 { animation-delay: -1.8s }
.p5 { animation-delay: -2.4s }
.p6 { animation-delay: -3.0s }
.p7 { animation-delay: -3.6s }
.p8 { animation-delay: -4.2s }
@keyframes petalBreathe {
    0%, 100% { opacity: 0.7; stroke-width: 1 }
    50% { opacity: 1; stroke-width: 1.4 }
}

/* Rings pulse */
.lotus-ring {
    animation: ringPulse 8s ease-in-out infinite;
}
.ring-outer { animation-delay: -4s }
@keyframes ringPulse {
    0%, 100% { opacity: 0.6; stroke-dashoffset: 0 }
    50% { opacity: 1; stroke-dashoffset: 10 }
}
.lotus-center {
    animation: centerGlow 4s ease-in-out infinite;
}
@keyframes centerGlow {
    0%, 100% { opacity: 0.3; r: 3 }
    50% { opacity: 0.6; r: 4.5 }
}

/* ---- No sparkle emojis ---- */
.hero::before,
.hero::after {
    display: none;
}

/* Old grain/blob styles removed — scene uses SVG + CSS animations */

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-tag {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: .4rem;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: .6rem;
    text-shadow: 0 4px 30px rgba(80,50,100,.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--ff-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    font-style: italic;
    opacity: .95;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 15px rgba(0,0,0,.1);
}

.hero-roles {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.role-chip {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3);
    padding: .4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .3px;
}

/* ---- Portals ---- */
.portals {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.portal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    transition: var(--transition);
}
.portal:hover { transform: translateY(-6px) }

.portal-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    position: relative;
    overflow: hidden;
}
.portal-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    border-radius: 50%;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.portal-circle.sage { background: var(--sage) }
.portal-circle.periwinkle { background: var(--periwinkle) }
.portal-circle.peach { background: var(--peach) }
.portal:hover .portal-circle { box-shadow: 0 0 0 6px rgba(255,255,255,.3), var(--shadow-md); transform: scale(1.05) }

.portal-emoji { font-size: 2.2rem; position: relative; z-index: 1 }
.portal-label { font-weight: 700; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; opacity: .85 }

/* ============================================================
   PAGE HERO (Inner pages — shorter banner)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
    min-height: 220px;
}
.page-hero--periwinkle { background: linear-gradient(155deg, #7b72b8 0%, #a499d6 40%, var(--periwinkle) 100%) }
.page-hero--sage       { background: linear-gradient(155deg, #7b72b8 0%, var(--sage) 50%, var(--sage-deep) 100%) }
.page-hero--peach      { background: linear-gradient(155deg, var(--peach-deep) 0%, var(--peach) 50%, #a499d6 100%) }
.page-hero--mixed      { background: linear-gradient(155deg, #7b72b8 0%, #a499d6 25%, #c9a96e 55%, #e8a96d 80%, #FFDAB9 100%) }

.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto }

.page-hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: .6rem;
    text-shadow: 0 4px 30px rgba(80,50,100,.2);
}

.page-hero-sub {
    font-size: 1.05rem;
    opacity: .88;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   WAVY DIVIDERS
   ============================================================ */
.wave { margin-top: -2px; line-height: 0 }
.wave svg { width: 100%; height: 80px; display: block }

.wave-hero { background: linear-gradient(155deg, #7b72b8 0%, #a499d6 25%, #c9a96e 55%, #e8a96d 80%, #FFDAB9 100%) }
.wave-offerings { background: var(--cream) }
.wave-academy { background: var(--cream-alt) }
.wave-about { background: var(--cream) }

/* ============================================================
   MISSION QUOTE
   ============================================================ */
.mission { background: var(--cream); padding: 3.5rem 0 }
.mission-quote {
    font-family: var(--ff-heading);
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    text-align: center;
    color: var(--dark);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}
.quote-mark { color: var(--peach-deep); font-size: 1.5em; vertical-align: -.15em; margin: 0 .15em }

/* ============================================================
   PREVIEW CARDS (Home page — brief links)
   ============================================================ */
.offerings { background: var(--cream) }

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.preview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(0,0,0,.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--periwinkle);
}

.preview-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.preview-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: .8rem;
    line-height: 1.3;
}
.preview-card p {
    color: var(--dark-soft);
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.preview-link {
    font-weight: 700;
    font-size: .92rem;
    color: var(--peach-deep);
    letter-spacing: .5px;
    transition: var(--transition);
}
.preview-card:hover .preview-link { letter-spacing: 1.5px; color: var(--dark) }

/* ============================================================
   ABOUT PREVIEW (Home page — brief)
   ============================================================ */
.about-preview { background: var(--cream-alt); padding: 5rem 0 }

.about-preview-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.photo-placeholder-sm {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, var(--periwinkle) 0%, var(--sage) 50%, var(--peach) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    position: relative;
    overflow: hidden;
}
.photo-placeholder-sm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.photo-placeholder-sm span { font-size: 3rem; margin-bottom: .2rem }
.photo-placeholder-sm p { font-family: var(--ff-heading); font-size: 1rem; letter-spacing: 2px }

/* Image stability */
.about-preview-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: var(--cream-alt);
}

.about-preview-text p {
    color: var(--dark-soft);
    font-size: .95rem;
    margin-bottom: .8rem;
}

/* ============================================================
   CONTACT CTA (Home page — brief)
   ============================================================ */
.contact-cta {
    background: var(--periwinkle-light);
    padding: 5rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-locations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    font-size: .95rem;
    color: var(--dark-soft);
}
.cta-divider { opacity: .4 }

/* ============================================================
   OFFERINGS DETAIL PAGE
   ============================================================ */
.offerings-detail { background: var(--cream); padding: 4.5rem 0 }
.offerings-detail.alt-bg { background: var(--cream-alt) }

.detail-block {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1.5px solid rgba(0,0,0,.04);
}

.detail-header {
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.detail-header.periwinkle-bg { background: var(--periwinkle-light) }
.detail-header.sage-bg { background: var(--sage-light) }

.detail-emoji { font-size: 2.4rem }
.detail-header h2 {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    color: var(--dark);
}
.detail-header h2 em { font-size: .85em; display: block; font-style: italic; opacity: .75 }
.detail-tagline { font-style: italic; opacity: .75; font-size: .95rem; margin-top: .15rem }

.detail-body {
    padding: 2rem 2.5rem 2.5rem;
}
.detail-body p { margin-bottom: .85rem; color: var(--dark-soft); font-size: 1rem }

.pricing-title {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin: 1.5rem 0 .5rem;
}

/* Inline CTA */
.inline-cta { background: var(--cream); padding: 2.5rem 0 3.5rem }

/* ============================================================
   OFFERINGS SHARED (pills, safety, location, benefit-list)
   ============================================================ */
.safety-note {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    background: var(--peach-light);
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    border-left: 3px solid var(--peach-deep);
}
.safety-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem }
.safety-note p { margin: 0 !important; font-size: .95rem !important }

.card-note { font-style: italic; font-size: .95rem !important; opacity: .8 }

.location-badge {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    background: var(--sage-light);
    padding: .9rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1.2rem;
    font-size: .98rem;
    border-left: 3px solid var(--sage);
}
.location-badge span { font-size: 1.1rem }

.benefit-list { list-style: none; margin-bottom: 1.5rem }
.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .65rem;
    color: var(--dark-soft);
    font-size: 1rem;
}
.benefit-list li::before {
    content: '✦';
    position: absolute;
    left: 0; top: .15rem;
    color: var(--sage);
    font-size: .7rem;
}

.pricing-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 1.2rem }
.pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background: var(--cream);
    padding: .65rem 1rem;
    border-radius: var(--radius);
    border: 1px dashed rgba(0,0,0,.08);
}
.pill-label { font-size: .95rem; color: var(--dark-soft) }
.pill-label small { font-size: .85rem; opacity: .7 }
.pill-price { font-family: var(--ff-heading); font-size: 1.15rem; color: var(--dark); white-space: nowrap }
.pill-price small { font-size: .75rem; opacity: .7 }

/* ============================================================
   REIKI ACADEMY (training page)
   ============================================================ */
.academy { background: var(--cream-alt) }

.journey-map {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    padding-left: 3.5rem;
}
.journey-map::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--periwinkle), var(--sage), var(--peach));
    border-radius: 3px;
}

.journey-step {
    display: flex;
    gap: 0;
    margin-bottom: 1.8rem;
    position: relative;
}

.step-marker {
    position: absolute;
    left: -3.5rem;
    top: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-num {
    width: 2.4rem;
    height: 2.4rem;
    background: var(--white);
    border: 2.5px solid var(--periwinkle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: .95rem;
    color: var(--periwinkle-deep);
    z-index: 1;
    transition: var(--transition);
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: 1.5rem 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(0,0,0,.04);
    transition: var(--transition);
}

/* Glow on hover */
.journey-step:hover .step-card {
    box-shadow: 0 0 0 3px var(--periwinkle-light), var(--shadow-md);
    border-color: var(--periwinkle);
}
.journey-step:hover .step-num {
    background: var(--periwinkle);
    color: #fff;
    border-color: var(--periwinkle-deep);
    box-shadow: 0 0 14px var(--periwinkle);
}

.step-card-master {
    border: 2px solid var(--peach) !important;
    background: linear-gradient(135deg, var(--white) 60%, var(--peach-light) 100%) !important;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .4rem;
    flex-wrap: wrap;
    gap: .5rem;
}
.step-header h3 { font-family: var(--ff-heading); font-size: 1.25rem; color: var(--dark) }
.step-price { font-family: var(--ff-heading); font-size: 1.2rem; color: var(--peach-deep); white-space: nowrap }
.step-card p { color: var(--dark-soft); font-size: .93rem }

/* Add-on card */
.addon-card { max-width: 640px; margin: 2rem auto 0 }
.addon-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius);
    border: 1.5px dashed var(--sage);
    transition: var(--transition);
}
.addon-inner:hover { box-shadow: 0 0 0 3px var(--sage-light), var(--shadow-sm) }
.addon-emoji { font-size: 1.6rem; flex-shrink: 0 }
.addon-inner h4 { font-family: var(--ff-heading); font-size: 1.05rem; color: var(--dark) }
.addon-inner p { font-size: .95rem; color: var(--dark-soft); margin-top: .15rem }
.addon-price { font-family: var(--ff-heading); font-size: 1.3rem; color: var(--peach-deep); margin-left: auto; white-space: nowrap; flex-shrink: 0 }

/* ============================================================
   ABOUT (full page)
   ============================================================ */
.about { background: var(--cream) }

.about-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

.about-photo { position: sticky; top: 6rem }
.photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, var(--periwinkle) 0%, var(--sage) 50%, var(--peach) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    position: relative;
    overflow: hidden;
}
.photo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.photo-placeholder span { font-size: 3.5rem; margin-bottom: .3rem }
.photo-placeholder p { font-family: var(--ff-heading); font-size: 1.1rem; letter-spacing: 2px }

.about-text-col .section-eyebrow,
.about-text-col .section-heading { text-align: left }

.about-intro {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.about-timeline { display: flex; flex-direction: column; gap: 1.5rem }

.about-era {
    background: var(--white);
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(0,0,0,.04);
    transition: var(--transition);
}
.about-era:hover { box-shadow: var(--shadow-md); border-color: var(--periwinkle) }

.era-badge {
    display: inline-block;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: var(--peach-deep);
}

.about-era p { color: var(--dark-soft); font-size: .94rem; margin-bottom: .6rem }
.about-era p:last-child { margin-bottom: 0 }

/* ============================================================
   CONTACT (full page)
   ============================================================ */
.contact { background: var(--periwinkle-light); padding-bottom: 4rem }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(0,0,0,.04);
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md) }

.contact-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: .8rem;
}
.peach-bg       { background: var(--peach) }
.sage-bg        { background: var(--sage-light) }
.periwinkle-bg  { background: var(--periwinkle) }

.contact-card h4 { font-family: var(--ff-heading); font-size: 1.05rem; margin-bottom: .4rem; color: var(--dark) }
.contact-card p { font-size: .95rem; color: var(--dark-soft); margin-bottom: .25rem }

.contact-link { font-weight: 700; color: var(--peach-deep); transition: var(--transition) }
.contact-link:hover { color: var(--dark) }

.contact-form-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }

.form-group { margin-bottom: 1rem }
.form-group label {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(0,0,0,.1);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--dark);
    transition: var(--transition);
    min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--peach-deep);
    box-shadow: 0 0 0 3px rgba(232,169,109,.2), var(--shadow-sm);
    background: var(--white);
}
.form-group textarea { resize: vertical }

.paypal-note { text-align: center; margin-top: 2rem; font-size: .95rem; color: var(--dark-soft) }
.paypal-note a { color: var(--peach-deep); font-weight: 700 }
.paypal-note a:hover { text-decoration: underline }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.6);
    padding: 2.5rem 0 1.5rem;
}
.footer-inner { text-align: center }
.footer-logo { font-family: var(--ff-heading); font-size: 1.4rem; color: #fff }
.footer-brand p { font-size: .92rem; margin-top: .25rem; letter-spacing: 1px }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin: 1.2rem 0;
}
.footer-links a { font-size: .92rem; font-weight: 600; transition: var(--transition) }
.footer-links a:hover { color: var(--peach) }

.footer-copy {
    font-size: .85rem;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.2rem;
    margin-top: 1.2rem;
}
.footer-copy a { color: var(--peach); font-weight: 600 }
.footer-copy a:hover { color: #fff }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr }
    .preview-grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 768px) {
    html { font-size: 17px }
    section { padding: 3.5rem 0 }
    .container { padding: 0 1.2rem }

    /* Navbar mobile adjustments */
    .navbar {
        top: 0;
        left: 0; right: 0;
        transform: none;
        max-width: none;
        width: 100%;
    }
    .navbar.scrolled { top: 0 }
    .nav-inner {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: .65rem 1.2rem;
        gap: 1rem;
        min-height: 56px;
    }
    
    /* Nav mobile toggle */
    .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1002 }

    /* Full-screen overlay menu */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background: rgba(42,38,52,.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 5rem 2rem 3rem;
        z-index: 1001;
        transition: opacity .35s ease, visibility .35s ease;
        opacity: 0;
        visibility: hidden;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    /* Nav link items */
    .nav-links li {
        width: 100%;
        max-width: 320px;
        text-align: center;
        transform: translateY(20px);
        opacity: 0;
        transition: opacity .3s ease, transform .3s ease;
    }
    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.open li:nth-child(1) { transition-delay: .08s }
    .nav-links.open li:nth-child(2) { transition-delay: .14s }
    .nav-links.open li:nth-child(3) { transition-delay: .20s }
    .nav-links.open li:nth-child(4) { transition-delay: .26s }
    .nav-links.open li:nth-child(5) { transition-delay: .32s }

    .nav-links a {
        color: #fff !important;
        font-size: 1.35rem;
        padding: 1rem 1.2rem;
        width: 100%;
        border-radius: var(--radius);
        font-weight: 600;
        justify-content: center;
        letter-spacing: .5px;
    }
    .nav-links a::after { display: none }
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255,255,255,.08);
    }

    /* CTA in mobile menu */
    .nav-links .nav-cta {
        margin-top: .75rem;
        font-size: 1.15rem !important;
        padding: 1rem 2rem !important;
    }

    /* Body scroll lock when menu open */
    body.nav-open {
        overflow: hidden;
    }

    /* Hero */
    .hero { padding-top: 6rem; padding-bottom: 2.5rem; min-height: 100svh }
    .hero-content { margin-bottom: 2rem }
    .hero-roles { flex-direction: column; align-items: center; gap: .4rem }
    .role-chip { font-size: .85rem; padding: .35rem .9rem }
    .portals { gap: 1.2rem }
    .portal-circle { width: 76px; height: 76px }
    .portal-emoji { font-size: 1.6rem }
    .portal-label { font-size: .78rem }
    .hero-lotus-wrap { width: clamp(220px, 60vw, 350px); height: clamp(220px, 60vw, 350px) }

    /* Page Hero */
    .page-hero { padding: 6.5rem 1.2rem 2.5rem; min-height: 180px }
    .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem) }
    .page-hero-sub { font-size: .95rem }

    /* Section text */
    .section-heading { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: .75rem }
    .section-intro { font-size: 1rem; margin-bottom: 2rem }
    .section-eyebrow { font-size: .78rem; letter-spacing: 2.5px }

    /* Grids → single col */
    .preview-grid,
    .about-layout,
    .about-preview-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Preview cards */
    .preview-card { padding: 1.6rem 1.4rem }
    .preview-card h3 { font-size: 1.2rem }
    .preview-card p { font-size: .92rem }
    .preview-icon { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 1rem }

    /* About */
    .about-photo { position: static }
    .about-preview-img { aspect-ratio: 4 / 3 }
    .photo-placeholder { aspect-ratio: 16/10 }
    .photo-placeholder-sm { aspect-ratio: 16/10 }
    .about-intro { font-size: 1.05rem }
    .about-era { padding: 1.2rem 1.3rem }
    .about-era p { font-size: .9rem }
    .about-text-col .btn { font-size: .9rem; padding: .8rem 1.6rem }

    /* Contact */
    .contact-card { padding: 1.2rem }
    .contact-card h4 { font-size: .95rem }
    .contact-card p { font-size: .88rem }
    .form-row { grid-template-columns: 1fr }
    .contact-form-wrap { padding: 1.5rem }
    .contact-form-wrap h3 { font-size: 1.25rem }

    /* Offerings detail */
    .detail-header { padding: 1.3rem 1.4rem }
    .detail-header h2 { font-size: 1.35rem }
    .detail-body { padding: 1.3rem 1.4rem 1.6rem }
    .detail-body p { font-size: .92rem }
    .detail-block { border-radius: var(--radius) }

    /* Pricing pills */
    .pill { padding: .55rem .85rem }
    .pill-label { font-size: .88rem }
    .pill-price { font-size: 1rem }

    /* Journey / Training */
    .journey-map { padding-left: 3rem }
    .step-marker { left: -3rem }
    .step-num { width: 2rem; height: 2rem; font-size: .9rem }
    .journey-map::before { left: .9rem }
    .step-card { padding: 1.2rem 1.3rem }
    .step-header h3 { font-size: 1.1rem }
    .step-price { font-size: 1.05rem }
    .step-card p { font-size: .88rem }

    /* Buttons */
    .btn { padding: .8rem 1.8rem; font-size: .92rem }
    .btn-lg { padding: .85rem 2rem; font-size: .92rem }
    .cta-buttons { flex-direction: column; align-items: center; gap: .75rem }
    .cta-buttons .btn { width: 100%; max-width: 320px }

    /* Mission quote */
    .mission { padding: 2.5rem 0 }
    .mission-quote { font-size: clamp(1.1rem, 3vw, 1.6rem) }

    /* Footer */
    .footer-links { gap: 1rem; font-size: .85rem }
    .footer-logo { font-size: 1.2rem }
    .footer-brand p { font-size: .82rem }
    .footer-copy { font-size: .78rem }

    /* Locations */
    .cta-locations { flex-direction: column; gap: .3rem; font-size: .88rem }
    .cta-divider { display: none }

    /* Waves */
    .wave svg { height: 50px }

    /* Addon */
    .addon-inner { padding: 1rem 1.2rem }
    .addon-inner h4 { font-size: .95rem }
    .addon-inner p { font-size: .88rem }
}

@media (max-width: 480px) {
    html { font-size: 15px }
    .container { padding: 0 1rem }

    .hero { padding-top: 5.5rem }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); font-weight: 600 }
    .hero-subtitle { font-size: 1rem; font-weight: 500 }
    .hero-tag { font-size: .8rem; letter-spacing: 2px }
    .hero-content { margin-bottom: 1.5rem }
    
    .nav-inner {
        padding: .55rem 1rem;
    }
    .nav-logo {
        font-size: 1.15rem;
    }
    .nav-links a {
        font-size: 1.2rem;
    }

    .portals { flex-direction: column; align-items: center; gap: .8rem }
    .portal { flex-direction: row; gap: .8rem }
    .portal-circle { width: 56px; height: 56px }
    .portal-emoji { font-size: 1.3rem }
    .portal-label { font-size: .75rem }

    .preview-grid { grid-template-columns: 1fr }
    .contact-grid { grid-template-columns: 1fr }

    .btn { padding: .7rem 1.4rem; font-size: .85rem }
    .btn-hero { padding: .7rem 1.6rem; font-size: .85rem }

    .about-preview-img { aspect-ratio: 1 / 1 }
    .about-text-col .btn { width: 100%; margin-left: 0 !important; margin-bottom: .5rem }

    .addon-inner { flex-direction: column; text-align: center }
    .addon-price { margin-left: 0 }

    .step-header { flex-direction: column; align-items: flex-start; gap: .15rem }

    /* Prevent any horizontal overflow */
    .detail-block { border-radius: var(--radius); margin: 0 -.2rem }
    .safety-note { font-size: .88rem }
    .location-badge { font-size: .88rem }
}