:root {
    --bg-primary: #0f1117;
    --bg-secondary: #171b24;
    --bg-tertiary: #1e2330;
    --bg-card: #1a1f2e;
    --text-primary: #e8e6e0;
    --text-secondary: #9a9590;
    --text-muted: #5a5650;
    --accent: #8fbc8f;
    --accent-hover: #a8d4a8;
    --accent-muted: rgba(143, 188, 143, 0.12);
    --accent-warm: #c4a882;
    --accent-warm-hover: #d4b892;
    --border: #2a2f3e;
    --border-light: #333845;
    --shadow: rgba(0, 0, 0, 0.4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 28px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-petals {
    position: relative;
    width: 48px;
    height: 48px;
}
.loader-petals span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.2;
    animation: petalPulse 1.2s ease-in-out infinite;
}
.loader-petals span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.loader-petals span:nth-child(2) { top: 25%; right: 0; animation-delay: 0.2s; }
.loader-petals span:nth-child(3) { bottom: 25%; right: 0; animation-delay: 0.4s; }
.loader-petals span:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }
.loader-petals span:nth-child(5) { bottom: 25%; left: 0; animation-delay: 0.8s; }
.loader-petals span:nth-child(6) { top: 25%; left: 0; animation-delay: 1.0s; }
@keyframes petalPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 17, 23, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    list-style: none;
    box-shadow: 0 16px 40px var(--shadow);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 11px 22px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}
.dropdown-menu li a:hover {
    background: var(--accent-muted);
    color: var(--accent);
}
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(143, 188, 143, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(196, 168, 130, 0.04) 0%, transparent 50%);
}
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-lines::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(143, 188, 143, 0.08);
}
.hero-lines::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(143, 188, 143, 0.04);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-content {
    max-width: 560px;
}
.hero-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 6px 14px;
    border: 1px solid rgba(143, 188, 143, 0.25);
    border-radius: 30px;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-primary);
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: background 0.2s ease;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: var(--accent-hover);
}
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.hero-image {
    position: relative;
}
.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 17, 23, 0.5) 100%);
}
.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 24px;
    z-index: 2;
    box-shadow: 0 8px 32px var(--shadow);
}
.hero-image-badge .badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: block;
}
.hero-image-badge .badge-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.3px;
}
.intro-section {
    padding: 96px 0;
    background: var(--bg-secondary);
    position: relative;
}
.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.intro-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}
.intro-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 0;
}
.intro-text p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.85;
}
.intro-text p:last-child {
    margin-bottom: 0;
}
.practices-section {
    padding: 96px 0;
    background: var(--bg-primary);
}
.section-header {
    margin-bottom: 56px;
}
.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}
.practices-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}
.practice-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}
.practice-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.practice-card.featured {
    grid-row: span 2;
}
.practice-image {
    position: relative;
    overflow: hidden;
}
.practice-card.featured .practice-image {
    height: 320px;
}
.practice-card:not(.featured) .practice-image {
    height: 180px;
}
.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.practice-card:hover .practice-image img {
    transform: scale(1.04);
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3px;
}
.practice-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.practice-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.practice-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.35;
}
.practice-card.featured .practice-content h3 {
    font-size: 1.55rem;
}
.practice-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 300;
}
.practice-link {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.practice-link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}
.practice-card:hover .practice-link::after {
    transform: translateX(4px);
}
.practice-link:hover {
    color: var(--accent-hover);
}
.pillars-section {
    padding: 96px 0;
    background: var(--bg-secondary);
    position: relative;
}
.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}
.pillar-item {
    background: var(--bg-tertiary);
    padding: 44px 36px;
    position: relative;
}
.pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(143, 188, 143, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.pillar-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}
.pillar-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 300;
}
.quote-section {
    padding: 96px 0;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(143, 188, 143, 0.05);
}
.quote-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 28px;
}
.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: rgba(143, 188, 143, 0.15);
    line-height: 0.6;
    margin-bottom: 24px;
    display: block;
}
blockquote {
    font-family: 'Lora', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}
.quote-source {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.article-page {
    padding-bottom: 96px;
}
.article-header {
    padding: 64px 0 48px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 28px;
    transition: color 0.2s ease;
    letter-spacing: 0.2px;
}
.back-link::before {
    content: '\2190';
}
.back-link:hover {
    color: var(--accent);
}
.article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.2;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}
.article-hero {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
}
.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-top: -40px;
    display: block;
    box-shadow: 0 24px 64px var(--shadow);
}
.article-hero .image-credit {
    position: static;
    display: block;
    text-align: right;
    margin-top: 8px;
    background: none;
    padding: 0;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.article-body {
    padding: 56px 0;
}
.article-intro {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    line-height: 1.85;
    font-weight: 400;
}
.article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.25;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 22px;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.85;
}
.article-body ul,
.article-body ol {
    margin: 20px 0 24px 24px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 10px;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.75;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(143, 188, 143, 0.3);
    transition: border-color 0.2s ease;
}
.article-body a:hover {
    border-color: var(--accent);
}
.article-callout {
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 32px 0;
}
.article-callout p {
    margin-bottom: 0;
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.05rem;
}
.article-footer-nav {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.article-footer-nav a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.article-footer-nav a:hover {
    color: var(--accent-hover);
}
.about-page,
.contact-page,
.policy-page {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 52px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}
.about-text h2 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.85;
}
.about-text a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(143, 188, 143, 0.3);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
}
.contact-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 12px;
    margin-top: 24px;
}
.contact-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.contact-details p:last-child {
    margin-bottom: 0;
}
.contact-details strong {
    color: var(--text-primary);
    font-weight: 500;
}
.contact-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 12px;
    margin-top: 24px;
}
.contact-note p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 0;
}
.contact-details--top {
    margin-top: 0;
}
.contact-details--spaced {
    margin-top: 24px;
}
.contact-subheading {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-p-spaced {
    margin-top: 16px;
}
.contact-ext-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(143, 188, 143, 0.3);
    transition: border-color 0.2s ease;
}
.contact-ext-link:hover {
    border-color: var(--accent);
}
.policy-content h2 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.policy-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}
.policy-content ul {
    margin: 16px 0 20px 24px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 72px 0 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
    letter-spacing: 0.5px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    font-weight: 300;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 8px;
    font-weight: 300;
}
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 22px 28px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -8px 32px var(--shadow);
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}
.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-primary);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject,
.cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}
.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 14px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 24px 64px var(--shadow);
}
.modal-inner h3 {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    margin-bottom: 28px;
    color: var(--text-primary);
    font-weight: 600;
}
.cookie-option {
    margin-bottom: 22px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 8px;
    margin-left: 30px;
    font-weight: 300;
    line-height: 1.6;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image {
        display: none;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .practices-layout {
        grid-template-columns: 1fr;
    }
    .practice-card.featured {
        grid-row: span 1;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 24px 28px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
        box-shadow: none;
    }
    .dropdown-menu li a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .hero {
        min-height: auto;
    }
    .hero-inner {
        padding: 64px 28px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .article-footer-nav {
        flex-direction: column;
    }
}
