/* ============================================================
   jeongchi.boo  v2
   Frutiger Aero meets a Korean ghost house.
   Palette:
     #60A0C0  Aero blue    (gradient start)
     #80C0A0  Aero green   (gradient end)
     #F8F4E8  Warm cream
     #2A3030  Text dark
     #FFFFFF  Gloss white
     #4A8A4A  Leaf green
     #C04040  Political red
   Fonts: Commissioner (display), Noto Sans KR (Korean + body)
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans KR", "Commissioner", system-ui, sans-serif;
    font-weight: 400;
    color: #2A3030;
    background: #F8F4E8;
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   Ambient layers
   ============================================================ */

#bokeh-field,
#leaf-drift {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#bokeh-field {
    z-index: 0;
}

#leaf-drift {
    z-index: 1;
}

.bokeh-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.18) 45%,
        rgba(255, 255, 255, 0) 75%);
    opacity: 0.13;
    filter: blur(0.5px);
    will-change: transform, opacity;
    animation: bokeh-drift 28s ease-in-out infinite;
}

.bokeh-dot.tone-green {
    background: radial-gradient(circle at 35% 35%,
        rgba(180, 230, 200, 0.85) 0%,
        rgba(120, 200, 160, 0.18) 45%,
        rgba(80, 170, 130, 0) 75%);
    opacity: 0.16;
}

@keyframes bokeh-drift {
    0%   { transform: translate3d(0, 0, 0)        scale(1);    opacity: 0.10; }
    25%  { transform: translate3d(20px, -25px, 0) scale(1.04); opacity: 0.16; }
    50%  { transform: translate3d(-10px, 22px, 0) scale(0.98); opacity: 0.13; }
    75%  { transform: translate3d(-22px, -8px, 0) scale(1.02); opacity: 0.18; }
    100% { transform: translate3d(0, 0, 0)        scale(1);    opacity: 0.10; }
}

.drift-leaf {
    position: absolute;
    will-change: transform, opacity;
    animation: leaf-drift 32s linear infinite;
    opacity: 0.55;
}

@keyframes leaf-drift {
    0% {
        transform: translate3d(-12vw, -6vh, 0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.55;
    }
    50% {
        transform: translate3d(50vw, 40vh, 0) rotate(180deg);
        opacity: 0.55;
    }
    92% {
        opacity: 0.45;
    }
    100% {
        transform: translate3d(112vw, 90vh, 0) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================================
   Shared building blocks
   ============================================================ */

.aero-stage,
.aero-band,
.aero-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #F8F4E8;
}

.aero-stage {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.06) 22%,
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #60A0C0 0%, #80C0A0 100%);
}

.aero-band {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.06) 22%,
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #80C0A0 0%, #60A0C0 100%);
}

.aero-footer {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #4f8aa8 0%, #6aa68c 100%);
}

.aero-gloss-bar {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 38%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 255, 255, 0.18) 38%,
        rgba(255, 255, 255, 0.04) 70%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 0 0 50% 50% / 0 0 28% 28%;
    filter: blur(0.5px);
    animation: gloss-sweep 9s ease-in-out infinite alternate;
}

@keyframes gloss-sweep {
    0%   { transform: translateX(-3%) translateY(0); }
    100% { transform: translateX(3%)  translateY(2%); }
}

.ghostly-glow {
    text-shadow:
        0 0 18px rgba(255, 255, 255, 0.45),
        0 0 36px rgba(255, 255, 255, 0.18);
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 6vw 8rem;
    text-align: center;
    color: #F8F4E8;
}

.hero-frame {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: "Commissioner", sans-serif;
    font-weight: 500;
    font-size: clamp(11px, 1.1vw, 14px);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.85);
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: rise-in 900ms ease-out 200ms forwards;
}

.hero-logotype {
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 60px);
    letter-spacing: 0.02em;
    line-height: 1.05;
    background: linear-gradient(115deg,
        #FFFFFF 0%,
        #F8F4E8 22%,
        #C7E4DC 50%,
        #FFFFFF 78%,
        #DDF0E8 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
    opacity: 0;
    animation:
        rise-in 1000ms ease-out 350ms forwards,
        logotype-shimmer 5.5s ease-in-out 1500ms infinite;
}

