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

:root {
    --sage: #8FA989;
    --sage-dark: #6B8268;
    --sage-light: #A8BFA3;
    --cream: #F5F2EB;
    --cream-dark: #E8DCC4;
    --ink: #1A3A2E;
    --ink-light: #2D4A3D;
    --gray: #5A6B5F;
    --white: #FEFEFE;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background-color: var(--cream);
    line-height: 1.5;
    position: relative;
}

/* Grain texture */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 2rem 0;
}

.nav.scrolled {
    background-color: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(26, 58, 46, 0.08);
}

.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-text {
    display: inline-block;
    max-width: 100px;
    opacity: 1;
    transition: max-width 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.nav.scrolled .logo-text {
    max-width: 0;
    opacity: 0;
    margin: 0;
}

.logo-accent {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--sage);
    margin-right: -0.05em;
    font-weight: 400;
    transition: margin 0.4s ease;
}

.nav.scrolled .logo-accent {
    margin-right: 0.1em;
}

.nav.scrolled .logo-accent:last-of-type {
    margin-right: 0;
}

.nav-status {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-left: 1rem;
}

.nav-status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--sage);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    perspective: 2000px;
    perspective-origin: 50% 50%;
}

/* Solar System */
.solar-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    opacity: 0.35;
    transition: opacity 0.1s ease-out;
    transform-style: preserve-3d;
}

/* Sun */
.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 35%, #ffd97d 0%, var(--sage-light) 50%, var(--sage) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(143, 169, 137, 0.6),
        0 0 60px rgba(143, 169, 137, 0.4),
        0 0 90px rgba(143, 169, 137, 0.2),
        0 20px 40px rgba(26, 58, 46, 0.3);
    animation: sunPulse 6s ease-in-out infinite;
    z-index: 10;
    transition: all 0.1s ease-out;
    will-change: transform;
    filter: drop-shadow(0 10px 20px rgba(143, 169, 137, 0.4));
}

.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: sunRotate 20s linear infinite;
}

@keyframes sunPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px rgba(143, 169, 137, 0.6),
            0 0 60px rgba(143, 169, 137, 0.4),
            0 0 90px rgba(143, 169, 137, 0.2);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 
            0 0 40px rgba(143, 169, 137, 0.7),
            0 0 70px rgba(143, 169, 137, 0.5),
            0 0 100px rgba(143, 169, 137, 0.3);
    }
}

@keyframes sunRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--sage);
    border-radius: 50%;
    opacity: 0.12;
    transition: all 0.1s ease-out;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 120px;
    height: 120px;
    animation: rotate 12s linear infinite;
}

.orbit-2 {
    width: 180px;
    height: 180px;
    animation: rotate 20s linear infinite;
}

.orbit-3 {
    width: 260px;
    height: 260px;
    animation: rotate 30s linear infinite;
}

.orbit-4 {
    width: 350px;
    height: 350px;
    animation: rotate 45s linear infinite;
}

.orbit-5 {
    width: 520px;
    height: 520px;
    animation: rotate 85s linear infinite;
}

.orbit-6 {
    width: 680px;
    height: 680px;
    animation: rotate 120s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Planets Base */
.planet {
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: filter 0.3s ease, transform 0.1s ease-out;
    will-change: transform;
    transform-style: preserve-3d;
}

.planet:hover {
    filter: brightness(1.3);
}

.planet-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: planetRotate 8s linear infinite;
    overflow: hidden;
}

@keyframes planetRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mercury */
.mercury {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 35% 30%, #b8b8b8, #6d6d6d);
    box-shadow: 
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(109, 109, 109, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Venus */
.venus {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 35% 30%, #f4d9a6, #c49954);
    box-shadow: 
        inset -2px -2px 4px rgba(0, 0, 0, 0.2),
        0 0 10px rgba(196, 153, 84, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

/* Earth */
.earth {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 30%, #6b93d6, #2d5aa8, #134074);
    box-shadow: 
        inset -3px -3px 6px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(45, 90, 168, 0.6),
        0 12px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    filter: drop-shadow(0 6px 12px rgba(45, 90, 168, 0.3));
}

.earth .planet-surface::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(76, 139, 89, 0.6) 20%, 
        transparent 40%,
        transparent 60%,
        rgba(76, 139, 89, 0.6) 80%, 
        transparent 100%);
}

/* Moon */
.moon-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    animation: rotate 8s linear infinite;
}

.moon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(circle at 40% 30%, #e8e8e8, #9a9a9a);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(158, 158, 158, 0.4);
}

/* Mars */
.mars {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 35% 30%, #e27b58, #c1440e);
    box-shadow: 
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(193, 68, 14, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 5px 10px rgba(193, 68, 14, 0.2));
}

/* Asteroid Belt */
.asteroid-belt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 430px;
    transition: all 0.1s ease-out;
    will-change: transform, opacity;
}

.asteroid {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background: var(--gray);
    border-radius: 50%;
    opacity: 0.4;
    transform-origin: 0 0;
    animation: asteroidOrbit 60s linear infinite;
    animation-delay: var(--delay);
    transform: 
        translate(-50%, -50%) 
        rotate(var(--angle)) 
        translateX(215px);
}

