/* ==========================================================================
   VIVIENUM — LUXURY BILINGUAL WEBSITE STYLES
   Theme: Strict, Premium, Mystical (Deep Purple, Bottle Green, Antique Gold)
   ========================================================================== */

:root {
    --bg-primary: #08030d;
    --bg-secondary: #11071a;
    --bg-tertiary: #180a25;
    --card-bg: rgba(20, 10, 31, 0.75);
    --card-border: rgba(212, 175, 55, 0.22);
    --card-hover-border: rgba(212, 175, 55, 0.6);
    
    --green-dark: #071913;
    --green-mid: #0d2a20;
    --green-accent: #154233;
    --green-glow: rgba(18, 56, 44, 0.45);
    
    --gold-primary: #d4af37;
    --gold-light: #f5e4a8;
    --gold-deep: #9d7d2c;
    --gold-gradient: linear-gradient(135deg, #f5e4a8 0%, #d4af37 50%, #9d7d2c 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    
    --text-main: #f5f2eb;
    --text-lead: #ded7c8;
    --text-muted: #a49baa;
    --text-dim: #797181;
    
    --font-heading: 'Cinzel', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --header-height: 80px;
    --container-width: 1200px;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    background: radial-gradient(circle at 50% 0%, #1a0a28 0%, #08030d 50%, #05130f 100%) fixed;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dual-Language Visibility Toggle */
body.lang-en .lang-ru {
    display: none !important;
}
body.lang-ru .lang-en {
    display: none !important;
}

/* Ambient Subtle Lighting */
.ambient-glow {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(140px);
}
.glow-top {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 30, 130, 0.18), transparent 70%);
}
.glow-bottom {
    bottom: -150px;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    color: var(--text-main);
    font-weight: 600;
}
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gold-diamond {
    color: var(--gold-primary);
    font-size: 0.8rem;
    margin: 0 8px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 5, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 100;
    transition: var(--transition-smooth);
}
.site-header.scrolled {
    background: rgba(8, 3, 13, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}
.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-main);
}
.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-glow);
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 26px;
}
.nav-link {
    color: var(--text-lead);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Dual-Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 3px 8px;
    backdrop-filter: blur(8px);
}
.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-smooth);
}
.lang-btn.active {
    color: #08030d;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px var(--gold-glow);
}
.lang-sep {
    color: rgba(212, 175, 55, 0.4);
    font-size: 0.75rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold-gradient);
    color: #0c0512;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(212, 175, 55, 0.5);
    filter: brightness(1.08);
}
.btn-outline {
    background: rgba(18, 9, 28, 0.6);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.45);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 18px var(--gold-glow);
}
.btn-header {
    padding: 8px 18px;
    font-size: 0.76rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(13, 6, 20, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--card-border);
    z-index: 1000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open {
    right: 0;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.drawer-title {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
.drawer-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}
.mobile-link {
    color: var(--text-lead);
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    display: block;
    padding: 6px 0;
    transition: var(--transition-smooth);
}
.mobile-link:hover, .mobile-link.highlight {
    color: var(--gold-light);
}
.mobile-link.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.drawer-footer .drawer-lang-selector {
    display: flex;
    gap: 10px;
}
.drawer-footer .drawer-lang-selector .lang-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(20, 9, 32, 0.7) 0%, rgba(8, 3, 13, 0.94) 80%),
                url('Photos/24dadfd7-ec0c-48e3-947c-027f9477e1be.JPG') center center / cover no-repeat;
    opacity: 0.28;
    filter: saturate(1.2);
    z-index: 0;
}
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-emblem-wrap {
    margin-bottom: 24px;
}
.hero-emblem-diamond {
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 30px var(--gold-glow);
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.hero-emblem-diamond:hover {
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.6);
    transform: rotate(45deg) scale(1.04);
}
.hero-emblem-img {
    width: 145%;
    height: 145%;
    transform: rotate(-45deg);
    object-fit: cover;
}
.hero-tagline-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.08);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.15;
    margin-bottom: 26px;
    font-weight: 700;
}
.hero-credo {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--text-lead);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 780px;
    font-style: italic;
}
.hero-clarity-quote {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.04em;
}
.quote-line {
    height: 1px;
    width: 40px;
    background: var(--gold-gradient);
}
.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-hero {
    padding: 14px 34px;
    font-size: 0.88rem;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition-smooth);
}
.hero-scroll-indicator:hover {
    opacity: 1;
}
.scroll-mouse {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scrollAnim 1.8s infinite;
}
@keyframes scrollAnim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Sections Global */
.section {
    padding: 110px 0;
    position: relative;
    z-index: 1;
}
.section-header {
    margin-bottom: 60px;
}
.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    color: var(--gold-primary);
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    line-height: 1.25;
    margin-bottom: 16px;
}
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 20px;
    position: relative;
}
.section-header:not(.text-center) .title-divider {
    justify-content: flex-start;
}
.title-divider::before, .title-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}
.title-divider::after {
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}
.divider-gem {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    margin: 0 10px;
    box-shadow: 0 0 8px var(--gold-glow);
}
.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.22rem;
    color: var(--text-lead);
    font-style: italic;
    line-height: 1.6;
}

