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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: #F0F4F8;
    color: #4A5A64;
    line-height: 1.85;
    font-size: 16px;
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #3A5A6A;
}

.layout {
    display: flex;
    min-height: 100vh;
}

/* Contemplation sidebar */
.contemplation {
    width: 40%;
    background: #F0F4F8;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 7px, rgba(106, 138, 154, 0.03) 7px, rgba(106, 138, 154, 0.03) 8px);
}

.zen-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zen-kanji {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: 120px;
    color: #B0C0D0;
    opacity: 0;
    transition: opacity 1s ease;
    line-height: 1;
}

.zen-kanji.visible {
    opacity: 1;
}

.zen-meaning {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 300;
    color: #8AA0B8;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.zen-kanji.visible ~ .zen-meaning,
.zen-meaning.visible {
    opacity: 1;
}

/* Content */
.content {
    width: 60%;
    max-width: 560px;
    padding: 0 80px 80px 40px;
}

.hero-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.site-title {
    font-size: 28px;
    font-weight: 300;
    color: #3A5A6A;
    opacity: 0;
    animation: fadeInSlow 1s ease-in 1.5s forwards;
}

.title-line {
    width: 0;
    height: 1px;
    background: #C0D0E0;
    animation: drawLine 0.6s ease-out 2.3s forwards;
}

@keyframes drawLine {
    to { width: 120px; }
}

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

.hero-thought {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    color: #6A8A9A;
    font-style: italic;
    opacity: 0;
    animation: fadeInSlow 0.8s ease 3.1s forwards;
}

.text-section {
    padding: 64px 0;
    border-top: 1px solid #E0E8F0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.text-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.text-section p {
    margin-bottom: 16px;
}

/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 40px;
    background: #FFFFFF;
    border-top: 1px solid #E0E8F0;
    font-size: 13px;
    color: #8AA0B8;
}

/* Palette: #C0D0E0 #B0C0D0 */

@media (max-width: 768px) {
    .layout { flex-direction: column; }
    .contemplation { width: 100%; height: auto; position: relative; flex-direction: row; padding: 24px; }
    .zen-section { padding: 16px; }
    .zen-kanji { font-size: 60px; }
    .content { width: 100%; padding: 0 24px 48px; max-width: 100%; }
    .hero-content { min-height: 60vh; }
}
