:root {
    --color-charcoal: #1a1a1a;
    --color-cream: #faf8f5;
    --color-sage: #5a7a6a;
    --color-sage-light: #7a9a8a;
    --color-sage-dark: #3a5a4a;
    --color-border: #e5e3df;
    --color-text-muted: #666;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--color-sage);
}

.nav {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-charcoal);
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-sage);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-sage);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-smooth);
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-cream);
}

.btn-primary:hover {
    background-color: var(--color-sage-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 122, 106, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
}

.btn-secondary:hover {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    padding: 12rem 0 8rem;
    margin-top: 5rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-sage);
    margin-bottom: 2.5rem;
    animation: expandWidth 0.6s ease-out;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    max-width: 750px;
}

.hero-supporting {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Sections */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-alt {
    background-color: #ffffff;
}

.section-header {
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-title.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem 2.5rem;
    margin-top: 4rem;
}

.outcome-card {
    position: relative;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.outcome-card:nth-child(1) { animation-delay: 0.1s; }
.outcome-card:nth-child(2) { animation-delay: 0.2s; }
.outcome-card:nth-child(3) { animation-delay: 0.3s; }
.outcome-card:nth-child(4) { animation-delay: 0.4s; }
.outcome-card:nth-child(5) { animation-delay: 0.5s; }

.outcome-card:hover {
    transform: translateY(-4px);
}

.outcome-card:hover .outcome-number {
    color: var(--color-sage);
}

.outcome-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.outcome-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.outcome-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 868px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.intro-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.check-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 500;
}

/* Qualities Grid */
.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.quality-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.quality-card:nth-child(1) { animation-delay: 0.1s; }
.quality-card:nth-child(2) { animation-delay: 0.2s; }
.quality-card:nth-child(3) { animation-delay: 0.3s; }
.quality-card:nth-child(4) { animation-delay: 0.4s; }

.quality-card:hover {
    border-color: var(--color-sage);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(90, 122, 106, 0.1);
}

.quality-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.quality-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem 3rem;
}

.process-step {
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
    line-height: 1;
    opacity: 0.6;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border);
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Final CTA */
.final-cta {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
}

.cta-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.cta-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-sage);
    margin: 0 auto 2.5rem;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

.cta-supporting {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(250, 248, 245, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-secondary {
    border-color: var(--color-cream);
    color: var(--color-cream);
}

.final-cta .btn-secondary:hover {
    background-color: var(--color-cream);
    color: var(--color-charcoal);
}

/* Contact */
.contact-content {
    max-width: 600px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 500;
}

.contact-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-sage);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-sage-dark);
}

.contact-text {
    font-size: 1.15rem;
    color: var(--color-charcoal);
}

/* Footer */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-copyright {
    font-size: 0.95rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.6);
}

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

.footer-link {
    font-size: 0.9rem;
    color: var(--color-cream);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-sage-light);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }

    .hero {
        padding: 8rem 0 5rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .qualities-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid var(--color-sage);
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }
}