@keyframes logotype-shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-korean {
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(96px, 18vw, 240px);
    line-height: 0.9;
    margin: 1.2rem 0 0.6rem;
    color: #F8F4E8;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: korean-rise 1300ms cubic-bezier(0.22, 0.8, 0.3, 1) 550ms forwards;
}

@keyframes korean-rise {
    0%   { opacity: 0; transform: translateY(28px) scale(0.96); text-shadow: 0 0 0 rgba(255,255,255,0); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translateY(0)    scale(1);
           text-shadow: 0 0 18px rgba(255,255,255,0.45), 0 0 36px rgba(255,255,255,0.18); }
}

.hero-romanization {
    font-family: "Commissioner", sans-serif;
    font-size: clamp(13px, 1.3vw, 16px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.78);
    margin-top: 0.25rem;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: rise-in 900ms ease-out 1000ms forwards;
}

.hero-romanization em {
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.04em;
    color: rgba(248, 244, 232, 0.65);
}

.hero-tagline {
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.55;
    color: #F8F4E8;
    margin: 0 auto 2.2rem;
    max-width: 36ch;
    opacity: 0;
    animation: rise-in 900ms ease-out 1200ms forwards;
}

.hero-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem 0.9rem;
    padding: 0.55rem 1.1rem;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.10) 50%,
        rgba(255, 255, 255, 0.18) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-family: "Commissioner", sans-serif;
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    animation: rise-in 900ms ease-out 1400ms forwards;
}

.hero-meta-divider {
    color: rgba(248, 244, 232, 0.55);
}

@keyframes rise-in {
    0%   { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero floating leaf */
.hero-leaf {
    position: absolute;
    top: 14%;
    right: 8%;
    width: clamp(120px, 16vw, 220px);
    z-index: 1;
    animation: hero-leaf-float 12s ease-in-out infinite;
    filter: drop-shadow(0 10px 22px rgba(0, 60, 40, 0.18));
}

.hero-leaf-svg {
    width: 100%;
    height: auto;
    animation: hero-leaf-rotate 18s ease-in-out infinite;
}

@keyframes hero-leaf-float {
    0%, 100% { transform: translateY(0)    translateX(0); }
    25%      { transform: translateY(-14px) translateX(-6px); }
    50%      { transform: translateY(8px)   translateX(10px); }
    75%      { transform: translateY(-6px)  translateX(4px); }
}

@keyframes hero-leaf-rotate {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(8deg); }
}

/* Scroll affordance */
.hero-scroll {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248, 244, 232, 0.85);
    font-family: "Commissioner", sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    z-index: 2;
    transition: color 250ms ease, transform 250ms ease;
}

.hero-scroll:hover {
    color: #FFFFFF;
}

.hero-scroll svg {
    animation: scroll-bounce 2.4s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto-section {
    position: relative;
    padding: 8rem 6vw;
    background: #F8F4E8;
    text-align: center;
    overflow: hidden;
}

.manifesto-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    animation: manifesto-leaf-sway 14s ease-in-out infinite;
}

.manifesto-leaf-1 {
    top: 4%;
    left: -3%;
    width: clamp(160px, 18vw, 260px);
    transform: rotate(-18deg);
}

.manifesto-leaf-2 {
    bottom: 6%;
    right: -2%;
    width: clamp(140px, 14vw, 220px);
    transform: rotate(22deg);
    animation-duration: 18s;
    animation-direction: alternate;
}

@keyframes manifesto-leaf-sway {
    0%, 100% { transform: rotate(-18deg) translateY(0); }
    50%      { transform: rotate(-12deg) translateY(-12px); }
}

.manifesto-eyebrow {
    position: relative;
    z-index: 1;
    font-family: "Commissioner", sans-serif;
    font-weight: 500;
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #4A8A4A;
    margin-bottom: 2rem;
}

