/* StorkStork Design System */

:root {
    /* Colors - Analog + Emotional */
    --paper: #FFFEF9;
    --ink: #2B2B2B;
    --sepia: #8B7355;
    --whisper: #F5F1E8;
    --shadow: rgba(43, 43, 43, 0.08);
    --accent: #C9A580;
    
    /* Typography */
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

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

body {
    font-family: var(--font-serif);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.8;
    font-size: 18px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--paper) 0%, var(--whisper) 100%);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,254,249,0.7) 0%, rgba(245,241,232,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 300px;
    margin: 0 auto var(--space-lg);
    display: block;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.3;
    margin-bottom: var(--space-md);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--sepia);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-primary {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: var(--ink);
    color: var(--paper);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    letter-spacing: 0.01em;
}

.cta-primary:hover {
    background: var(--sepia);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* How It Works */
.how-it-works {
    padding: var(--space-lg) 0;
    background: var(--paper);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.work-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.work-step.reverse {
    direction: rtl;
}

.work-step.reverse > * {
    direction: ltr;
}

.work-step-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.work-step-content {
    padding: var(--space-md);
}

.step-number {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.work-step h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    font-weight: 400;
    color: var(--ink);
}

.work-step p {
    color: var(--sepia);
    line-height: 1.8;
    font-size: 1.1rem;
}

.work-step p strong {
    color: var(--ink);
    font-weight: 500;
    display: block;
    margin-top: var(--space-sm);
}

/* Emotional Connection Section */
.emotional-connection {
    padding: var(--space-xl) 0;
    background: var(--whisper);
}

.emotional-image-container {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
}

.emotional-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.emotional-quote {
    text-align: center;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--ink);
    margin-top: var(--space-lg);
    font-weight: 300;
}

/* Visual Artifacts Section */
.visual-artifacts {
    padding: var(--space-xl) 0;
    background: var(--paper);
}

.artifacts-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.artifacts-grid img {
    width: 100%;
    height: auto;
    margin-bottom: var(--space-lg);
}

/* Drop Badge */
.drop-badge {
    display: inline-block;
    padding: var(--space-md) var(--space-lg);
    background: white;
    border: 2px solid var(--accent);
    border-radius: 2px;
    box-shadow: 0 4px 20px var(--shadow);
}

.drop-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.drop-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.drop-stats {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--sepia);
    font-style: italic;
}

/* Strangers Section */
.strangers-section {
    padding: var(--space-xl) 0;
    background: var(--whisper);
}

.strangers-image-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.strangers-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

.strangers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.strangers-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: white;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    max-width: 700px;
    line-height: 1.5;
}

/* Image Styling */
.stork-image {
    border-radius: 2px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stork-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(43, 43, 43, 0.15);
}

/* Animation */
.soft-fade-in {
    animation: fadeIn 1.6s ease-out forwards;
    opacity: 0;
}

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

/* Scroll reveal - elements fade in when scrolled into view */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for hero elements */
.hero-headline {
    animation-delay: 0.2s;
}

.hero-subheadline {
    animation-delay: 0.4s;
}

.hero .cta-primary {
    animation-delay: 0.6s;
}

.scroll-indicator {
    animation-delay: 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1.6s ease-out forwards, float 2s ease-in-out infinite;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--sepia);
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Manifesto */
.manifesto {
    padding: var(--space-xl) 0;
    background: var(--whisper);
}

.manifesto-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 2;
    text-align: center;
    font-style: normal;
    color: var(--ink);
    max-width: 700px;
    margin: 0 auto;
}

.manifesto-text em {
    color: var(--sepia);
    font-style: italic;
}

/* Pricing */
.pricing {
    padding: var(--space-xl) 0;
    background: var(--whisper);
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: white;
    border: 1px solid var(--shadow);
    box-shadow: 0 8px 30px var(--shadow);
    text-align: center;
}

.price {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.period {
    font-size: 1.5rem;
    color: var(--sepia);
}

.pricing-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.pricing-philosophy {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--sepia);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.next-drop {
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--sepia);
}

.features {
    list-style: none;
    margin: var(--space-lg) 0;
    text-align: left;
}

.features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--whisper);
    color: var(--sepia);
}

.features li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq {
    padding: var(--space-xl) 0;
    background: var(--whisper);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    background: white;
    padding: var(--space-md);
    border-radius: 2px;
    cursor: pointer;
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+ ';
    margin-right: var(--space-xs);
    color: var(--accent);
}

.faq-item[open] summary::before {
    content: '− ';
}

.faq-item p {
    margin-top: var(--space-md);
    color: var(--sepia);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: var(--space-lg) 0;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: var(--paper);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: var(--font-sans);
}

/* What's In The Box Section */
.whats-in-box {
    padding: var(--space-xl) 0;
    background: var(--paper);
    text-align: center;
}

.whats-in-box h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--sepia);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.box-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.box-item {
    padding: var(--space-lg);
    background: white;
    border: 1px solid var(--shadow);
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}

.box-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.box-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--ink);
}

.box-item p {
    color: var(--sepia);
    line-height: 1.6;
    font-size: 1rem;
}

/* Sticky CTA on Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: var(--space-md);
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 100;
    display: none;
}

.sticky-cta .cta-primary {
    width: 100%;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .work-step,
    .work-step.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .work-step-image img {
        height: 300px;
    }
    
    .emotional-image {
        height: 350px;
    }
    
    .strangers-image-container img {
        height: 400px;
    }
    
    .strangers-text {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .emotional-quote {
        font-size: 1.8rem;
    }
    
    .box-items {
        grid-template-columns: 1fr;
    }
    
    /* Show sticky CTA on mobile after scrolling past hero */
    .sticky-cta {
        display: block;
    }
}
