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

body {
    font-family: 'Libre Franklin', sans-serif;
    background: #4A0E1A;
    color: #D0B8BC;
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.hero {
    height: 100vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #4A0E1A;
    gap: 24px;
}

.hero-title {
    font-size: 42px;
    font-weight: 500;
    color: #E8D0D4;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeInTitle 0.4s ease-in 0.6s forwards;
}

.hero-line {
    width: 0;
    height: 1px;
    background: #C87A8A;
    animation: drawLine 0.6s ease-out 1.4s forwards;
}

@keyframes fadeInTitle {
    to { opacity: 1; }
}

@keyframes drawLine {
    to { width: 40%; }
}

/* Editorial */
.editorial {
    max-width: 100%;
}

.section {
    padding: 80px 0;
}

.dark-section {
    background: #4A0E1A;
}

.light-section {
    background: #FAF2F4;
}

.light-section h2 {
    color: #4A0E1A;
}

.light-section p {
    color: #4A2A30;
}

.reading-column {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

.reading-column h2 {
    font-size: 32px;
    line-height: 1.35;
    margin-bottom: 24px;
    color: #E8D0D4;
}

.reading-column p {
    margin-bottom: 20px;
    font-weight: 400;
}

/* Collage Panels */
.collage-panel {
    width: 100%;
    height: 200px;
    background: #6A2A3A;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-cell {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(138, 106, 112, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(138, 58, 74, 0.2) 0%, transparent 60%);
}

.collage-cell.alt {
    background: radial-gradient(ellipse at 50% 30%, rgba(200, 122, 138, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 70%, rgba(106, 42, 58, 0.3) 0%, transparent 50%);
}

.collage-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(138, 58, 74, 0.3);
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.collage-circle.alt {
    left: auto;
    right: 20%;
    width: 160px;
    height: 160px;
}

.collage-chart {
    position: absolute;
    width: 40%;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.collage-text {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #8A6A70;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Data Display */
.data-display {
    margin-top: 24px;
    border-top: 1px solid rgba(200, 122, 138, 0.3);
    padding-top: 16px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(200, 122, 138, 0.15);
}

.data-label {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #8A6A70;
}

.data-value {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #E8D0D4;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 48px 24px;
    background: #4A0E1A;
    border-top: 1px solid rgba(200, 122, 138, 0.2);
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #E8D0D4;
    display: block;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 13px;
    color: #8A6A70;
}

/* Palette refs: #4A2A30 #8A3A4A #6A2A3A */

/* Scroll reveal */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 768px) {
    .hero-title { font-size: 28px; }
    .reading-column h2 { font-size: 26px; }
    .section { padding: 48px 0; }
}
