@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-warm: #F9F6F0;
    --text-dark: #2C2825;
    --text-muted: #6B635E;
    --accent-gold: #C49A6C;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glow-1: rgba(244, 219, 186, 0.6);
    --glow-2: rgba(228, 190, 161, 0.4);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-warm);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Ambient Orbs */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
.orb-1 {
    top: -10%; left: -5%;
    width: 50vw; height: 50vw;
    background: var(--glow-1);
}
.orb-2 {
    bottom: 10%; right: -10%;
    width: 60vw; height: 60vw;
    background: var(--glow-2);
}
.orb-3 {
    top: 40%; left: 30%;
    width: 30vw; height: 30vw;
    background: var(--glow-1);
}

/* Navigation */
.premium-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(249, 246, 240, 0.98) 0%, rgba(249, 246, 240, 0.7) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 154, 108, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}
.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
}
.nav-brand a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-brand a:hover {
    color: var(--accent-gold);
}
.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    padding-top: 20vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-inline: 5%;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-image-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 10vh;
    box-shadow: 0 30px 60px rgba(44, 40, 37, 0.1);
}

.hero-image {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    display: block;
}

/* Glassmorphism Bar */
.glass-nav-bar {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    white-space: nowrap;
}
.glass-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.glass-link:hover {
    background: rgba(255,255,255,0.7);
}
.glass-btn {
    background: var(--text-dark);
    color: var(--bg-warm);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}
.glass-btn:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 5vh 5% 15vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
    scroll-margin-top: 120px;
}
.feature-card:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.feature-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Footer */
footer {
    text-align: center;
    padding: 8vh 5% 5vh;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .glass-nav-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.5rem;
    }
    .glass-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .hero-title { font-size: 4rem; }
    .hero-image { height: 40vh; }
    .nav-links { display: none; }
}

/* Inner Pages (Privacy, Terms, Support) */
.page-container {
    padding: 25vh 5% 15vh;
    max-width: 800px;
    margin: 0 auto;
}
.page-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.page-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4rem;
}
.prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}
.prose h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}
.prose h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.prose p, .prose ul {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.prose ul {
    padding-left: 1.5rem;
}
.prose li {
    margin-bottom: 0.5rem;
}
.prose a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Closing Breath Section */
.closing-breath {
    padding: 15vh 5% 15vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s ease 0.5s both;
}

.sacred-quote {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--text-dark);
    max-width: 800px;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.trust-container {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    width: 100%;
    max-width: 400px;
}

.trust-anchor {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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