/* Template 57 - Scandinavian Light / Nordic Clean */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --white: #ffffff;
    --snow: #fafafa;
    --cloud: #f5f5f5;
    --mist: #e8e8e8;
    --stone: #9ca3af;
    --slate: #64748b;
    --charcoal: #1e293b;
    --black: #0f172a;
    --accent-warm: #f59e0b;
    --accent-blush: #fda4af;
    --accent-sage: #86efac;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    font-weight: 400;
    font-size: 17px;
}

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

/* Header - Ultra Minimal */
.site-header {
    background: var(--white);
    padding: 2.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    padding: 1.5rem 0;
    box-shadow: 0 1px 0 var(--mist);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.site-nav a {
    color: var(--slate);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--charcoal);
    transition: width 0.3s ease;
}

.site-nav a:hover {
    color: var(--charcoal);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.section.head {
    padding: 8rem 0 6rem;
    text-align: left;
    background: var(--white);
}

.section.head h1 {
    font-family: 'Newsreader', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--black);
    letter-spacing: -0.03em;
    max-width: 800px;
}

.section.head p {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 550px;
    line-height: 1.8;
}

/* Section Styling */
.section {
    padding: 6rem 0;
}

.section header {
    margin-bottom: 4rem;
}

.section header h2 {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section header p {
    font-size: 1.0625rem;
    color: var(--slate);
    max-width: 500px;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Divider */
.section-divider {
    width: 40px;
    height: 1px;
    background: var(--mist);
    margin: 0 0 2rem;
}

/* Footer */
.footer {
    background: var(--snow);
    padding: 5rem 0 3rem;
    margin-top: 4rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-about {
    max-width: 350px;
}

.footer-tagline {
    color: var(--slate);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

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

.footer-links a:hover {
    color: var(--charcoal);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--mist);
}

.copyright {
    color: var(--stone);
    font-size: 0.875rem;
}

.copyright a {
    color: var(--stone);
    text-decoration: none;
}

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

.fade-in {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
