/* ipjosim.com - Soft Serif Editorial: The Weight of Words */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Pro', serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.9;
    color: #2C1810;
    background: #FFF8F0;
    overflow-x: hidden;
}

/* Typography classes */
.korean-display {
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.04em;
    color: #2C1810;
}

.english-display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #5D4E43;
}

.korean-body {
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.85;
}

/* =============================================
   SECTION 1: Title Page Hero (90vh)
   ============================================= */

#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8F0;
    position: relative;
    overflow: hidden;
}

.seal-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
    font-size: 15vw;
    color: #C62828;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.seal-watermark.visible {
    opacity: 0.03;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

#hero-title {
    opacity: 0;
    transition: opacity 0.6s ease;
    margin-bottom: 1.5rem;
}

#hero-title.visible {
    opacity: 1;
}

#hero-rule {
    width: 0;
    height: 1px;
    background: #8B7355;
    margin: 0 auto 1.5rem;
    transition: width 0.4s ease;
}

#hero-rule.visible {
    width: 120px;
}

#hero-subtitle {
    opacity: 0;
    transition: opacity 0.4s ease;
}

#hero-subtitle.visible {
    opacity: 1;
}

/* =============================================
   SECTION 2: Reflection Essay
   ============================================= */

#reflection {
    padding: 6rem 2rem;
    background: #FFF8F0;
}

.essay-column {
    max-width: 560px;
    margin: 0 auto;
}

.essay-column p {
    margin-bottom: 1.8rem;
    color: #2C1810;
}

.drop-cap {
    float: left;
    font-family: 'Noto Serif KR', serif;
    font-size: 4rem;
    line-height: 0.85;
    color: #2C1810;
    margin-right: 0.15em;
    margin-top: 0.1em;
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.drop-cap.visible {
    transform: scale(1);
}

.pull-quote {
    margin: 2.5rem 0 2.5rem 40px;
    padding-left: 20px;
    border-left: 3px solid #D4A76A;
}

.pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;
    color: #5D4E43;
    line-height: 1.7;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* =============================================
   SECTION 3: Word Weight Scale
   ============================================= */

#word-weight {
    padding: 8rem 2rem;
    background: #FAF3E8;
    text-align: center;
}

.scale-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.scale-label {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: #5D4E43;
}

/* =============================================
   SECTION 4: Korean Proverbs
   ============================================= */

#proverbs {
    padding: 4rem 2rem;
    background: #FFF8F0;
}

.proverb {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 560px;
    margin: 0 auto;
}

.proverb + .proverb {
    margin-top: 0;
}

.proverb-korean {
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #2C1810;
    margin-bottom: 1rem;
    line-height: 1.85;
}

.proverb-english {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1rem;
    color: #5D4E43;
    letter-spacing: 0.04em;
}

/* =============================================
   FOOTER: Seal
   ============================================= */

#seal-footer {
    padding: 6rem 2rem 4rem;
    background: #FFF8F0;
    text-align: center;
}

.seal-mark {
    width: 48px;
    height: 48px;
    border: 2px solid #C62828;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    opacity: 0.3;
}

.seal-character {
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #C62828;
    opacity: 0.3;
}

.footer-credit {
    font-size: 0.85rem;
    color: #E8D8C4;
    letter-spacing: 0.08em;
}
