:root {
    /* Premium Color Palette */
    --sage-600: hsl(145, 15%, 42%);
    --sage-700: hsl(145, 15%, 32%);
    --sage-800: hsl(145, 15%, 22%);
    
    --sand-100: hsl(43, 85%, 95%);
    --sand-200: hsl(43, 50%, 90%);
    --sand-500: hsl(30, 45%, 65%);
    --sand-600: hsl(30, 45%, 55%);
    
    --charcoal: hsl(145, 10%, 15%);
    --off-white: hsl(43, 20%, 98%);
    
    /* Functional Variables */
    --primary: var(--sage-600);
    --primary-dark: var(--sage-800);
    --accent: var(--sand-500);
    --accent-hover: var(--sand-600);
    --bg: var(--off-white);
    --text: var(--charcoal);
    
    --glass: hsla(0, 0%, 100%, 0.7);
    --glass-border: hsla(0, 0%, 100%, 0.3);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('love_my_space_hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 90px;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: var(--shadow-heavy);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25);
}

/* Sections General */
section {
    padding: 140px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Intro Section */
.intro {
    background: var(--sand-100);
}

.large-text {
    font-size: 1.8rem;
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--primary-dark);
    line-height: 1.6;
}

/* Story Section */
.story {
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.story-text p {
    margin-bottom: 1.8rem;
    color: #444;
}

.story-image {
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--sand-200);
    z-index: 0;
    border-radius: 30px;
}

.story-placeholder {
    position: relative;
    z-index: 1;
    background: var(--sage-700);
    width: 100%;
    height: 500px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: white;
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

/* Services Section */
.services {
    background: var(--sand-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: var(--primary-dark);
}

.service-card p {
    color: #666;
}

/* Contact Section */
.contact-info {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 5rem;
    border-radius: 40px;
    box-shadow: var(--shadow-heavy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.contact-item {
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 4rem; }
    .contact-info { grid-template-columns: 1fr; padding: 3rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .nav-links { display: none; }
    section { padding: 80px 0; }
    .large-text { font-size: 1.4rem; }
}

