/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Backgrounds */
    --cream: #F5F7F5;
    --white: #FFFFFF;

    /* Dark sections */
    --forest: #0C3D20;
    --forest-mid: #154D2A;

    /* Primary brand green */
    --green: #126836;
    --green-light: #1A8A47;
    --green-bright: #22A856;
    --green-pale: #E8F5EE;

    /* Gold accent */
    --gold: #E6A44E;
    --gold-light: #EDBA76;
    --gold-pale: #FDF3E3;

    /* Neutrals */
    --border: #C8D9CC;
    --text: #122410;
    --text-muted: #4A6352;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    line-height: 1.25;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 72px;
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(12, 61, 32, 0.08);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--forest);
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

.nav-links .nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-links .nav-cta:hover {
    background: var(--green-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(12, 61, 32, 0.1);
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: none;
    background: var(--green);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    margin-top: 12px;
    padding: 14px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: var(--cream);
}

.hero-content {
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 0.6s ease 0.2s forwards;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--forest);
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 0.6s ease 0.35s forwards;
}

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

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 0.6s ease 0.5s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 0.6s ease 0.65s forwards;
}

.hero-cta:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

/* Trust strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 0.6s ease 0.8s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}

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

/* ============================================
   ABOUT ERIC
   ============================================ */
.about {
    background: var(--forest);
    padding: 96px 0;
    color: var(--white);
}

.about-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.about h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 28px;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-headshot {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: 0% 15%;
    border-radius: 12px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--forest-mid);
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 96px 0;
    background: var(--cream);
}

.services .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--forest);
    font-weight: 600;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.service-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--forest);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 28px;
}

.service-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 1rem;
}

.service-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--green);
    margin-top: 2px;
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
    line-height: 1.7;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 96px 0;
    background: var(--white);
}

.process .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    color: var(--forest);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.step-connector {
    display: none;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: var(--gold);
    padding: 56px 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--forest);
    font-weight: 600;
}

.cta-band p {
    color: var(--forest);
    opacity: 0.8;
    margin-top: 4px;
}

.cta-band-btn {
    flex-shrink: 0;
    background: var(--forest);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}

.cta-band-btn:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 96px 0;
    background: var(--cream);
}

.pricing .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--forest);
    color: var(--white);
    border-radius: 20px;
    padding: 56px 48px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-label {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-dollar {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-flat {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--green-bright);
    margin-top: 3px;
}

.pricing-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}

.pricing-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 96px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--forest);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-pale);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: var(--green);
    margin: 0 auto 16px;
}

.form-success h3 {
    font-size: 1.4rem;
    color: var(--forest);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 96px 0;
    background: var(--cream);
}

.faq .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--green);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--forest);
    padding: 48px 0 32px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-brand img {
    height: 32px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-card {
        padding: 36px 28px;
    }

    .pricing-card {
        padding: 44px 32px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-eyebrow,
    .hero h1,
    .hero p,
    .hero-cta,
    .trust-strip {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-cta:hover,
    .cta-band-btn:hover,
    .pricing-cta:hover,
    .form-submit:hover {
        transform: none;
    }

    .faq-question svg {
        transition: none;
    }
}

@media (max-width: 480px) {
    .trust-strip {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }
}
