/* mores.quest - Editorial Vintage Magazine */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #2A2520;
    background: #F5F0E8;
    overflow-x: hidden;
}

/* ===== Cover ===== */
.cover {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.cover-content {
    text-align: center;
}

.cover-rule {
    width: 120px;
    height: 1px;
    background: #C4B8A0;
    margin: 1.5rem auto;
}

.masthead-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #1A1510;
    letter-spacing: 0.05em;
}

.masthead-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8B7560;
    margin-top: 0.5rem;
}

/* ===== Magazine Grid ===== */
.magazine-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    max-width: 960px;
    margin: 0 auto;
    gap: 3rem;
}

.magazine-grid-reverse {
    grid-template-columns: 3fr 5fr;
}

/* ===== Feature ===== */
.feature {
    padding: 6vh 2rem;
}

.feature-alt {
    background: #EBE2D4;
}

.feature-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: #1A1510;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.feature-body p {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #2A2520;
    margin-bottom: 1.25rem;
}

.feature-body p:last-child {
    margin-bottom: 0;
}

.feature-main {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-main.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Pullquote ===== */
.pullquote-block {
    background: #EBE2D4;
    padding: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.feature-alt .pullquote-block {
    background: #F5F0E8;
}

.pullquote-block.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pullquote {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #1A1510;
    margin-bottom: 0.75rem;
}

.pullquote-cite {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #8B7560;
    letter-spacing: 0.04em;
}

/* ===== Ornament ===== */
.ornament {
    margin-top: 4rem;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.ornament.revealed {
    opacity: 1;
}

/* ===== Section Header ===== */
.section-header {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    border-top: 1px solid #C4B8A0;
    padding-top: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-header.revealed {
    opacity: 1;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8B7560;
}

/* ===== Columns Section ===== */
.columns-section {
    padding: 4vh 2rem 6vh;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
    gap: 0;
}

.column-piece {
    padding: 0 1.25rem;
    border-right: 1px solid #C4B8A0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.column-piece.revealed {
    opacity: 1;
    transform: translateY(0);
}

.column-piece:first-child {
    padding-left: 0;
}

.column-piece:last-child {
    border-right: none;
    padding-right: 0;
}

.column-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25;
    color: #1A1510;
    margin-bottom: 0.75rem;
}

.column-body {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #2A2520;
}

/* ===== Closing ===== */
.closing {
    padding: 6vh 2rem 12vh;
    max-width: 640px;
    margin: 0 auto;
}

.closing-content {
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.closing-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.editorial-statement {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #2A2520;
    margin-bottom: 2rem;
}

.closing-ornament {
    margin-bottom: 2rem;
    opacity: 0.4;
}

.closing-rule {
    width: 60px;
    height: 1px;
    background: #C4B8A0;
    margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .magazine-grid,
    .magazine-grid-reverse {
        grid-template-columns: 1fr;
    }

    .columns-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .column-piece {
        border-right: none;
        padding: 0;
        border-bottom: 1px solid #C4B8A0;
        padding-bottom: 2rem;
    }

    .column-piece:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