@keyframes asteroidOrbit {
    from { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(215px); }
    to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateX(215px); }
}

/* Jupiter */
.jupiter {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 30%, #d4a574, #b8845e, #8b6841);
    box-shadow: 
        inset -4px -4px 8px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(184, 132, 94, 0.6),
        0 16px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    filter: drop-shadow(0 8px 16px rgba(139, 104, 65, 0.3));
}

.jupiter-bands {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        linear-gradient(to bottom,
            transparent 0%,
            rgba(139, 104, 65, 0.3) 15%,
            transparent 20%,
            transparent 35%,
            rgba(139, 104, 65, 0.3) 40%,
            transparent 45%,
            transparent 60%,
            rgba(139, 104, 65, 0.3) 65%,
            transparent 70%,
            transparent 85%,
            rgba(139, 104, 65, 0.3) 90%,
            transparent 95%
        );
    animation: jupiterBands 15s linear infinite;
}

@keyframes jupiterBands {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Saturn */
.saturn {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 35% 30%, #f4e7c4, #d9b982, #c49954);
    box-shadow: 
        inset -4px -4px 8px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(217, 185, 130, 0.5),
        0 14px 28px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 7px 14px rgba(196, 153, 84, 0.25));
}

.saturn-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(196, 153, 84, 0.4);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 5px rgba(196, 153, 84, 0.3),
        0 0 8px rgba(196, 153, 84, 0.2);
    z-index: 1;
}

.saturn-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border: 2px solid rgba(196, 153, 84, 0.25);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}


.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 540px;
}

/* Services */
.services {
    padding: 12rem 0 8rem;
    border-top: 1px solid rgba(26, 58, 46, 0.1);
    position: relative;
}

.services-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-marker {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4rem;
}

.services .section-marker {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.services .section-marker.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-header .section-marker {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-header.visible .section-marker {
    opacity: 1;
    transform: translateY(0);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(26, 58, 46, 0.08);
    position: relative;
    transition: background 0.5s ease;
}

.service-item.typing {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(143, 169, 137, 0.02) 50%, 
        transparent 100%);
}

.service-item h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    position: relative;
}

.service-item h3::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1.5rem;
    background-color: var(--sage);
    margin-left: 0.25rem;
    animation: none;
    opacity: 0;
    vertical-align: middle;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-item.typing h3::after {
    opacity: 1;
    animation: blink 1s infinite;
}

.service-item.evaporating h3::after {
    animation: evaporate 0.6s ease forwards !important;
    opacity: 1;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes evaporate {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-5px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-15px) scale(0.5);
    }
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 800px;
    position: relative;
}

/* Word reveal animation */
.service-item h3 .word,
.service-item p .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    margin-right: 0.28em;
    white-space: pre;
}

.service-item h3 .word:last-child,
.service-item p .word:last-child {
    margin-right: 0;
}

.service-item h3 .word.predicted {
    opacity: 0.25;
    color: var(--sage-light);
    transform: translateY(0);
    animation: prediction-shimmer 0.4s ease;
}

.service-item p .word.predicted {
    opacity: 0.2;
    color: var(--sage);
    transform: translateY(0);
    animation: prediction-shimmer 0.4s ease;
}

.service-item h3 .word.confirmed,
.service-item p .word.confirmed {
    opacity: 1;
    color: inherit;
    transform: translateY(0);
    animation: word-confirm 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes prediction-shimmer {
    0% {
        opacity: 0;
        transform: translateY(5px) scale(0.95);
    }
    50% {
        opacity: 0.35;
    }
    100% {
        opacity: 0.25;
        transform: translateY(0) scale(1);
    }
}

@keyframes word-confirm {
    0% {
        opacity: 0.25;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Suggestion box effect */
.service-item .suggestion-box {
    position: absolute;
    background: rgba(143, 169, 137, 0.08);
    border: 1px solid rgba(143, 169, 137, 0.2);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--sage);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.service-item .suggestion-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Statement */
.statement {
    padding: 12rem 0;
    background-color: var(--cream-dark);
}

.statement-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
}

.statement-quote {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-style: italic;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
    border-left: 3px solid var(--sage);
    padding-left: 3rem;
}

/* Approach */
.approach {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
}

.approach-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.approach-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-year {
    font-size: 5rem;
    font-weight: 300;
    color: rgba(26, 58, 46, 0.06);
    letter-spacing: -0.03em;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    perspective: 1500px;
}

.approach-item {
    position: relative;
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    padding: 2.5rem;
    margin: -2.5rem;
    border-radius: 12px;
}

.approach-item.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.approach-item:nth-child(1).visible {
    transition-delay: 0.1s;
}

.approach-item:nth-child(2).visible {
    transition-delay: 0.3s;
}

.approach-item:nth-child(3).visible {
    transition-delay: 0.5s;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(143, 169, 137, 0.03), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.approach-item:hover::before {
    opacity: 1;
}

.approach-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 58, 46, 0.1);
}

.approach-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--sage);
    opacity: 0.3;
    font-style: italic;
    margin-bottom: 1.5rem;
    display: inline-block;
    transform: scale(0.5) rotate(-45deg);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
    transform-origin: left center;
}

