/* paraoligm.com — Cottagecore / Single-Column / Elegant-Sophisticated */
:root {
    --deep-forest: #2A3A30;
    --dark-sage: #3A4A40;
    --sage: #6A7A70;
    --muted-sage: #8BA89A;
    --soft-sage: #A8C0B0;
    --pale-sage: #C0D8C8;
    --lightest-sage: #D8E8DC;
    --warm-linen: #F0ECE4;
    --warm-parchment: #F8F4F0;
}

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

body {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: var(--dark-sage);
    background: var(--warm-parchment);
    overflow-x: hidden;
}

/* Mountain Background */
#mountain-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45vh;
    z-index: 0;
    overflow: hidden;
}

.mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.mountain-back {
    height: 60%;
    background: var(--pale-sage);
    clip-path: polygon(0% 100%, 0% 60%, 10% 45%, 25% 55%, 40% 30%, 55% 50%, 70% 25%, 85% 40%, 100% 20%, 100% 100%);
}

.mountain-mid {
    height: 50%;
    background: var(--soft-sage);
    clip-path: polygon(0% 100%, 0% 70%, 15% 50%, 30% 65%, 45% 40%, 60% 55%, 75% 35%, 90% 50%, 100% 45%, 100% 100%);
}

.mountain-front {
    height: 40%;
    background: var(--muted-sage);
    clip-path: polygon(0% 100%, 0% 75%, 12% 60%, 28% 72%, 42% 55%, 58% 68%, 72% 50%, 88% 62%, 100% 55%, 100% 100%);
}

/* Content Column */
#content-column {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 40vh;
    background: var(--warm-parchment);
    padding-top: 48px;
    padding-bottom: 80px;
}

/* Header */
#site-header {
    text-align: center;
    margin-bottom: 48px;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 48px;
    color: var(--deep-forest);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.site-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    color: var(--sage);
    margin-top: 8px;
    opacity: 0;
    animation: fade-in 0.6s ease-out 0.4s forwards;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botanical Dividers */
.botanical-divider {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.botanical-divider.visible {
    opacity: 1;
    transform: scale(1);
}

/* Content Sections */
.content-section {
    margin-bottom: 96px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 38px;
    color: var(--deep-forest);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-body {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: var(--dark-sage);
    margin-bottom: 20px;
}

/* Pull Quotes */
.pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 22px;
    color: var(--sage);
    line-height: 1.6;
    border-left: 2px solid var(--pale-sage);
    padding: 16px 0 16px 24px;
    margin: 32px 0;
}

/* Footer */
#site-footer {
    margin-top: 48px;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    #content-column {
        margin-top: 30vh;
        padding: 0 20px;
        padding-top: 32px;
    }

    .site-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .pull-quote {
        font-size: 19px;
    }

    .content-section {
        margin-bottom: 64px;
    }
}
