/* ============================================
   Heal with Rachana — Main Styles
   Earthy . Vibrant . Free-Spirited
   ============================================ */

/* === BODY BACKGROUND === */
body {
    background-color: #e8edea;
    background-image: none;
}

/* Floating energy orbs */
#particle-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

body > * {
    position: relative;
    z-index: 2;
}

/* === HEADER — fully transparent over hero, solid on scroll === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background: transparent;
    border-bottom: none;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(240, 244, 241, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(61, 122, 94, 0.12);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.header-top { display: none; }

/* Left-logo flex navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
    position: relative;
    z-index: 1;
    min-height: 80px;
}

/* Logo: white background box, like the preview */
.brand {
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    display: inline-flex;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.brand:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.18); }

.brand-logo {
    height: 150px;
    width: auto;
    transition: height 0.3s ease;
    filter: saturate(0.8);
    animation: none;
}

header.scrolled .brand-logo {
    height: 110px;
    filter: saturate(0.85);
}

/* Center nav links — absolutely centered pill, only as wide as content */
.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px 8px;
    white-space: nowrap;
}

header.scrolled .nav-links {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    gap: 4px;
}

header.scrolled .menu-toggle {
    color: var(--brand-teal);
    text-shadow: none;
}

/* Individual nav links — clean white text inside the shared pill */
.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    transition: all 0.25s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: transparent;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

header.scrolled .nav-link {
    color: var(--text-body);
    font-weight: 500;
}

header.scrolled .nav-link:hover {
    color: var(--brand-gold);
    background: rgba(61, 122, 94, 0.08);
}

/* Footer logo */
.footer-logo {
    filter: none;
    animation: none;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Services dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-link::after { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: rgba(250, 246, 239, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 12px 40px rgba(149, 95, 39, 0.12);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 2px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-body);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(149, 95, 39, 0.08);
    color: var(--brand-gold);
}

/* Book Session — green-tinted pill on forest, solid green on cream */
.nav-cta {
    padding: 10px 22px;
    background: rgba(90, 170, 126, 0.25);
    color: #fff;
    border: 1.5px solid rgba(90, 170, 126, 0.8);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.nav-cta:hover {
    background: rgba(90, 170, 126, 0.45);
    border-color: #7adb9e;
    transform: translateY(-1px);
}

header.scrolled .nav-cta {
    background: var(--brand-gold);
    color: #fff;
    border-color: var(--brand-gold);
    text-shadow: none;
}

header.scrolled .nav-cta:hover {
    background: var(--brand-gold-light);
    border-color: var(--brand-gold-light);
}

/* Hidden on desktop */
.mobile-menu { display: none; }

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 30px;
    padding: 4px;
    cursor: pointer;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* === HERO — full-bleed cinematic forest === */
.hero {
    min-height: 100vh;
    background-image: url('../src/images/preview-forest-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 210px;
    box-sizing: border-box;
}

/* Bottom gradient for hero text legibility */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.0) 30%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.72) 100%
    );
    pointer-events: none;
}

/* Top vignette — covers nav zone only, invisible on rest of image */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.10) 75%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 0 80px 80px;
    max-width: 820px;
    width: 100%;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 20px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin-bottom: 18px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 38px;
    max-width: 560px;
    line-height: 1.85;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* White CTA button, like the preview */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: 50px;
    background: #ffffff;
    color: var(--brand-teal);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.btn-white:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.25);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Forest CTA buttons */
.btn-forest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.65);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-forest:hover {
    background: rgba(255,255,255,0.28);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.65);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: #fff;
    transform: translateY(-2px);
}

/* === BUTTONS — warm gradients === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--brand-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(196, 136, 62, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--border-warm);
    color: var(--brand-teal);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(149, 95, 39, 0.12);
}

/* === SECTION BACKGROUNDS — clear grey/white alternation === */
.about      { background: #e8edea; }
.image-break { background: transparent; }
.journey    { background: #ffffff; }
.offerings  { background: #e8edea; }
.testimonials { background: #ffffff; }
.namaste    { background: #e8edea; }
.contact-section { background: #ffffff; }
.footer     { background: #e8edea; }

/* === ABOUT SECTION === */
.about {
    padding: 80px 0 60px;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-label {
    font-family: var(--font-accent);
    font-size: 38px;
    color: var(--brand-gold);
    margin-bottom: 6px;
}

.about-name {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 68px);
    color: var(--brand-teal);
    margin-bottom: 24px;
    font-weight: 400;
}

.about-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-mission {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--brand-teal);
    padding: 24px 28px;
    border-left: 4px solid var(--brand-gold);
    background: linear-gradient(135deg, rgba(196, 136, 62, 0.06) 0%, rgba(122, 158, 126, 0.06) 100%);
    border-radius: 0 16px 16px 0;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* === IMAGE BREAK — natural dimensions photo divider === */
.image-break {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 20px 0;
}

.image-break img {
    max-width: 100%;
    max-height: 540px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

/* === OFFERINGS — vibrant service cards === */
.offerings {
    padding: 60px 0;
    text-align: center;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    color: var(--brand-teal);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.offering-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient accent on top of each card */
.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-sage), var(--brand-terracotta));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offering-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(149, 95, 39, 0.12),
        0 0 0 1px rgba(149, 95, 39, 0.08);
}

.offering-card:hover::before { opacity: 1; }

.offering-icon {
    font-size: 36px;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.offering-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--brand-teal);
    margin-bottom: 8px;
    font-weight: 400;
}

.offering-meta {
    font-size: 13px;
    color: var(--brand-gold);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.offering-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
}

.offering-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 13px;
    color: var(--brand-gold);
    font-weight: 600;
    transition: gap 0.3s ease, color 0.3s ease;
}

.offering-link:hover { gap: 12px; color: var(--brand-terracotta); }
.offering-link::after { content: '\2192'; }

/* === NAMASTE SECTION — spiritual energy === */
.namaste {
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Mandala-like decorative circle behind the quote */
.namaste::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 136, 62, 0.06) 0%, rgba(122, 158, 126, 0.04) 50%, transparent 70%);
    pointer-events: none;
}

.namaste::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196, 136, 62, 0.1);
    pointer-events: none;
}

