@font-face {
    font-family: 'PT Serif';
    src: url('fonts/PTSerif-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PT Serif';
    src: url('fonts/PTSerif-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'PT Serif';
    src: url('fonts/PTSerif-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'PT Serif';
    src: url('fonts/PTSerif-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
    background-color: #0a0a0a;
    color: #d4d4d4;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 140, 60, 0.15);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2.5rem;
    margin-bottom: 0;
}

nav ul li {
    display: flex;
    align-items: center;
    padding-left: 0;
}
nav ul li::before { content: none; }

/* Nav brand (mobile) */
.nav-brand {
    display: none;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #d4c8b0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-brand img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
}

.nav-brand span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

nav a {
    color: #a09880;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover { color: #d4a84b; }

/* Sections */
section { padding: 6rem 2rem; margin: 0 auto; }

.section-title {
    font-size: 2rem;
    color: #d4a84b;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #7a7265;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at center, #1a1510 0%, #0a0a0a 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/hero.jpg') center center / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-logo { height: 80px; margin-bottom: 2rem; filter: brightness(0) invert(1) opacity(0.8); }

.hero h1 {
    font-size: 3.5rem;
    color: #f0e8d8;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero .title-line {
    width: 60px;
    height: 2px;
    background: #d4a84b;
    margin: 1.5rem auto;
}

.hero p {
    font-size: 1.15rem;
    color: #a09880;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-style: italic;
}

.hero-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid #d4a84b;
    color: #d4a84b;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #d4a84b;
    color: #0a0a0a;
}

/* About */
.about-grid {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: #d4a84b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: #b0a898;
    font-size: 0.95rem;
}

/* Publications */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media (max-width: 1366px) {
    .publications-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .publications-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

.pub-card {
    background: #121212;
    border: 1px solid rgba(180, 140, 60, 0.1);
    padding: 1.8rem;
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
    color: inherit;
    text-decoration: none;
    display: block;
}

.pub-card:hover {
    border-color: rgba(212, 168, 75, 0.3);
    transform: translateY(-2px);
}

.pub-card h3 {
    color: #d4c8b0;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.pub-card p {
    color: #8a8275;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.pub-card .read-more {
    color: #d4a84b;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Goddess Gallery */
.gallery-intro {
    text-align: center;
    color: #b0a898;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
    filter: grayscale(0.6) brightness(0.8);
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #f0e8d8;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay { opacity: 1; }

/* Contact */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-links a {
    color: #a09880;
    text-decoration: none;
    border: 1px solid rgba(180, 140, 60, 0.15);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.contact-links a:hover {
    border-color: #d4a84b;
    color: #d4a84b;
}

/* Footer */
footer {
    border-top: 1px solid rgba(180, 140, 60, 0.1);
    padding: 2.5rem;
    text-align: center;
    color: #5a5245;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

footer .om {
    color: #d4a84b;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* Path blog */
.path-blog { max-width: 800px; margin: 0 auto; }
.path-blog p { margin-bottom: 1.2rem; color: #b0a898; font-size: 0.95rem; line-height: 1.8; }
.path-blog .blog-image { text-align: center; margin: 2.5em 0; }
.path-blog .blog-image img { max-width: 100%; height: auto; border-radius: 4px; filter: grayscale(.4) brightness(.85); transition: filter .5s; }
.path-blog .blog-image img:hover { filter: grayscale(0) brightness(1); }
.path-blog .blog-image .caption { display: block; margin-top: .5em; color: #7a7265; font-style: italic; font-size: .85rem; letter-spacing: .08em; }
.path-blog h3 { color: #d4a84b; font-size: 1.2rem; margin: 1.8em 0 0.8em; }
.path-blog .highlight { border-left: 3px solid #d4a84b; padding: 1em 1.5em; margin: 1.5em 0; background: rgba(212,168,83,0.05); font-style: italic; color: #c0b8a0; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #a09880;
    margin: 5px 0;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Article-specific styles */
.container { max-width: 800px; margin: 0 auto; padding: 100px 24px 60px; }

.article-header { text-align: center; margin-bottom: 2.5em; }
.article-header .line { width: 60px; height: 2px; background: #d4a84b; margin: 1rem auto; }
.article-header .subtitle { color: #7a7265; font-style: italic; font-size: .95rem; }

.article-image { text-align: center; margin: 2em 0; }
.article-image img { max-width: 100%; height: auto; border-radius: 4px; filter: grayscale(.4) brightness(.85); transition: filter .5s; }
.article-image img:hover { filter: grayscale(0) brightness(1); }
.article-image .image-caption { display: block; margin-top: .5em; color: #7a7265; font-style: italic; font-size: .85rem; letter-spacing: .08em; }

.back-link { display: block; text-align: center; margin-top: 3em; padding-bottom: 4rem; }
.back-link a { color: #d4a84b; text-decoration: none; letter-spacing: .1em; font-size: .9rem; }
.back-link a:hover { text-decoration: underline; }

/* Article headings */
h1 { font-size: 2em; color: #d4a84b; text-align: center; margin-bottom: .3em; font-weight: 700; line-height: 1.3; }
h2 { font-size: 1.35em; color: #d4a84b; margin-bottom: .5em; font-weight: 700; }
h3 { font-size: 1.1em; color: #c49a3c; margin-top: 1.4em; margin-bottom: .4em; font-weight: 700; }

/* Article content */
p { margin-bottom: .85em; font-size: 1rem; }
p.list-intro { margin-bottom: .3em; font-weight: 700; color: #d4c8b0; }
ul { list-style: none; padding-left: 1.2em; margin-bottom: 1em; }
li { position: relative; padding-left: 1.2em; margin-bottom: .3em; font-size: 1rem; }
li::before { content: "\2014"; position: absolute; left: 0; color: #d4a84b; }
blockquote { border-left: 3px solid #d4a84b; margin: 1em 1.5em; padding: .6em 1.2em; background: rgba(212,168,83,.05); font-style: italic; color: #c0b8a0; }

/* Media queries */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    nav { position: fixed; height: 60px; justify-content: space-between; padding: 0 1rem; }
    .nav-brand { display: flex; max-width: 65%; }
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        height: auto;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid rgba(180, 140, 60, 0.15);
    }
    nav ul.open { display: flex; }
    nav ul li { width: 100%; text-align: center; }
    nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(180, 140, 60, 0.05);
    }
    .hero h1 { font-size: 2rem; }
    section { padding: 4rem 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .container { padding: 80px 16px 40px; }
    h1 { font-size: 1.5em; }
}

/* Programs page */
.programs-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 1rem;
    background: radial-gradient(ellipse at center, #1a1510 0%, #0a0a0a 70%);
}
.programs-hero h1 { font-size: 2.8rem; }
.programs-hero p { max-width: 650px; margin: 1rem auto; color: #a09880; font-style: italic; }

.program-card {
    max-width: 860px;
    margin: 3rem auto;
    background: #121212;
    border: 1px solid rgba(180, 140, 60, 0.12);
    border-radius: 6px;
    padding: 2.5rem;
    transition: border-color 0.3s;
}
.program-card:hover { border-color: rgba(212, 168, 75, 0.3); }

.program-card .level,
.testimonial-card .level {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #d4a84b;
    padding: 0.25rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.testimonial-card .level { margin-top: 0.25rem; margin-bottom: 0.75rem; }
.program-card h2 { color: #d4c8b0; font-size: 1.5rem; margin-bottom: 0.5rem; }
.program-card .subtitle { color: #7a7265; font-style: italic; font-size: 0.95rem; margin-bottom: 1.5rem; }

.program-card .price-block {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(212, 168, 75, 0.06);
    border-radius: 4px;
}
.price-block .price { font-size: 2rem; color: #d4a84b; font-weight: 700; }
.price-block .period { color: #8a8275; font-size: 0.9rem; }

.program-card h3 { color: #d4a84b; font-size: 1.1rem; margin: 1.5rem 0 0.8rem; }
.program-card ul { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.program-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #b0a898;
    font-size: 0.92rem;
}
.program-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #d4a84b;
}
.program-card p { color: #b0a898; font-size: 0.95rem; margin-bottom: 0.8rem; }

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(180, 140, 60, 0.1);
    margin-top: 3rem;
}
.cta-section p { color: #8a8275; margin-bottom: 1.5rem; }

.testimonials-link-section {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.testimonials-link-section p { color: #8a8275; margin-bottom: 1.5rem; }

.programs-section { max-width: 960px; margin: 0 auto; padding: 0.5rem 2rem 4rem; }
.programs-hero .title-line { margin: 1rem auto; }
.footer-credit { margin-top: 0.5rem; font-style: italic; }
.footer-privacy { margin-top: 0.5rem; font-size: 0.8rem; }
.footer-privacy a { color: #5a5245; text-decoration: none; }
.footer-privacy a:hover { text-decoration: underline; }

/* Quote section */
.quote-section {
    background: #0f0f0f;
    max-width: none;
    padding: 5rem 2rem;
}
.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #c0b8a0;
    line-height: 1.8;
}
.quote-author {
    color: #d4a84b;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Testimonials page */
.testimonials-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem 2rem 4rem;
}
.testimonial-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}
.testimonial-name {
    color: #d4a84b;
    font-weight: 700;
    font-size: 1.05rem;
}
.testimonial-program {
    color: #5a5245;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.testimonial-text {
    color: #b0a898;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA index section */
.cta-index {
    background: #121212;
    max-width: none;
    padding: 3rem 2rem;
}
.cta-index-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.cta-index-text {
    color: #b0a898;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Contact */
.contact-intro {
    color: #8a8275;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .programs-hero h1 { font-size: 1.8rem; }
    .program-card { padding: 1.5rem; }
}
