:root {
    --bg: #FAFBFF;
    --text: #2D2640;
    --text-secondary: #8B7FA0;
    --wash-blush: #F2D4DC;
    --wash-lavender: #D4D8F2;
    --wash-mint: #D4F2E8;
    --accent: #7B5EA7;
    --glow: #F0E4B8;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.85;
    overflow-x: hidden;
}

/* Watercolor blobs */
.blob {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 30% 70% 60% 40% / 50% 40% 70% 60%;
}

.blob-1 {
    width: 350px;
    height: 300px;
    top: 120vh;
    left: -60px;
    background: radial-gradient(ellipse at 40% 50%, rgba(242,212,220,0.18), transparent 70%);
    animation: drift-blob-1 25s ease-in-out infinite alternate;
}

.blob-2 {
    width: 280px;
    height: 320px;
    top: 200vh;
    right: -40px;
    border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%;
    background: radial-gradient(ellipse at 60% 40%, rgba(212,216,242,0.2), transparent 70%);
    animation: drift-blob-2 32s ease-in-out infinite alternate;
}

.blob-3 {
    width: 400px;
    height: 350px;
    top: 340vh;
    left: 10vw;
    border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,242,232,0.15), transparent 70%);
    animation: drift-blob-3 28s ease-in-out infinite alternate;
}

.blob-4 {
    width: 300px;
    height: 280px;
    top: 460vh;
    right: 5vw;
    border-radius: 40% 60% 70% 30% / 60% 30% 50% 50%;
    background: radial-gradient(ellipse at 45% 55%, rgba(240,228,184,0.18), transparent 70%);
    animation: drift-blob-4 35s ease-in-out infinite alternate;
}

.blob-5 {
    width: 250px;
    height: 260px;
    top: 580vh;
    left: 30vw;
    border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,216,242,0.12), transparent 70%);
    animation: drift-blob-5 22s ease-in-out infinite alternate;
}

@keyframes drift-blob-1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

@keyframes drift-blob-2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-25px, 15px); }
}

@keyframes drift-blob-3 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 25px); }
}

@keyframes drift-blob-4 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -15px); }
}

@keyframes drift-blob-5 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(15px, 20px); }
}

/* Lens flares */
.lens-flare {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,228,184,0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.lens-flare.faded {
    opacity: 0;
}

.flare-1 {
    top: 180vh;
    left: 70vw;
}

.flare-2 {
    top: 480vh;
    left: 20vw;
}

.flare-3 {
    top: 350vh;
    left: 55vw;
}

/* Sections */
.section {
    position: relative;
    z-index: 2;
}

/* Dawn */
.section-dawn {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breath-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--wash-lavender);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 4s ease-in-out infinite;
    z-index: 0;
}

.breath-circle-slow {
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.dawn-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dawn-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 32px;
    color: var(--text);
    letter-spacing: 0.01em;
    opacity: 0;
    animation: soft-fade 2s ease 1.5s forwards;
}

.dawn-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    opacity: 0;
    animation: soft-fade 1.5s ease 2.5s forwards;
}

@keyframes soft-fade {
    to { opacity: 1; }
}

/* Watercolor washes */
.wash {
    position: absolute;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
    z-index: -1;
}

.wash-blush {
    bottom: 0;
    background: radial-gradient(ellipse at 40% 100%, rgba(242,212,220,0.12) 0%, transparent 70%);
}

.wash-lavender {
    top: 0;
    height: 100%;
    background: radial-gradient(ellipse at 60% 30%, rgba(212,216,242,0.1) 0%, transparent 60%);
}

.wash-mint {
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(212,242,232,0.12) 0%, transparent 70%);
}

.wash-gold {
    top: 0;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(240,228,184,0.1) 0%, transparent 60%);
}

/* Morning */
.section-morning {
    min-height: 180vh;
    padding: 80px 20px;
    position: relative;
}

/* Midday */
.section-midday {
    min-height: 140vh;
    padding: 80px 20px;
    position: relative;
}

/* Golden Hour */
.section-golden {
    min-height: 140vh;
    padding: 80px 20px;
    position: relative;
}

/* Dusk */
.section-dusk {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Content islands */
.island {
    position: relative;
    max-width: 540px;
    margin-bottom: 80px;
    padding: 32px 36px;
}

.island-left {
    margin-left: 8vw;
}

.island-right {
    margin-left: 25vw;
}

.island-center {
    margin-left: auto;
    margin-right: auto;
}

.island-bg {
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,216,242,0.15), transparent 80%);
    box-shadow: 0 0 60px rgba(212,216,242,0.08);
    z-index: -1;
}

.island-bg-alt {
    border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
    background: radial-gradient(ellipse at 50% 50%, rgba(242,212,220,0.15), transparent 80%);
    box-shadow: 0 0 60px rgba(242,212,220,0.08);
}

.island-bg-clear {
    background: radial-gradient(ellipse at 50% 50%, rgba(250,251,255,0.2), transparent 80%);
    box-shadow: 0 0 80px rgba(212,216,242,0.05);
}

.island-bg-mint {
    border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212,242,232,0.15), transparent 80%);
    box-shadow: 0 0 60px rgba(212,242,232,0.08);
}

.island-bg-warm {
    border-radius: 50% 50% 45% 55% / 40% 60% 50% 50%;
    background: radial-gradient(ellipse at 50% 50%, rgba(240,228,184,0.15), transparent 80%);
    box-shadow: 0 0 60px rgba(240,228,184,0.08);
}

.body-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    opacity: 0.85;
}

.midday-text {
    opacity: 1;
}

/* Pull quote */
.pull-quote {
    max-width: 480px;
    margin: 60px auto;
    text-align: center;
    padding: 40px;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(123,94,167,0.15);
}

/* Dissolving typography for key words */
.glow-word {
    text-shadow: 0 0 20px rgba(123,94,167,0.2);
}

/* Fade-in elements */
[data-fade] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

[data-fade].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dusk */
.dusk-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.dusk-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 24px;
    color: var(--accent);
    letter-spacing: 0.01em;
}

/* Mobile */
@media (max-width: 768px) {
    .island-left,
    .island-right {
        margin-left: 5vw;
        margin-right: 5vw;
        max-width: calc(100% - 10vw);
    }

    .island-center {
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .blob {
        display: none;
    }

    .pull-quote {
        padding: 20px;
    }
}
