:root {
    /* Editorial Palette */
    --ink: #1a1a1a;
    --charcoal: #2d2d2d;
    --slate: #4a4a4a;
    --stone: #757575;
    --silver: #e5e5e5;
    --pearl: #f5f5f5;
    --ivory: #fafafa;
    --accent-sage: #8b9d83;
    --accent-clay: #c9a688;
    --accent-ocean: #7991a3;

    /* Typography */
    --font-serif: 'Crimson Pro', serif;
    --font-sans: 'Work Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: white;
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--silver);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.brand-number {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.brand-divider {
    width: 1px;
    height: 24px;
    background: var(--slate);
}

.brand-name {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--ink);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-sage);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--ink);
    color: white !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 140px 0 var(--space-3xl);
    background: white;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-content {
    max-width: 800px;
    margin-bottom: var(--space-3xl);
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-sage);
    margin-bottom: var(--space-md);
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-title-accent {
    font-style: italic;
    color: var(--accent-sage);
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-sage);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: expandWidth 1s ease-out 0.5s forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-lead {
    font-size: 22px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: var(--space-xl);
    max-width: 680px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--ink);
    color: white;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-text {
    color: var(--slate);
    padding: 0;
}

.btn-text:hover {
    color: var(--ink);
    gap: var(--space-sm);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
}

.btn-dark {
    background: white;
    color: var(--ink);
    border-radius: 2px;
    font-size: 18px;
    padding: 18px 40px;
}

.btn-dark:hover {
    background: var(--pearl);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Hero Stats */
.hero-stats-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-card {
    padding: var(--space-lg);
    border: 1px solid var(--silver);
    background: white;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: var(--accent-sage);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card-large {
    grid-column: span 1;
    background: var(--ivory);
    display: flex;
    align-items: center;
}

.stat-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.stat-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--stone);
    font-style: normal;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}

.section-intro {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.section-number {
    font-family: var(--font-serif);
    font-size: 120px;
    font-weight: 700;
    color: var(--silver);
    line-height: 1;
}

.section-header {
    padding-top: var(--space-md);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

.section-description {
    font-size: 20px;
    color: var(--slate);
    line-height: 1.7;
    max-width: 600px;
}

.services-list {
    display: grid;
    gap: 1px;
    background: var(--silver);
}

.service-item {
    background: white;
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-xl);
    transition: all 0.4s ease;
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--accent-sage);
    transition: width 0.4s ease;
}

.service-item:hover {
    padding-left: calc(var(--space-xl) + 8px);
}

.service-item:hover::before {
    width: 4px;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    color: var(--pearl);
    line-height: 1;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-sage);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--ink);
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.about-content {
    padding-right: var(--space-xl);
}

.about-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-sage);
    margin-bottom: var(--space-lg);
}

.about-text {
    margin-bottom: var(--space-xl);
}

.about-text p {
    font-size: 18px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.feature-box {
    padding: var(--space-lg);
    border: 1px solid var(--silver);
    transition: all 0.4s ease;
}

.feature-box:hover {
    border-color: var(--accent-sage);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--ink);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: var(--ink);
    color: white;
    transform: rotate(-10deg);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
}

.feature-text {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.process-step {
    position: relative;
    padding-top: var(--space-lg);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--silver);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-header {
    margin-bottom: var(--space-md);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 700;
    color: var(--pearl);
    line-height: 1;
    margin-bottom: var(--space-sm);
    transition: color 0.4s ease;
}

.process-step:hover .step-number {
    color: var(--accent-sage);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 400px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-intro {
        grid-template-columns: 1fr;
    }

    .section-number {
        font-size: 72px;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: var(--space-md);
        font-size: 13px;
    }
}
/* Family Stories Section */
.family-stories {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}

.stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-md);
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}

.story-large {
    grid-row: span 2;
    aspect-ratio: 3/4;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-image:hover .story-overlay {
    opacity: 1;
}

.story-caption {
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-large {
        grid-row: span 1;
    }
}

/* Hero Banner */
.hero-banner {
    margin-top: 73px;
    height: 60vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2px;
    height: 100%;
    background: var(--charcoal);
}

.hero-image-main,
.hero-image-secondary {
    position: relative;
    overflow: hidden;
}

.hero-image-main img,
.hero-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.hero-image-main:hover img,
.hero-image-secondary:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 50vh;
        min-height: 400px;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }

    .hero-image-secondary {
        display: none;
    }
}

/* Hero Side Images */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-image-side {
    position: relative;
}

.side-image-grid {
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: var(--space-md);
    height: 600px;
}

.side-image-main,
.side-image-small {
    position: relative;
    overflow: hidden;
    background: var(--pearl);
}

.side-image-main img,
.side-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.side-image-main:hover img,
.side-image-small:hover img {
    transform: scale(1.05);
}

.hero-stats-section {
    margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .side-image-grid {
        height: 400px;
    }
}