.manifesto-quote {
    position: relative;
    z-index: 1;
    font-family: "Noto Sans KR", "Commissioner", sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.6vw, 36px);
    line-height: 1.55;
    color: #2A3030;
    max-width: 32ch;
    margin: 0 auto;
    text-shadow:
        0 0 24px rgba(255, 255, 255, 0.85),
        0 0 48px rgba(255, 255, 255, 0.4);
}

.manifesto-attribution {
    position: relative;
    z-index: 1;
    font-family: "Commissioner", sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    color: rgba(42, 48, 48, 0.65);
    margin-top: 2rem;
    letter-spacing: 0.08em;
}

/* ============================================================
   GHOSTS (cards)
   ============================================================ */

.ghosts-section {
    position: relative;
    padding: 7rem 6vw 8rem;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(96, 160, 192, 0.08), transparent 60%),
        radial-gradient(120% 80% at 100% 100%, rgba(128, 192, 160, 0.10), transparent 60%),
        #F8F4E8;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    color: #2A3030;
}

.section-eyebrow {
    font-family: "Commissioner", sans-serif;
    font-weight: 500;
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #C04040;
    margin-bottom: 1.2rem;
}

.section-eyebrow.on-aero {
    color: #F8F4E8;
}

.section-title {
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    color: #2A3030;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.section-title.on-aero {
    color: #F8F4E8;
}

.section-intro {
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.7;
    color: rgba(42, 48, 48, 0.78);
    max-width: 56ch;
    margin: 0 auto;
}

.section-intro.on-aero {
    color: rgba(248, 244, 232, 0.92);
}

.ghost-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.ghost-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 2.4rem 2.2rem 2rem;
    color: #2A3030;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0.18) 35%,
            rgba(248, 244, 232, 0.96) 80%),
        linear-gradient(135deg, #C8E2D8 0%, #E6EFE2 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    box-shadow:
        0 12px 30px rgba(60, 100, 120, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: scale(0.95) translateY(8px);
    transition:
        transform 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        border-radius 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        background 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        box-shadow 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        opacity 500ms ease;
}

.ghost-card.is-revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
    border-radius: 12px;
}

.ghost-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-radius: 18px 32px 18px 32px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.25) 40%,
            rgba(248, 244, 232, 1) 85%),
        linear-gradient(135deg, #DCEBE2 0%, #F0F4E8 100%);
    box-shadow:
        0 22px 48px rgba(60, 100, 120, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.card-gloss {
    position: absolute;
    inset: 0 0 auto 0;
    height: 38%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.10) 60%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 22px 22px 50% 50% / 22px 22px 18% 18%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 400ms ease, transform 500ms ease;
}

.ghost-card:hover .card-gloss {
    opacity: 0.85;
    transform: translateY(-4px);
}

.card-leaf {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 56px;
    height: 56px;
    z-index: 2;
    animation: card-leaf-bob 9s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(74, 138, 74, 0.18));
}

@keyframes card-leaf-bob {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50%      { transform: rotate(6deg)  translateY(-6px); }
}

.ghost-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0.32rem 0.7rem;
    background: rgba(192, 64, 64, 0.10);
    color: #C04040;
    border: 1px solid rgba(192, 64, 64, 0.35);
    border-radius: 999px;
    font-family: "Commissioner", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ghost-title {
    position: relative;
    z-index: 2;
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.25;
    color: #2A3030;
    margin-bottom: 0.9rem;
}

.ghost-body {
    position: relative;
    z-index: 2;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: rgba(42, 48, 48, 0.85);
    margin-bottom: 1.6rem;
}

.ghost-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid rgba(74, 138, 74, 0.25);
    padding-top: 0.9rem;
    font-family: "Commissioner", sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ghost-date {
    color: #4A8A4A;
    font-weight: 700;
}

.ghost-haunting {
    color: rgba(42, 48, 48, 0.55);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.04em;
}

/* ============================================================
   TIMELINE (morph)
   ============================================================ */

.timeline-section {
    position: relative;
    padding: 8rem 6vw 9rem;
    color: #F8F4E8;
}

.timeline-gloss-bar {
    height: 30%;
}

.timeline-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.timeline-track {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    max-width: 1240px;
    margin: 0 auto;
}

