/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf3e8;
    --amber: #e6b860;
    --dark-brown: #3d2b1f;
    --darkest: #2a1d13;
    --warm-gray: #a89585;
    --terracotta: #c4673a;
    --peach: #e8a87c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inconsolata', monospace;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.72;
    letter-spacing: 0.01em;
    color: var(--dark-brown);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* === Noise Overlay === */
.noise-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
}

/* === Sections === */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.section__inner {
    max-width: 680px;
    width: 100%;
}

/* Diagonal clips */
.section--confession {
    background-color: var(--cream);
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -4vw;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.section--evidence {
    background-color: var(--darkest);
    color: var(--cream);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin-top: -4vw;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.section--invitation {
    background-color: var(--cream);
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -4vw;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.section--rest {
    background-color: var(--dark-brown);
    color: var(--peach);
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
    margin-top: -4vw;
    padding-top: 10rem;
    min-height: 60vh;
}

/* === The Breath === */
.section--breath {
    justify-content: flex-start;
    align-items: flex-end;
    padding: 3rem;
}

.wordmark {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--dark-brown);
    opacity: 0;
    transition: opacity 1.2s ease;
    letter-spacing: -0.02em;
}

.wordmark.visible {
    opacity: 1;
}

/* === The Confession === */
.confession__text {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--darkest);
    max-width: 520px;
}

/* === The Evidence === */
.section__heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray);
    margin-bottom: 3rem;
}

.evidence__list {
    list-style: none;
}

.evidence__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(168, 149, 133, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.evidence__number {
    font-weight: 700;
    color: var(--terracotta);
    flex-shrink: 0;
}

.evidence__desc {
    color: var(--peach);
}

/* === The Invitation === */
.invitation__text {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.invitation__subtext {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* === The Rest === */
.rest__text {
    text-align: center;
}

.cormorant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.6;
}

/* === Scroll reveal utility === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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