/* ============================================
   TRANSFIGURATIVE THERAPIES
   Dark Mystical Healing Aesthetic
   ============================================ */

:root {
    --black: #0a0a08;
    --black-soft: #111110;
    --black-card: #161614;
    --charcoal: #1c1c1a;
    --dark-green: #0d1a0f;
    --forest: #1a2e1c;
    --sage: #3a5a3c;
    --gold: #c4a44e;
    --gold-light: #dcc070;
    --gold-dim: rgba(196, 164, 78, 0.15);
    --cream: #e8e0cc;
    --cream-soft: #d4cbb4;
    --warm-white: #f0ebe0;
    --coral: #b45032;
    --blue-wisp: #64b4dc;
    --text: #c8c0a8;
    --text-dim: #8a8472;
    --text-bright: #e8e0cc;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Raleway', 'Helvetica Neue', Helvetica, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset & Base ---- */
*, *::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-body);
    font-weight: 300;
    color: var(--text);
    background: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-mandala {
    animation: spin-slow 4s linear infinite;
}

.spin-petal {
    transform-origin: center;
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 10, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196, 164, 78, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--cream) !important;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    padding: 0.6rem 1.5rem !important;
    color: var(--gold) !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(196, 164, 78, 0.4);
}

.btn-primary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: 0 0 30px rgba(196, 164, 78, 0.08);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid rgba(200, 192, 168, 0.15);
}

.btn-ghost:hover {
    color: var(--cream);
    border-color: rgba(200, 192, 168, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 40px rgba(196, 164, 78, 0.2);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* ---- Section Primitives ---- */
.section {
    padding: clamp(5rem, 12vh, 9rem) 0;
    position: relative;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 2rem;
}

.section-title-light {
    color: var(--warm-white);
}

.title-light {
    font-size: 0.55em;
    color: var(--text-dim);
    font-weight: 300;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(3rem, 8vw, 10rem);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 26, 15, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(196, 164, 78, 0.03) 0%, transparent 60%),
        linear-gradient(180deg, var(--black) 0%, rgba(10, 10, 8, 0.3) 40%, var(--black) 100%);
}

.mandala-hero-wrap {
    position: absolute;
    top: 50%;
    left: 66%;
    transform: translate(-50%, -50%);
    width: min(90vw, 850px);
    height: min(90vw, 850px);
    opacity: 0;
    animation: mandala-reveal 2s var(--ease-out) 0.5s forwards;
}

.mandala-hero {
    width: 100%;
    height: 100%;
    animation: mandala-breathe 8s ease-in-out infinite;
}

.mandala-core {
    transform-origin: center;
}

.mandala-flames {
    animation: spin-very-slow 60s linear infinite;
    transform-origin: 0 0;
}

.mandala-leaves {
    animation: spin-very-slow 90s linear infinite reverse;
    transform-origin: 0 0;
}

.mandala-star {
    animation: mandala-pulse 4s ease-in-out infinite;
    transform-origin: 0 0;
}

.mandala-star-8 {
    animation: spin-very-slow 120s linear infinite reverse;
    transform-origin: 0 0;
}

@keyframes mandala-reveal {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes mandala-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes spin-very-slow {
    to { transform: rotate(360deg); }
}

@keyframes mandala-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    padding: 0 2rem;
}

.hero-tag {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 1s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: hero-line-in 1.2s var(--ease-out) forwards;
}

.hero-line-1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--cream);
    animation-delay: 0.8s;
}

.hero-line-2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dim);
    font-style: italic;
    font-weight: 300;
    animation-delay: 1s;
    margin: 0.3em 0;
}

.hero-line-3 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--gold);
    animation-delay: 1.2s;
}

@keyframes hero-line-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 0 2.5rem;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 1.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 1.9s forwards;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 2.5s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---- Philosophy ---- */
.section-philosophy {
    background: var(--black-soft);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.philosophy-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.philosophy-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.philosophy-visual {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out) 0.2s;
}

.philosophy-visual.revealed {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.philosophy-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.8s var(--ease-out);
}

.philosophy-img-wrap:hover img {
    transform: scale(1.03);
}

.philosophy-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 164, 78, 0.15);
    pointer-events: none;
}

.mandala-corner {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    opacity: 0.5;
}

.mandala-small {
    width: 100%;
    height: 100%;
    animation: spin-very-slow 40s linear infinite;
}

/* ---- Modalities ---- */
.section-modalities {
    background: var(--black);
}

.modality-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: clamp(4rem, 8vw, 7rem);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--ease-out);
    min-height: 500px;
}

.modality-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.modality-card-reverse {
    direction: rtl;
}

.modality-card-reverse > * {
    direction: ltr;
}

.modality-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.modality-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1) saturate(0.85);
    transition: all 0.8s var(--ease-out);
}

.modality-card:hover .modality-img img {
    filter: brightness(0.85) contrast(1.05) saturate(0.9);
    transform: scale(1.03);
}

.modality-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,8,0.3) 0%, transparent 60%);
}

.modality-content {
    padding: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black-card);
    border: 1px solid rgba(196, 164, 78, 0.06);
}

.modality-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(196, 164, 78, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.modality-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.modality-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.modality-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.modality-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 164, 78, 0.1);
}

.modality-duration {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 500;
}