.timeline-event {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 280px;
    padding: 2rem 1.8rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 255, 255, 0.10) 45%,
            rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, rgba(96, 160, 192, 0.85) 0%, rgba(128, 192, 160, 0.85) 100%);
    color: #F8F4E8;
    box-shadow:
        0 14px 30px rgba(20, 50, 60, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition:
        transform 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        border-radius 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        background 500ms cubic-bezier(0.22, 0.8, 0.3, 1),
        color 500ms ease,
        box-shadow 500ms ease;
}

.event-gloss {
    position: absolute;
    inset: 0 0 auto 0;
    height: 42%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.10) 60%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 22px 22px 50% 50% / 22px 22px 22% 22%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 400ms ease;
}

.event-crack {
    position: absolute;
    top: 18%;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms ease-out;
    pointer-events: none;
    z-index: 2;
}

.event-face {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: opacity 350ms ease, transform 500ms ease;
    will-change: opacity, transform;
}

.event-face-truth {
    position: absolute;
    inset: 2rem 1.8rem;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.event-year {
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 16px);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.88);
}

.event-year.truth {
    color: #C04040;
}

.event-title {
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.25;
    color: #F8F4E8;
}

.event-title.truth {
    color: #2A3030;
}

.event-blurb {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: rgba(248, 244, 232, 0.92);
}

.event-blurb.truth {
    color: rgba(42, 48, 48, 0.88);
}

.event-stamp {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.32rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-family: "Commissioner", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.92);
    background: rgba(255, 255, 255, 0.08);
}

.event-stamp.truth {
    color: #C04040;
    border-color: rgba(192, 64, 64, 0.55);
    background: rgba(192, 64, 64, 0.08);
}

/* hover / active state -> morph to truth */
.timeline-event:hover,
.timeline-event.is-open {
    border-radius: 12px 28px 12px 28px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.75) 50%,
            rgba(248, 244, 232, 1) 100%);
    color: #2A3030;
    box-shadow:
        0 22px 48px rgba(20, 50, 60, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
}

.timeline-event:hover .event-gloss,
.timeline-event.is-open .event-gloss {
    opacity: 0.35;
}

.timeline-event:hover .event-crack,
.timeline-event.is-open .event-crack {
    transform: scaleX(1);
}

