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

:root {
    --ink: #0f0f0d;
    --stone: #6b6b64;
    --mist: #f5f4f0;
    --cream: #faf9f6;
    --gold: #b8924a;
    --gold-light: #e8d5b0;
    --white: #ffffff;
    --border: #e2e0d8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: fadeDown 0.7s ease both;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
}

    .logo span {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--stone);
        text-decoration: none;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--ink);
        }

.nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: var(--gold) !important;
        color: var(--white) !important;
    }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, var(--gold-light) 0%, transparent 70%), var(--cream);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.2s ease both;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 1.8rem;
    animation: fadeUp 0.7s 0.35s ease both;
}

    h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--stone);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.8rem;
    animation: fadeUp 0.7s 0.5s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeUp 0.7s 0.65s ease both;
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--gold);
        transform: translateY(-1px);
    }

.btn-secondary {
    color: var(--stone);
    font-size: 0.88rem;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    letter-spacing: 0.02em;
    transition: color 0.2s, border-color 0.2s;
}

    .btn-secondary:hover {
        color: var(--ink);
        border-color: var(--ink);
    }

/* TRUST BAR */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    animation: fadeUp 0.7s 0.8s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--stone);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.trust-icon {
    font-size: 1rem;
}

/* STATS */
.stats {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.stat {
    padding: 3rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

    .stat:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.5rem;
}

    .stat-num span {
        color: var(--gold);
    }

.stat-label {
    font-size: 0.82rem;
    color: var(--stone);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
}

/* PRODUCTS */
.section {
    padding: 7rem 4rem;
}

.section-header {
    max-width: 560px;
    margin-bottom: 4rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--stone);
    font-weight: 300;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
}

.product-card {
    background: var(--cream);
    padding: 2.8rem 2.5rem;
    transition: background 0.25s;
    cursor: default;
}

    .product-card:hover {
        background: var(--white);
    }

.product-icon {
    width: 40px;
    height: 40px;
    background: var(--mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.8rem;
}

.product-card p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.65;
    font-weight: 300;
}

.product-rate {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* HOW IT WORKS */
.how-bg {
    background: var(--ink);
}

    .how-bg .section-tag {
        color: var(--gold);
    }

    .how-bg h2 {
        color: var(--white);
    }

    .how-bg .section-desc {
        color: rgba(255,255,255,0.5);
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    position: relative;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: 1rem;
}

.step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    font-weight: 300;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .testimonial:hover {
        border-color: var(--gold-light);
        box-shadow: 0 4px 24px rgba(184,146,74,0.08);
    }

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone);
    flex-shrink: 0;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
}

.author-biz {
    font-size: 0.78rem;
    color: var(--stone);
    font-weight: 300;
}

/* CTA */
.cta-section {
    padding: 8rem 4rem;
    text-align: center;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

    .cta-section h2 {
        margin: 0 auto 1.5rem;
        max-width: 600px;
    }

    .cta-section p {
        color: var(--stone);
        font-size: 1rem;
        font-weight: 300;
        margin-bottom: 3rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-form {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 0.95rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

    .cta-input:focus {
        border-color: var(--gold);
    }

    .cta-input::placeholder {
        color: var(--stone);
    }

/* FOOTER */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

    .footer-logo span {
        color: var(--gold);
    }

.footer-links {
    display: flex;
    gap: 2rem;
}

    .footer-links a {
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--white);
        }

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 7rem 2rem 4rem;
    }

    .trust-bar {
        gap: 1.5rem;
        padding: 1.2rem 2rem;
        flex-wrap: wrap;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 5rem 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
