/* miris.day */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fefdfb;
    color: #292524;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.85;
}

/* Sunrise gradient at top */
.sunrise {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #fed7aa 0%, #fefdfb 100%);
    pointer-events: none;
    z-index: 1;
}

/* Hero section */
.hero {
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
    z-index: 2;
}

.sun {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, #f97316, #fed7aa);
    margin: 0 auto 1rem;
}

.brand {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #292524;
    letter-spacing: 0.02em;
}

.tagline {
    font-size: 0.9rem;
    color: #78716c;
    margin-top: 0.25rem;
}

.day-counter {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    color: #f97316;
    display: block;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Peach line divider */
.peach-line {
    width: 60px;
    height: 1px;
    background: #fde8d0;
    margin: 2rem auto;
}

/* Wave dividers */
.wave-divider {
    width: 100%;
    height: 60px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Practice sections */
.practice {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
}

.container {
    background: #fffbf5;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #fde8d0;
}

.section-title {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #292524;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.section-text {
    font-size: 0.9rem;
    color: #78716c;
    line-height: 1.85;
}

/* Quote section */
.quote {
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #292524;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* Evening/footer section */
.evening {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, rgba(253, 232, 208, 0.1) 100%);
}

.close-text {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #78716c;
    letter-spacing: 0.01em;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    color: #d6d3d1;
    display: block;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure proper spacing and flow */
html {
    scroll-behavior: smooth;
}