/* About Anna Section */
.about-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 60px;
    align-items: start;
}
.about-photo-wrapper {
    position: relative;
}
.photo-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px var(--gold-glow);
}
.photo-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.profile-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05);
    transition: var(--transition-smooth);
}
.photo-frame:hover .profile-photo {
    transform: scale(1.02);
}
.photo-inner-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
    z-index: 2;
    border-radius: 4px;
}
.credentials-badge-card {
    margin-top: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 24px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.credential-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.credential-item i {
    font-size: 1.25rem;
    margin-top: 3px;
}
.credential-item h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.credential-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-text-content .about-lead {
    font-size: 1.65rem;
    line-height: 1.35;
    margin-bottom: 24px;
    color: var(--gold-light);
    font-weight: 500;
}
.prose-block p {
    font-size: 1.05rem;
    color: var(--text-lead);
    margin-bottom: 20px;
}
.about-callout {
    background: rgba(13, 42, 32, 0.4);
    border-left: 3px solid var(--gold-primary);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 6px 6px 0;
}
.callout-text {
    font-size: 1.08rem !important;
    color: var(--text-main) !important;
    margin-bottom: 0 !important;
}
.lead-statement {
    font-family: var(--font-serif);
    font-size: 1.45rem !important;
    font-style: italic;
    color: var(--gold-light) !important;
    margin-top: 26px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
}

/* Approach Section & Triad */
.triad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.triad-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.triad-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-hover-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
}
.triad-card.featured {
    background: linear-gradient(180deg, rgba(20, 10, 31, 0.85) 0%, rgba(13, 42, 32, 0.6) 100%);
    border-color: rgba(212, 175, 55, 0.45);
}
.card-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 24px;
    right: 28px;
}
.card-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
}
.triad-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}
.triad-card p {
    font-size: 0.96rem;
    color: var(--text-lead);
    line-height: 1.7;
}

/* Parallax Break */
.quote-parallax-break {
    position: relative;
    padding: 120px 24px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(11, 5, 18, 0.82) 0%, rgba(7, 26, 20, 0.94) 100%);
    z-index: 0;
}
.break-gem {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
    text-shadow: 0 0 16px var(--gold-primary);
}
.break-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    line-height: 1.6;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto 28px;
    font-style: italic;
}
.quote-author {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
}

