/* --- VARIABLE & ROOT SETUP --- */
:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --color-background: #F7F5F2; /* Alabaster */
    --color-text: #333333; /* Charcoal */
    --color-gold: #B9975B;
    --color-maroon: #810000;
    --color-amethyst: #9B5DE5;
    --color-white: #FFFFFF;
}

/* --- GLOBAL STYLES & RESETS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--color-gold); }
p { font-size: 1rem; margin-bottom: 1rem; font-weight: 300; }

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

/* --- HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(247, 245, 242, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: background-color 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.main-header nav a {
    margin-left: 2rem;
    font-weight: 400;
}

/* --- BUTTONS --- */
.cta-button-main, .cta-button-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cta-button-main {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}
.cta-button-main:hover {
    background-color: var(--color-maroon);
    border-color: var(--color-maroon);
    transform: translateY(-3px);
}
.cta-button-outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}
.cta-button-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 5%;
}
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}
#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero::after { /* Overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.hero-content {
    max-width: 800px;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* --- CONTENT SECTIONS --- */
.content-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pain Points Section */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}
.point p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Sacred Divider */
.sacred-divider {
    text-align: center;
    opacity: 0.5;
}
.sacred-divider img {
    width: 100%;
    max-width: 200px;
}


/* Featured Section */
.featured-section {
    background-color: rgba(185, 151, 91, 0.05); /* Faint gold bg */
    text-align: center;
}
.featured-content {
    max-width: 800px;
    margin: 0 auto;
}
.featured-content h2 { color: var(--color-maroon); }

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}
.price-tier {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.price-tier.featured {
    border: 2px solid var(--color-gold);
    transform: scale(1.05);
}
.price-tier .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-maroon);
    margin-bottom: 0.5rem;
}
.price-tier .per-month { font-size: 1rem; color: var(--color-text); }
.price-tier ul { list-style: none; margin: 2rem 0; }
.price-tier ul li { margin-bottom: 0.75rem; }
.featured-badge {
    background: var(--color-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* --- FOOTER --- */
.main-footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: var(--color-text);
    color: var(--color-background);
}
.main-footer a { color: var(--color-background); }

/* --- ANIMATIONS --- */
.fade-in {
    animation: fadeInAnimation 1s ease-in forwards;
}
@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .main-header nav { display: none; /* Add hamburger menu logic with JS */ }
    .price-tier.featured { transform: scale(1); }
}