.approach-item.visible .approach-number {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
}

.approach-item:hover .approach-number {
    opacity: 0.6;
    transform: scale(1.1) rotate(5deg);
}

.approach-item h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.approach-item.visible h4 {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.approach-item:nth-child(2).visible h4 {
    transition-delay: 0.4s;
}

.approach-item:nth-child(3).visible h4 {
    transition-delay: 0.6s;
}

.approach-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray);
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.approach-item.visible p {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.approach-item:nth-child(2).visible p {
    transition-delay: 0.6s;
}

.approach-item:nth-child(3).visible p {
    transition-delay: 0.8s;
}

/* Approach background elements */
.approach-bg-elements {
    transition: opacity 1s ease;
}

.approach-inner {
    position: relative;
    z-index: 1;
}

/* CTA */
.cta {
    padding: 12rem 0;
    background-color: var(--ink);
    color: var(--cream);
}

.cta-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.cta-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-style: italic;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background-color: var(--sage);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--sage);
}

.cta-arrow {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(26, 58, 46, 0.1);
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
}

.footer-copyright {
    font-size: 0.7rem;
    color: var(--sage-dark);
    letter-spacing: 0.02em;
}


/* Responsive */
@media (max-width: 1200px) {
    .nav-inner,
    .hero-content,
    .services-inner,
    .approach-inner,
    .cta-inner,
    .footer-inner {
        padding: 0 3rem;
    }


    .approach-grid {
        gap: 4rem;
    }

    .cta-grid {
        gap: 5rem;
    }
}

@media (max-width: 900px) {
    .nav-inner,
    .hero-content,
    .services-inner,
    .statement-content,
    .approach-inner,
    .cta-inner,
    .footer-inner {
        padding: 0 2rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .solar-system {
        width: 600px;
        height: 600px;
    }

    .sun {
        width: 45px;
        height: 45px;
    }

    .orbit-1 { width: 90px; height: 90px; }
    .orbit-2 { width: 135px; height: 135px; }
    .orbit-3 { width: 195px; height: 195px; }
    .orbit-4 { width: 260px; height: 260px; }
    .orbit-5 { width: 390px; height: 390px; }
    .orbit-6 { width: 510px; height: 510px; }

    .asteroid-belt {
        width: 320px;
        height: 320px;
    }

    .asteroid {
        transform: 
            translate(-50%, -50%) 
            rotate(var(--angle)) 
            translateX(160px);
    }

    .jupiter { width: 22px; height: 22px; }
    .saturn { width: 18px; height: 18px; }
    .saturn-ring { width: 32px; height: 32px; }

    .approach-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-item {
        padding: 2rem;
        margin: -2rem;
    }
    
    .approach-item:hover {
        transform: translateY(0) scale(1);
        box-shadow: none;
    }

    .statement-quote {
        padding-left: 2rem;
    }

}

@media (max-width: 640px) {
    .solar-system {
        width: 400px;
        height: 400px;
    }

    .sun {
        width: 35px;
        height: 35px;
    }

    .orbit-1 { width: 70px; height: 70px; }
    .orbit-2 { width: 105px; height: 105px; }
    .orbit-3 { width: 150px; height: 150px; }
    .orbit-4 { width: 200px; height: 200px; }
    .orbit-5 { width: 300px; height: 300px; }
    .orbit-6 { width: 380px; height: 380px; }

    .mercury { width: 6px; height: 6px; }
    .venus { width: 9px; height: 9px; }
    .earth { width: 10px; height: 10px; }
    .mars { width: 8px; height: 8px; }
    .jupiter { width: 18px; height: 18px; }
    .saturn { width: 15px; height: 15px; }

    .moon-orbit { width: 20px; height: 20px; }
    .moon { width: 3px; height: 3px; }

    .saturn-ring { width: 26px; height: 26px; border-width: 2px; }

    .asteroid-belt {
        width: 240px;
        height: 240px;
    }

    .asteroid {
        width: 2px;
        height: 2px;
        transform: 
            translate(-50%, -50%) 
            rotate(var(--angle)) 
            translateX(120px);
    }

    .approach-year {
        font-size: 3rem;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .orbit,
    .sun,
    .sun-core,
    .planet-surface,
    .moon-orbit,
    .asteroid,
    .jupiter-bands,
    .nav-status::before {
        animation: none !important;
    }
    
    .approach-item,
    .approach-header,
    .approach-number {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
    
    .approach-item.visible,
    .approach-header.visible {
        opacity: 1;
    }
    
    .approach-bg-elements {
        display: none !important;
    }
    
    .service-item h3::after {
        animation: none !important;
        opacity: 0 !important;
    }
    
    .service-item h3 .word,
    .service-item p .word {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    .suggestion-box {
        display: none !important;
    }
}

::selection {
    background-color: var(--sage);
    color: var(--cream);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 4px;
}