.namaste-quote {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 44px);
    color: var(--brand-teal);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.namaste-sub {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--brand-gold);
    position: relative;
    text-shadow: 0 2px 8px rgba(196, 136, 62, 0.12);
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section .section-heading { margin-bottom: 8px; }

.contact-form {
    max-width: 560px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(149, 95, 39, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-field { margin-bottom: 14px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1.5px solid var(--border-soft);
    border-radius: 14px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(196, 136, 62, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

/* === FOOTER === */
.footer {
    padding: 60px 0 40px;
    background: transparent;
    border-top: none;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-logo {
    width: 260px;
    height: auto;
    margin-bottom: 8px;
}

.footer-center address a {
    color: var(--text-body);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-center address a:hover { color: var(--brand-gold); }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(149, 95, 39, 0.08);
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(149, 95, 39, 0.15);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--brand-gold-glow);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--brand-gold);
}

/* === SERVICE PAGES === */
.service-hero {
    padding: 150px 0 60px;
    text-align: center;
}

.service-hero .breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-hero .breadcrumb a {
    color: var(--brand-gold);
    transition: opacity 0.3s;
}

.service-hero .breadcrumb a:hover { opacity: 0.7; }

.service-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    color: var(--brand-teal);
    font-weight: 400;
    margin-bottom: 16px;
}

.service-meta-bar {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--text-muted);
}

.service-meta-bar .price {
    color: var(--brand-gold);
    font-weight: 600;
    font-size: 20px;
}

.service-body { padding: 60px 0 100px; }

.service-content {
    max-width: 720px;
    margin: 0 auto;
}

.service-content .glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(149, 95, 39, 0.05);
}

.service-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--brand-teal);
    margin-bottom: 16px;
    font-weight: 400;
}

.service-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-content ul { margin: 16px 0; }

.service-content ul li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-content ul li::before {
    content: '\2713';
    color: var(--brand-sage);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}

/* === PRICING PAGE === */
.pricing-hero {
    padding: 150px 0 40px;
    text-align: center;
}

.pricing-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    color: var(--brand-teal);
    font-weight: 400;
    margin-bottom: 12px;
}

.pricing-grid { padding: 40px 0 100px; }

/* === PRICING PAGE — dark green cards, uniform squiggly, no icons === */
.pricing-grid .offering-icon { display: none; }

.pricing-grid .offering-card {
    background: var(--brand-teal);
    border: none;
    color: rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.pricing-grid .offering-card::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
    opacity: 1;
}

.pricing-grid .offering-card:hover {
    background: #2d6b4f;
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}

/* Uniform squiggly before each title */
.pricing-grid .offering-card h3::before {
    content: '〰〰〰';
    display: block;
    font-size: 16px;
    color: rgba(255,220,130,0.85);
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-family: serif;
}

.pricing-grid .offering-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-grid .offering-card .offering-meta {
    color: rgba(255,220,130,0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pricing-grid .offering-card p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}

.pricing-grid .offering-card .offering-link {
    color: rgba(255,220,130,0.9);
}

.pricing-grid .offering-card .offering-link:hover {
    color: #fff;
}

/* === UMBRELLA OFFERINGS — 2x2 grid, no prices === */
.umbrellas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    text-align: left;
}

.umbrella-card {
    background: #ffffff;
    border: 1.5px solid rgba(61, 122, 94, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.umbrella-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-teal));
    opacity: 1;
    border-radius: 20px 20px 0 0;
}

.umbrella-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(61, 122, 94, 0.14);
    border-color: rgba(61, 122, 94, 0.3);
}

/* No emoji icon */
.umbrella-icon { display: none; }

/* Same squiggly before every category title */
.umbrella-card h3::before {
    content: '〰〰〰';
    display: block;
    font-size: 18px;
    color: var(--brand-gold);
    margin-bottom: 14px;
    letter-spacing: 3px;
    opacity: 0.8;
    font-family: serif;
}

