:root {
    /* Refined Minimal Palette */
    --ink: #0A0A0A;
    --charcoal: #1A1A1A;
    --slate: #505050;
    --stone: #8A8A8A;
    --pearl: #F8F8F8;
    --cloud: #FAFAFA;
    --white: #FFFFFF;
    --accent: #3B82F6;
    --accent-light: #DBEAFE;
    --accent-dark: #1E40AF;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
    --space-4xl: 10rem;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 6px;
}

.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;
    transition: color var(--transition);
    letter-spacing: -0.2px;
}

.nav-menu a:hover {
    color: var(--ink);
}

.btn-contact {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.btn-contact:hover {
    color: var(--accent-dark) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition);
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
    background: transparent;
    color: var(--slate);
}

.btn-ghost:hover {
    color: var(--ink);
    gap: 12px;
}

.btn-light {
    background: var(--white);
    color: var(--ink);
    padding: 16px 32px;
    font-size: 16px;
}

.btn-light:hover {
    background: var(--cloud);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-4xl);
    background: var(--white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: var(--space-xl);
    max-width: 540px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.hero-visual {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.grid-item {
    background: var(--cloud);
    padding: var(--space-lg);
    border-radius: 12px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.grid-item:hover {
    background: var(--white);
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.grid-item-featured {
    grid-column: span 2;
    background: var(--ink);
    color: var(--white);
}

.grid-item-featured:hover {
    background: var(--charcoal);
    border-color: transparent;
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
    letter-spacing: -1px;
}

.metric-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--stone);
    letter-spacing: -0.1px;
}

.grid-item-featured .metric-label {
    color: rgba(255, 255, 255, 0.6);
}

.featured-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.featured-content cite {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Section */
.services {
    padding: var(--space-4xl) 0;
    background: var(--pearl);
}

.section-intro {
    margin-bottom: var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -1.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-light);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 6px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition);
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 12px;
}

/* About Section */
.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.about-text {
    color: var(--slate);
    font-size: 17px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    padding-left: var(--space-md);
    position: relative;
    transition: all var(--transition);
}

.feature-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    transition: height 0.6s ease;
}

.feature-item:hover .feature-line {
    height: 100%;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.3px;
}

.feature-content p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: var(--space-4xl) 0;
    background: var(--pearl);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--space-md);
    letter-spacing: -1.5px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: var(--space-xl);
}

/* Footer */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--ink);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    font-weight: 600;
    font-size: 16px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 360px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: -0.2px;
}

.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: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: var(--space-md);
        font-size: 14px;
    }

    .section-title {
        font-size: 40px;
    }

    .cta-title {
        font-size: 40px;
    }
}
/* Family Moments Section */
.family-moments {
    padding: var(--space-2xl) 0;
}

.moments-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.moment-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.moment-card:first-child {
    grid-row: span 2;
}

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.moment-card:hover img {
    transform: scale(1.08);
}

.moment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.moment-card:hover .moment-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .moments-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .moment-card:first-child {
        grid-row: span 1;
    }
}

/* Hero Image Banner */
.hero-image-banner {
    margin-top: 73px;
    height: 65vh;
    min-height: 550px;
    background: var(--pearl);
}

.banner-grid {
    height: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1px;
    background: var(--gray-200);
}

.banner-image {
    position: relative;
    overflow: hidden;
}

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

.banner-image:hover img {
    transform: scale(1.03);
}

.banner-images-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    background: var(--gray-200);
}

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

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

    .banner-images-stack {
        display: none;
    }
}

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

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

.hero-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-md);
    height: 550px;
}

.hero-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--gray-100);
}

.hero-img-large {
    grid-row: span 2;
}

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

.hero-img:hover img {
    transform: scale(1.03);
}

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

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-images-grid {
        height: 400px;
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr;
    }
    
    .hero-img-large {
        grid-row: span 1;
    }
    
    .hero-img-small:last-child {
        display: none;
    }
}