.modality-divider {
    color: var(--text-dim);
}

.modality-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 500;
}

/* ---- Sound Healing ---- */
.section-sound {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(6rem, 15vh, 10rem) 0;
}

.sound-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sound-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.1) saturate(0.7);
}

.sound-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--black) 0%, rgba(10,10,8,0.4) 30%, rgba(10,10,8,0.5) 70%, var(--black) 100%),
        radial-gradient(ellipse at center, transparent 30%, var(--black) 80%);
}

.sound-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sound-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--cream-soft);
    margin-bottom: 3rem;
    max-width: 650px;
}

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

.sound-offering {
    padding: 2rem;
    background: rgba(10, 10, 8, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 164, 78, 0.08);
    transition: all 0.4s var(--ease-out);
}

.sound-offering:hover {
    border-color: rgba(196, 164, 78, 0.2);
    transform: translateY(-4px);
}

.sound-icon {
    margin-bottom: 1rem;
}

.sound-offering h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.sound-offering p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
}

.sound-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

.sound-waves svg {
    width: 100%;
    height: 100%;
}

.wave {
    animation: wave-drift 6s ease-in-out infinite;
}

.wave-2 {
    animation-delay: -2s;
    animation-duration: 8s;
}

.wave-3 {
    animation-delay: -4s;
    animation-duration: 10s;
}

@keyframes wave-drift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* ---- Pricing ---- */
.section-pricing {
    background: var(--black-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--black-card);
    border: 1px solid rgba(196, 164, 78, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.5s var(--ease-out);
    opacity: 0;
    transform: translateY(40px);
}

.pricing-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: rgba(196, 164, 78, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card-featured {
    border-color: rgba(196, 164, 78, 0.2);
    background: linear-gradient(180deg, rgba(196, 164, 78, 0.04) 0%, var(--black-card) 50%);
}

.pricing-card-featured:hover {
    border-color: var(--gold);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
}

.pricing-card-mandala {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    opacity: 0.6;
}

.pricing-card-mandala svg {
    width: 100%;
    height: 100%;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.pricing-type {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.3rem;
}

.pricing-dollar {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 300;
}

.pricing-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
}

.pricing-per {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 300;
}

.pricing-duration {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 0.88rem;
    color: var(--text);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(196, 164, 78, 0.05);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    transform: translateY(-50%);
}

/* ---- Gallery ---- */
.section-gallery {
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(196, 164, 78, 0.06);
    border-bottom: 1px solid rgba(196, 164, 78, 0.06);
}

.gallery-strip {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--charcoal);
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: gallery-scroll 40s linear infinite;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 260px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
    transition: all 0.6s var(--ease-out);
}

.gallery-item:hover img {
    filter: brightness(0.9) saturate(1);
    transform: scale(1.05);
}

@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 6 - 1.5rem * 6)); }
}

/* ---- About ---- */
.section-about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-images {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.about-images.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-img-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.05);
}

.about-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 164, 78, 0.1);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    z-index: 3;
    overflow: hidden;
    border: 3px solid var(--black);
    aspect-ratio: 4/3;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.about-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out) 0.2s;
}

.about-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.about-credentials {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 164, 78, 0.1);
}

.credential {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.credential-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.credential-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ---- Contact ---- */
.section-contact {
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.contact-mandala-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.mandala-bg-svg {
    width: 100%;
    height: 100%;
    animation: spin-very-slow 80s linear infinite;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-link svg {
    flex-shrink: 0;
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 164, 78, 0.1);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

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

.form-group select {
    color: var(--text-dim);
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(196, 164, 78, 0.3);
    background: rgba(196, 164, 78, 0.03);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- Footer ---- */
.footer {
    padding: 4rem 0 2rem;
    background: var(--black);
    border-top: 1px solid rgba(196, 164, 78, 0.06);
    position: relative;
    overflow: hidden;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-top: 0.8rem;
}

.footer-links-wrap {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 164, 78, 0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.footer-mandala {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0.3;
}

.footer-mandala svg {
    animation: spin-very-slow 60s linear infinite;
}

/* ---- Scroll Reveal Generic ---- */
.reveal-on-scroll,
.contact-inner,
.sound-content,
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.reveal-on-scroll.revealed,
.contact-inner.revealed,
.sound-content.revealed,
.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero {
        justify-content: center;
        padding-left: 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .mandala-hero-wrap {
        left: 50%;
    }

    .philosophy-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-visual {
        max-width: 500px;
    }

    .modality-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modality-card-reverse {
        direction: ltr;
    }

    .modality-img {
        min-height: 300px;
        max-height: 400px;
    }

    .sound-offerings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2.5rem;
        gap: 2rem;
        transition: right 0.5s var(--ease-out);
        border-left: 1px solid rgba(196, 164, 78, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title .hero-line-1,
    .hero-title .hero-line-3 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-credentials {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-links-wrap {
        gap: 3rem;
    }

    .gallery-item {
        width: 280px;
        height: 200px;
    }

    @keyframes gallery-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 6 - 1.5rem * 6)); }
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sound-offering {
        padding: 1.5rem;
    }
}

/* ---- Noise Texture Overlay ---- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* Hosted contact form safeguards */
.sf-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.4em;
    margin-top: 1rem;
    color: var(--cream);
    font-size: 0.9rem;
}
