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

:root {
    --bg-dark: #121110;
    --gold: #C9A227;
    --ivory: #F2EDE4;
    --copper: #B0714A;
    --smoke: #8A8578;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

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

/* Typography */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: 1px; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--gold); padding-bottom: 1rem; display: inline-block;}
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--gold); }
em { font-style: italic; color: var(--gold); }

.micro-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--smoke);
    margin-bottom: 1rem;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text { font-size: 1.8rem; letter-spacing: 2px; }

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}
.btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}
.btn-solid {
    background: var(--gold);
    color: var(--bg-dark);
}
.btn-solid:hover {
    background: var(--ivory);
    border-color: var(--ivory);
}

/* Sections */
section {
    padding: 6rem 5%;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.hero {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    background: radial-gradient(circle at center, rgba(176, 113, 74, 0.1) 0%, transparent 60%);
}
.hero p {
    font-size: 1.2rem;
    color: var(--ivory);
    max-width: 600px;
    margin: 0 0 3rem 0;
    font-weight: 300;
}
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.hero-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(201,162,39,0.3);
}
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 2rem;
    }
    .hero p {
        margin: 0 auto 3rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-wrapper {
        justify-content: center;
        margin-top: 2rem;
    }
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.card {
    padding: 2.5rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.4s, border-color 0.4s;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.icon-svg { margin-bottom: 1.5rem; stroke: var(--gold); }

/* Pricing */
.price { font-family: var(--font-heading); font-size: 3rem; margin: 1rem 0; color: var(--ivory); }
.price span { font-size: 1rem; font-family: var(--font-body); color: var(--smoke); }
.price-card ul { list-style: none; margin-bottom: 2.5rem; }
.price-card li { margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; color: var(--smoke); }

/* FAQ & Reviews */
.review-text { font-family: var(--font-heading); font-style: italic; font-size: 1.4rem; color: var(--ivory); }
.review-author { margin-top: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.faq-item { margin-bottom: 2rem; border-bottom: 1px solid rgba(201, 162, 39, 0.2); padding-bottom: 1.5rem; }

/* Sub-pages */
.page-content { max-width: 800px; margin: 4rem auto; padding: 0 5%; }
.page-content p, .page-content ul { margin-bottom: 1.5rem; color: var(--smoke); font-weight: 300; }
.page-content ul { padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    text-align: center;
}
.footer-links {
    display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.copyright { color: var(--smoke); font-size: 0.8rem; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: fadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    header { flex-direction: column; gap: 1.5rem; }
    nav { flex-wrap: wrap; justify-content: center; }
}

/* Article Navigation & Floating Actions */
.article-nav {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article-nav-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--smoke);
    display: block;
    margin-bottom: 0.5rem;
}
.article-nav-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    transition: color 0.3s;
}
.article-nav a:hover .article-nav-title {
    color: var(--ivory);
}
.article-nav a { display: block; text-decoration: none; }
.next-article-box { text-align: right; margin-left: auto; }

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.fab {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}
.fab:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}
