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

:root {
    --atlantic-navy: #0A2540;
    --atlantic-dark: #1A1A1A;
    --atlantic-cream: #F8F6F0;
    --atlantic-beige: #E8E5DC;
    --atlantic-gold: #C9A961;
    --atlantic-text: #2C2C2C;
    --atlantic-text-light: #6B6B6B;
    --spacing-unit: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background: var(--atlantic-cream);
    color: var(--atlantic-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--atlantic-cream);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--atlantic-cream) 0%, var(--atlantic-beige) 100%);
    z-index: 1;
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10, 37, 64, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 37, 64, 0.02) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 4rem 2rem;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

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

.quote-container {
    margin-bottom: 4rem;
}

.quote-text {
    font-family: 'Charter', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--atlantic-navy);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
    font-style: italic;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 1.2em;
    color: var(--atlantic-gold);
    opacity: 0.4;
    position: absolute;
    left: -0.15em;
    top: -0.1em;
    font-family: 'Charter', Georgia, serif;
}

.quote-author {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--atlantic-text-light);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.hero-subtitle {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(10, 37, 64, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--atlantic-text-light);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--atlantic-text-light);
    opacity: 0.4;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.2;
        transform: scaleY(0.6);
    }
}

.scroll-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--atlantic-text-light);
    border-radius: 50%;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .quote-container {
        margin-bottom: 3rem;
    }
    
    .quote-text {
        line-height: 1.35;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        margin-top: 4rem;
        padding-top: 2.5rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2.5rem 1.25rem;
    }
    
    .quote-text {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}

/* Print styles */
@media print {
    .hero-background,
    .texture-overlay,
    .scroll-indicator {
        display: none;
    }
    
    .hero {
        min-height: auto;
        background: white;
    }
}