.umbrella-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--brand-teal);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.umbrella-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.85;
    flex: 1;
    margin-bottom: 24px;
}

/* === THE JOURNEY — how we heal === */
.journey {
    padding: 60px 0;
    text-align: center;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: left;
}

.journey-step {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s ease;
}

.journey-step:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(149, 95, 39, 0.12);
}

.journey-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-sage) 0%, var(--brand-teal) 100%);
    box-shadow: 0 4px 16px rgba(46, 82, 82, 0.25);
    margin-bottom: 18px;
}

.journey-step h3 {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--brand-teal);
    margin-bottom: 10px;
    font-weight: 400;
}

.journey-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* === TESTIMONIALS — words of transformation === */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(196, 136, 62, 0.06) 0%, rgba(122, 158, 126, 0.06) 100%);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 34px 30px 30px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    left: 22px;
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1;
    color: var(--brand-gold);
    opacity: 0.22;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(149, 95, 39, 0.1);
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.testimonial-card figcaption {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--brand-gold);
    letter-spacing: 0.3px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    /* Prevent horizontal scroll / overflow on mobile */
    body, .hero, .about, .journey, .offerings, .testimonials, .namaste, .contact-section, .footer {
        overflow-x: hidden;
        max-width: 100vw;
    }
    /* Hide desktop nav-links, show hamburger */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: block; }
    /* Logo visible on mobile — saturate down keeps it readable without amplifying orange */
    .brand-logo { height: 120px; filter: saturate(0.8) drop-shadow(0 0 6px rgba(255,255,255,0.2)); }
    header.scrolled .brand-logo { height: 110px; filter: saturate(0.85); }
    .navbar { min-height: 60px; padding: 10px 0; }

    /* Mobile menu — drops below header bar */
    .mobile-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 16px 0 40px;
        border-top: 1px solid rgba(90,170,126,0.25);
        margin-top: 10px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(15, 35, 20, 0.95);
        backdrop-filter: blur(24px);
    }

    header.scrolled .mobile-menu {
        background: rgba(240, 244, 241, 0.98);
        border-top-color: var(--border-soft);
    }

    .navbar.mobile-open .mobile-menu { display: flex; }

    .mobile-menu .nav-link {
        font-size: 18px;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        color: rgba(255,255,255,0.9);
    }

    header.scrolled .mobile-menu .nav-link { color: var(--text-body); }

    .mobile-menu .nav-cta {
        display: inline-flex;
        font-size: 16px;
        padding: 14px 36px;
        margin-top: 20px;
        color: #fff;
        border-color: rgba(255,255,255,0.6);
    }

    .mobile-menu .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mobile-menu .nav-dropdown > .nav-link {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .mobile-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: 0;
        width: 100%;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 4px 0 8px;
    }

    .mobile-menu .dropdown-menu a {
        font-size: 15px;
        padding: 10px 16px;
        text-align: center;
        color: rgba(255,255,255,0.7);
        display: block;
    }

    /* Full-bleed hero on mobile */
    .hero { background-attachment: scroll; padding-top: 170px; }
    .hero-overlay { padding: 0 28px 60px; }
    .hero-tagline { font-size: 16px; letter-spacing: 3px; }
    .hero-headline { font-size: 28px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }

    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 340px; margin: 0 auto; }

    .journey-grid { grid-template-columns: 1fr; }
    .umbrellas-grid { grid-template-columns: 1fr; }
    .offerings-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .footer-row { flex-direction: column; text-align: center; }

    .service-content .glass-card { padding: 28px; }

    .namaste::before { width: 240px; height: 240px; }
    .namaste::after { width: 290px; height: 290px; }

    /* Prevent ALL horizontal overflow on mobile */
    .container { padding: 0 20px; }
    .contact-form { max-width: 100%; }
    .service-content { max-width: 100%; padding: 0; }
    .hero-overlay { max-width: 100%; }
    img { max-width: 100%; height: auto; }
    .service-meta-bar { gap: 12px; }
    .pricing-grid { padding: 20px 0 60px; }
    .service-hero, .pricing-hero { padding: 130px 0 30px; }
}

@media (max-width: 480px) {
    .hero-overlay { padding: 0 20px 50px; }
    .hero-headline { font-size: 26px; }
    .btn-forest, .btn-ghost { padding: 13px 22px; font-size: 14px; }
    /* Keep logo visible at small screen — DO NOT make tiny */
    .brand-logo { height: 90px; filter: saturate(0.8) drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
    header.scrolled .brand-logo { height: 85px; filter: saturate(0.85); }
    .footer-logo { width: 160px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    #particle-canvas { display: none; }
}

/* === PRINT === */
@media print {
    header, #particle-canvas, .hero-ctas, .contact-form, .menu-toggle, .nav-cta { display: none; }
    body { background: #fff; color: #333; }
    .hero-headline, .section-heading, .about-name { color: #222; }
    .offering-card { break-inside: avoid; border: 1px solid #ccc; background: #fff; }
}