/* Traditions Showcase */
.tradition-row {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}
.tradition-row:last-child {
    margin-bottom: 0;
}
.tradition-row.reverse {
    grid-template-columns: 1fr 480px;
}
.tradition-row.reverse .tradition-image-col {
    order: 2;
}
.tradition-row.reverse .tradition-text-col {
    order: 1;
}
.tradition-img-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.tradition-img-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
}
.tradition-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tradition-img-card:hover .tradition-img {
    transform: scale(1.03);
}
.img-badge {
    display: none !important;
}
.tradition-tag {
    font-family: var(--font-heading);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    display: inline-block;
    margin-bottom: 10px;
}
.tradition-heading {
    font-size: 2rem;
    margin-bottom: 6px;
}
.tradition-subheading {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 400;
}
.tradition-description p {
    font-size: 1rem;
    color: var(--text-lead);
    margin-bottom: 14px;
}
.tradition-core-note {
    border-left: 2px solid var(--gold-primary);
    padding-left: 18px;
    margin-top: 18px;
    font-style: italic;
    color: var(--text-main) !important;
}
.runes-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.rune-aspect {
    background: rgba(21, 11, 32, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 18px;
}
.aspect-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.aspect-header h5 {
    font-size: 0.95rem;
    color: var(--gold-light);
}
.rune-aspect p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

/* Practice Cards Grid: 2-Column Luxury Layout */
.practice-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}
@media (max-width: 900px) {
    .practice-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.practice-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.practice-card:hover, .practice-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 25px var(--gold-glow);
    outline: none;
}
.practice-img-wrap {
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #050209;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.practice-card:hover .practice-img-wrap {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
}
.practice-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.practice-card:hover .practice-card-img {
    transform: scale(1.03);
}
.practice-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.practice-badge {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
}
.practice-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}
.practice-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--gold-light);
    flex-grow: 1;
}
.practice-card-action {
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.practice-btn-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}
.practice-btn-trigger i {
    transition: transform 0.25s ease;
}
.practice-card:hover .practice-btn-trigger {
    color: var(--gold-light);
}
.practice-card:hover .practice-btn-trigger i {
    transform: translateX(5px);
}
.featured-practice {
    background: linear-gradient(180deg, rgba(24, 12, 38, 0.85) 0%, rgba(13, 42, 32, 0.6) 100%);
    border-color: rgba(212, 175, 55, 0.4);
}
.practice-desc {
    font-size: 0.94rem;
    color: var(--text-lead);
    line-height: 1.65;
    flex-grow: 1;
}
.practice-disclaimer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    font-size: 0.78rem;
    color: var(--text-dim);
    font-style: italic;
}
.pricing-notice-card {
    background: linear-gradient(135deg, rgba(15, 7, 24, 0.95), rgba(9, 32, 24, 0.95));
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
}
.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.notice-text {
    flex: 1 1 auto;
    min-width: 0;
}
.notice-text h4 {
    font-size: 1.22rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.notice-text p {
    font-size: 0.94rem;
    color: var(--text-lead);
    line-height: 1.6;
}
.btn-notice {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
    padding: 14px 30px;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}

/* Method Steps */
.method-banner-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-light);
    margin-top: 10px;
}
.method-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.method-step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}
.method-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
}
.step-badge {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    margin-bottom: 16px;
    display: inline-block;
}
.step-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}
.method-step-card p {
    font-size: 0.96rem;
    color: var(--text-lead);
    line-height: 1.65;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--card-border);
    cursor: pointer;
    background: #000;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 3, 13, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0.85;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(8, 3, 13, 0.95) 100%);
}
.gallery-item-overlay i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    transform: translateY(8px);
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-item-overlay i {
    transform: translateY(0);
}
.gallery-item-overlay span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
}

/* FAQ Accordion */
.faq-accordion-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}
.faq-card.active {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
}
.faq-trigger {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
}
.faq-question {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.faq-card.active .faq-question {
    color: var(--gold-light);
}
.faq-icon {
    font-size: 1rem;
    color: var(--gold-primary);
    transition: transform 0.35s ease;
}
.faq-card.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-content p {
    padding: 0 28px 24px;
    font-size: 0.98rem;
    color: var(--text-lead);
    line-height: 1.7;
}

/* Contact Section & Placeholders */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
}
.channel-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}
.contact-card:hover .channel-icon-wrap {
    transform: scale(1.1);
    background: var(--gold-gradient);
    color: #0c0512;
}
.channel-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
}
.channel-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.channel-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.channel-btn {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-primary);
    text-transform: uppercase;
    transition: var(--transition-smooth);
}
.contact-card:hover .channel-btn {
    color: var(--gold-light);
    transform: translateX(4px);
}

/* Consultation Form */
.consultation-form-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px;
    backdrop-filter: blur(14px);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-title {
    font-size: 1.45rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: var(--gold-light);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(11, 5, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px var(--gold-glow);
    background: rgba(16, 7, 26, 0.95);
}
.form-group select option {
    background: #11071a;
    color: #f5f2eb;
}
.form-actions {
    text-align: center;
    margin-top: 10px;
}
.btn-submit {
    width: 100%;
    max-width: 420px;
    padding: 15px 30px;
}

/* Footer */
.site-footer {
    background: #050208;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 70px 0 30px;
    position: relative;
    z-index: 1;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.footer-brand .footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid var(--gold-primary);
    margin-bottom: 14px;
}
.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    display: block;
    margin-bottom: 8px;
}
.footer-credo {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
}
.footer-heading {
    font-size: 0.92rem;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}