.timeline-event:hover .event-face-official,
.timeline-event.is-open .event-face-official {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.timeline-event:hover .event-face-truth,
.timeline-event.is-open .event-face-truth {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 120ms;
}

.timeline-footnote {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 3rem;
    font-family: "Commissioner", sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    letter-spacing: 0.12em;
    color: rgba(248, 244, 232, 0.78);
}

/* ============================================================
   AWARENESS
   ============================================================ */

.awareness-section {
    position: relative;
    padding: 8rem 6vw;
    background: #F8F4E8;
    overflow: hidden;
}

.awareness-leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.awareness-leaf {
    position: absolute;
    animation: awareness-leaf-sway 14s ease-in-out infinite;
}

.awareness-leaf-a {
    top: 5%;
    left: -4%;
    width: clamp(180px, 22vw, 320px);
    transform: rotate(-22deg);
}

.awareness-leaf-b {
    bottom: 8%;
    right: -3%;
    width: clamp(140px, 16vw, 240px);
    transform: rotate(28deg);
    animation-duration: 18s;
}

.awareness-leaf-c {
    top: 40%;
    right: 12%;
    width: clamp(120px, 12vw, 180px);
    transform: rotate(8deg);
    animation-duration: 22s;
    opacity: 0.7;
}

@keyframes awareness-leaf-sway {
    0%, 100% { transform: rotate(-22deg) translateY(0); }
    50%      { transform: rotate(-12deg) translateY(-14px); }
}

.awareness-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.awareness-list {
    position: relative;
    z-index: 1;
    list-style: none;
    counter-reset: awareness;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.awareness-item {
    position: relative;
    padding: 2.4rem 2.2rem 2rem;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.55) 35%,
            rgba(248, 244, 232, 1) 100%);
    border: 1px solid rgba(74, 138, 74, 0.18);
    border-radius: 18px;
    box-shadow:
        0 8px 22px rgba(60, 100, 120, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 400ms ease, box-shadow 400ms ease, border-radius 400ms ease;
}

.awareness-item:hover {
    transform: translateY(-4px);
    border-radius: 24px 12px 24px 12px;
    box-shadow:
        0 16px 36px rgba(60, 100, 120, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.awareness-number {
    display: inline-block;
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 44px);
    color: #80C0A0;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 18px rgba(128, 192, 160, 0.4);
}

.awareness-title {
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.25;
    color: #2A3030;
    margin-bottom: 0.8rem;
}

.awareness-body {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.75;
    color: rgba(42, 48, 48, 0.82);
}

.awareness-pull-quote {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 2.2rem 2.4rem;
    text-align: center;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(255, 255, 255, 0.20) 50%,
            rgba(248, 244, 232, 1) 100%),
        linear-gradient(135deg, rgba(96, 160, 192, 0.18), rgba(128, 192, 160, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    box-shadow:
        0 14px 30px rgba(60, 100, 120, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.awareness-pull-quote p {
    font-family: "Noto Sans KR", sans-serif;
    font-style: italic;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.6;
    color: #2A3030;
    text-shadow:
        0 0 22px rgba(255, 255, 255, 0.85),
        0 0 44px rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */

.aero-footer {
    position: relative;
    padding: 6rem 6vw 4rem;
    color: #F8F4E8;
}

.footer-gloss {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 32%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.10) 50%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 0 0 50% 50% / 0 0 22% 22%;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.4rem 3rem;
    align-items: center;
    text-align: left;
}

.footer-mascot {
    grid-row: span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.ghost-mascot {
    width: clamp(80px, 9vw, 110px);
    height: auto;
    animation: ghost-float 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

@keyframes ghost-float {
    0%, 100% { transform: translateY(0)    rotate(-2deg); }
    50%      { transform: translateY(-8px) rotate(2deg); }
}

.footer-mascot-name {
    font-family: "Commissioner", sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.78);
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
    font-family: "Commissioner", sans-serif;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-nav a {
    position: relative;
    color: rgba(248, 244, 232, 0.92);
    transition: color 250ms ease;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: rgba(248, 244, 232, 0.85);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

.footer-tagline {
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.6;
    color: #F8F4E8;
}

.footer-tagline span {
    font-family: "Commissioner", sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    color: rgba(248, 244, 232, 0.72);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-meta {
    grid-column: 2 / 3;
    font-family: "Commissioner", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 244, 232, 0.65);
    border-top: 1px solid rgba(248, 244, 232, 0.18);
    padding-top: 1.2rem;
}

.footer-leaf {
    position: absolute;
    right: 5%;
    bottom: 2rem;
    width: clamp(60px, 8vw, 110px);
    z-index: 0;
    animation: hero-leaf-float 14s ease-in-out infinite;
}

/* ============================================================
   Section content z-stack helpers
   ============================================================ */

#hero,
.timeline-section,
.aero-footer {
    position: relative;
}

#hero > *,
.timeline-section > *,
.aero-footer > * {
    position: relative;
}

.aero-gloss-bar {
    z-index: 0;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
    .ghost-cards,
    .awareness-list {
        grid-template-columns: 1fr;
    }

    .hero-leaf {
        width: clamp(96px, 28vw, 160px);
        top: 6%;
        right: 4%;
    }

    .hero-scroll {
        bottom: 1.6rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-mascot {
        grid-row: auto;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-meta {
        grid-column: auto;
        text-align: center;
    }

    .manifesto-section,
    .ghosts-section,
    .timeline-section,
    .awareness-section {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

@media (max-width: 560px) {
    #hero {
        padding: 5rem 5vw 7rem;
    }

    .hero-korean {
        font-size: clamp(82px, 28vw, 200px);
    }

    .ghost-card,
    .awareness-item,
    .timeline-event {
        padding: 1.8rem 1.5rem;
    }

    .event-face-truth {
        inset: 1.8rem 1.5rem;
    }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .ghost-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
