/* okurairi.net -- wabi-sabi aesthetic */
/* Palette:
   Unbleached Linen: #F5F1EB (background)
   Sumi Ink: #2C2A25 (primary text)
   Kiln Gray: #9B9590 (secondary text, subtle elements)
   Persimmon: #D4775B (warm accent)
   Moss Wash: #8A9A7B (secondary accent)
*/

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #F5F1EB;
    color: #2C2A25;
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2.0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero section -- 100vh, single centered word */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-word {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 8rem);
    color: #2C2A25;
    letter-spacing: 0.05em;
    user-select: none;
}

/* Fade-in elements: start hidden, revealed by JS */
.fade-in {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Content sections -- sparse, widely separated */
.content-section {
    max-width: 600px;
    padding: 0 1.5rem;
}

.body-text {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2.0;
    color: #2C2A25;
}

/* First content block -- left-aligned with generous left margin */
.content-first {
    margin-top: 25vh;
    margin-left: clamp(8vw, 15vw, 20vw);
    margin-bottom: 0;
}

/* Second content block -- right-aligned */
.content-second {
    margin-top: 30vh;
    margin-left: auto;
    margin-right: clamp(8vw, 12vw, 20vw);
}

.text-right {
    text-align: right;
}

/* Horizon line void */
.horizon-void {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25vh;
}

.horizon-line {
    width: 30vw;
    height: 0;
    border-top: 0.5px solid #9B9590;
}

/* Third content block with leaf ornament */
.content-third {
    margin-top: 25vh;
    margin-left: clamp(8vw, 15vw, 20vw);
    position: relative;
}

.leaf-container {
    position: absolute;
    left: -60px;
    top: 10px;
    transform: rotate(15deg);
}

.fallen-leaf {
    width: 32px;
    height: 42px;
    opacity: 0.6;
}

/* Intentional micro-imperfection: slight rotation on this block */
.imperfect-block {
    transform: rotate(0.3deg);
    /* Slightly different line-height as wabi-sabi imperfection */
    line-height: 1.95;
}

/* Vast empty space before footer */
.ending-space {
    height: 40vh;
}

/* Minimal footer */
.site-footer {
    padding-bottom: 3rem;
    text-align: center;
}

.footer-text {
    font-family: 'Noto Serif', serif;
    font-size: 0.8rem;
    color: #9B9590;
    letter-spacing: 0.04em;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .content-section {
        max-width: 100%;
        padding: 0 1.2rem;
    }

    .content-first {
        margin-left: 8vw;
    }

    .content-second {
        margin-right: 8vw;
    }

    .content-third {
        margin-left: 8vw;
    }

    .leaf-container {
        left: -40px;
    }

    .fallen-leaf {
        width: 24px;
        height: 32px;
    }
}