.footer-nav a:hover {
    color: var(--gold-light);
}
.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.footer-bottom {
    padding-top: 24px;
}
.bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright {
    font-size: 0.82rem;
    color: var(--text-dim);
}
.footer-lang-toggle {
    display: flex;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.82rem;
}
.footer-lang-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.82rem;
}
.footer-lang-btn.active {
    color: var(--gold-light);
    font-weight: 600;
}

/* Floating Action Button */
.floating-contact-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
}
.floating-btn-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #0c0512;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), 0 0 15px var(--gold-glow);
    transition: var(--transition-smooth);
}
.floating-btn-inner:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 1, 6, 0.95);
    backdrop-filter: blur(12px);
}
.lightbox-container {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}
.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 8, 28, 0.9);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1350;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px var(--gold-glow);
    transition: var(--transition-smooth);
    line-height: 1;
}
.lightbox-close:hover {
    background: var(--gold-primary);
    color: #000;
    transform: rotate(90deg);
}
.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 1, 6, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}
.lightbox-image {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
}
.lightbox-caption {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold-light);
    margin-top: 16px;
    text-align: center;
    max-width: 800px;
}

/* ==========================================================================
   PRACTICE DETAILS MODAL POPUP (FULL-SCREEN PARALLAX ATMOSPHERE)
   ========================================================================== */
.practice-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    width: 100%;
    height: 100%;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.practice-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.practice-modal-overlay {
    display: none;
}
.practice-modal-dialog {
    position: relative;
    z-index: 2;
    border: none;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: none;
    animation: practiceModalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: #08030e;
}
.practice-modal-dialog::-webkit-scrollbar {
    width: 8px;
}
.practice-modal-dialog::-webkit-scrollbar-track {
    background: rgba(10, 4, 16, 0.8);
}
.practice-modal-dialog::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.35);
    border-radius: 4px;
}
.practice-modal-dialog::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.65);
}
@keyframes practiceModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.practice-modal-parallax-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.38;
    filter: saturate(1.2) contrast(1.1);
    transition: background-image 0.4s ease;
    pointer-events: none;
}
.practice-modal-parallax-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 25%, rgba(14, 6, 22, 0.84) 0%, rgba(6, 2, 10, 0.96) 100%);
    z-index: 1;
    pointer-events: none;
}
.practice-modal-close {
    position: fixed;
    top: 24px;
    right: 28px;
    background: rgba(18, 8, 28, 0.9);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 100;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px var(--gold-glow);
}
.practice-modal-close:hover {
    background: var(--gold-primary);
    color: #05020a;
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 0 25px var(--gold-primary);
}
.practice-modal-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding: 85px 32px 60px;
}
.practice-modal-header {
    text-align: center;
    margin-bottom: 32px;
}
.practice-modal-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--gold-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.practice-modal-title {
    font-size: clamp(1.35rem, 4.5vw, 2.2rem);
    line-height: 1.35;
    color: var(--gold-light);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
.practice-modal-body {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-lead);
    margin-bottom: 36px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    overflow-wrap: break-word;
    word-break: break-word;
}
.practice-modal-body p {
    margin-bottom: 20px;
}
.practice-modal-body p:last-child {
    margin-bottom: 0;
}
.practice-modal-body strong {
    color: var(--gold-light);
    font-weight: 600;
}
.practice-modal-body ul {
    margin: 18px 0 22px 24px;
}
.practice-modal-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}
.practice-modal-body .practice-disclaimer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.92rem;
    color: var(--text-dim);
    font-style: italic;
}
.practice-modal-footer {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}
.practice-modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
}
@media (max-width: 600px) {
    .practice-modal-close {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }
    .practice-modal-content-wrap {
        padding: 70px 18px 45px;
    }
    .practice-modal-cta-btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        padding: 14px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        justify-content: center;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid, .tradition-row, .tradition-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tradition-row.reverse .tradition-image-col {
        order: 1;
    }
    .tradition-row.reverse .tradition-text-col {
        order: 2;
    }
    .triad-grid, .method-steps-grid, .contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pricing-notice-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 22px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .main-nav, .btn-header {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hide-mobile {
        display: none;
    }
    .practice-cards-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .pricing-notice-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .bottom-container {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}
