:root {
    --tc-yellow: #ffd53d;
    --tc-yellow-deep: #f4b900;
    --tc-yellow-soft: #fff5c9;
    --tc-yellow-pale: #fffbed;
    --tc-cream: #fffdf6;
    --tc-ink: #282718;
    --tc-muted: #716e5b;
    --tc-line: #e9e2c9;
    --tc-white: #ffffff;
    --tc-green: #84ba77;
    --tc-orange: #ff9954;
    --tc-blue: #bad9e7;
    --tc-shadow: 0 18px 54px rgba(69, 54, 7, .12);
    --tc-shadow-soft: 0 10px 30px rgba(69, 54, 7, .08);
    --tc-radius-xl: 2rem;
    --tc-radius-lg: 1.5rem;
    --tc-radius-md: 1rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.tc-page {
    min-width: 320px;
    margin: 0;
    color: var(--tc-ink);
    background: var(--tc-cream);
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -.018em;
}

button, input, textarea { font: inherit; }

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

a:hover { color: inherit; }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; }

.container--narrow { max-width: 860px; }

.skip-link {
    position: fixed;
    z-index: 5000;
    top: 1rem;
    left: 1rem;
    padding: .65rem .9rem;
    border-radius: .65rem;
    color: var(--tc-ink);
    background: var(--tc-yellow);
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 3px solid #4f7ccc;
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(255, 253, 246, .87);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(228, 218, 187, .86);
    box-shadow: 0 6px 22px rgba(72, 60, 22, .06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: .52rem;
    color: var(--tc-ink);
}

.brand__mark {
    position: relative;
    display: inline-flex;
    align-items: end;
    justify-content: center;
    width: 28px;
    height: 25px;
    overflow: hidden;
    border-radius: 52% 52% 48% 48%;
    background: var(--tc-yellow);
}

.brand__mark::before {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 20px;
    height: 11px;
    border-radius: 50%;
    background: #fff8d8;
    content: "";
}

.brand__mark i {
    position: relative;
    display: block;
    width: 3px;
    height: 7px;
    margin: 0 1px 5px;
    border-radius: 3px;
    background: var(--tc-ink);
}

.brand__mark i:nth-child(2) { height: 10px; }

.brand__wordmark {
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -.07em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 1rem;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: .1rem;
    padding: 0;
    margin: 0 auto 0 1.25rem;
    list-style: none;
}

.site-nav__links a {
    display: block;
    padding: .5rem .8rem;
    border-radius: 999px;
    color: #61604d;
    font-size: .94rem;
    font-weight: 650;
    transition: background .18s ease, color .18s ease;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
    color: var(--tc-ink);
    background: var(--tc-yellow-soft);
}

.site-nav__account { display: flex; align-items: center; }

.tc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 48px;
    padding: .72rem 1.18rem;
    border: 0;
    border-radius: 999px;
    font-size: .97rem;
    font-weight: 750;
    letter-spacing: -.02em;
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.tc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(40, 39, 24, .16);
}

.tc-button--header { min-height: 38px; padding: .42rem .9rem; font-size: .88rem; }
.tc-button--small { min-height: 42px; padding: .56rem 1rem; font-size: .9rem; }

.tc-button--light { color: var(--tc-ink); background: var(--tc-white); }
.tc-button--light:hover { color: var(--tc-ink); background: #fffefa; }

.account-chip {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    max-width: 180px;
    padding: .28rem .7rem .28rem .32rem;
    overflow: hidden;
    border: 1px solid var(--tc-line);
    border-radius: 999px;
    color: var(--tc-ink);
    background: #fff;
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.account-chip__avatar {
    width: 28px;
    height: 28px;
    flex: none;
    border-radius: 50%;
    object-fit: cover;
}

.account-chip__avatar--fallback {
    display: grid;
    place-items: center;
    color: var(--tc-ink);
    background: var(--tc-yellow);
}

.site-header__menu { display: none; }

/* Shared headings and section rhythm */
.site-section { padding: 7.5rem 0; }
.site-section--soft { background: var(--tc-yellow-pale); }
.site-section--compact { padding: 5rem 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 0 1rem;
    color: #81743e;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.2;
}

.eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tc-yellow-deep);
}

.section-heading { max-width: 600px; margin-bottom: 3.5rem; }

.section-heading h2,
.story-card h2,
.home-cta h2 {
    margin: 0;
    color: var(--tc-ink);
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.065em;
}

.section-heading > p:not(.eyebrow) {
    margin: 1.35rem 0 0;
    color: var(--tc-muted);
    font-size: 1.05rem;
}

.section-heading--center { margin-right: auto; margin-left: auto; text-align: center; }

.section-heading--split {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    max-width: none;
    gap: 3rem;
}

.section-heading--split > p {
    margin: 0 !important;
    padding-bottom: .25rem;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--tc-ink);
    font-weight: 800;
    transition: gap .18s ease;
}

.text-action:hover { gap: .85rem; }

/* Home */
.hero--home {
    position: relative;
    overflow: hidden;
    padding: clamp(4.8rem, 8vw, 8rem) 0 5.4rem;
    background: var(--tc-yellow);
}

.hero--home::before {
    position: absolute;
    width: 46vw;
    min-width: 490px;
    height: 46vw;
    min-height: 490px;
    top: -38%;
    left: -16%;
    border-radius: 50%;
    background: rgba(255, 246, 194, .5);
    content: "";
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
}

.hero__content { padding: 1rem 0; }

.hero__content .eyebrow { color: #72621f; }
.hero__content .eyebrow > span { background: var(--tc-ink); }

.hero__content h1 {
    margin: 0;
    color: var(--tc-ink);
    font-size: clamp(3rem, 5.6vw, 5.2rem);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -.09em;
}

.hero__lead {
    max-width: 455px;
    margin: 1.65rem 0 0;
    color: #4d471f;
    font-size: 1.1rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.35rem;
    margin-top: 2.3rem;
}

.hero__highlights {
    display: flex;
    gap: 2.2rem;
    margin: 4.1rem 0 0;
}

.hero__highlights div { position: relative; }
.hero__highlights div + div::before {
    position: absolute;
    top: 5px;
    bottom: 3px;
    left: -1.1rem;
    width: 1px;
    background: rgba(55, 45, 7, .2);
    content: "";
}

.hero__highlights dt { font-size: 1.2rem; font-weight: 850; }
.hero__highlights dd { margin: .05rem 0 0; color: #6b5d24; font-size: .77rem; font-weight: 650; }

.hero-lumi {
    position: relative;
    width: min(100%, 505px);
    min-height: 488px;
    justify-self: end;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .64);
    border-radius: 48% 52% 48% 52% / 44% 45% 55% 56%;
    background: #ffec8b;
    box-shadow: 18px 21px 0 rgba(228, 167, 0, .17), var(--tc-shadow);
}

.hero-lumi__sun {
    position: absolute;
    top: -92px;
    right: -78px;
    width: 275px;
    height: 275px;
    border-radius: 50%;
    background: #ffbb2e;
}

.hero-lumi__cloud,
.lumi-portrait__cloud,
.team-collage__cloud {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 249, .78);
}

.hero-lumi__cloud::before,
.hero-lumi__cloud::after,
.lumi-portrait__cloud::before,
.lumi-portrait__cloud::after,
.team-collage__cloud::before,
.team-collage__cloud::after { position: absolute; border-radius: 50%; background: inherit; content: ""; }

.hero-lumi__cloud--one { top: 62px; left: -22px; width: 122px; height: 27px; }
.hero-lumi__cloud--one::before { width: 54px; height: 54px; bottom: 0; left: 20px; }
.hero-lumi__cloud--one::after { width: 42px; height: 42px; right: 17px; bottom: 0; }
.hero-lumi__cloud--two { top: 235px; right: -36px; width: 143px; height: 34px; opacity: .7; }
.hero-lumi__cloud--two::before { width: 54px; height: 54px; bottom: 0; left: 28px; }
.hero-lumi__cloud--two::after { width: 45px; height: 45px; right: 18px; bottom: 0; }

.hero-lumi__character { position: absolute; z-index: 2; right: 17%; bottom: 0; width: 230px; height: 340px; }
.hero-lumi__hair { position: absolute; top: 30px; left: 35px; width: 160px; height: 163px; border-radius: 48% 52% 43% 46%; background: #4a3d2a; }
.hero-lumi__face { position: absolute; z-index: 1; top: 54px; left: 52px; width: 127px; height: 141px; border-radius: 48% 48% 46% 46% / 44% 45% 57% 58%; background: #f9c897; }
.hero-lumi__face i { position: absolute; top: 59px; width: 8px; height: 10px; border-radius: 50%; background: #382f26; }
.hero-lumi__face i:first-child { left: 34px; }
.hero-lumi__face i:nth-child(2) { right: 34px; }
.hero-lumi__face b { position: absolute; left: 49px; bottom: 29px; width: 28px; height: 14px; border-bottom: 4px solid #d87868; border-radius: 50%; }
.hero-lumi__body { position: absolute; right: 0; bottom: -38px; width: 230px; height: 192px; border-radius: 47% 53% 0 0; background: #fff8e8; }
.hero-lumi__body::after { position: absolute; top: 0; left: 98px; width: 34px; height: 65px; border-radius: 0 0 22px 22px; background: #f9c897; content: ""; }

.chat-bubble {
    position: absolute;
    z-index: 3;
    padding: .8rem 1.05rem;
    border-radius: 18px 18px 18px 4px;
    color: #3b3520;
    background: #fffdf4;
    font-size: .84rem;
    font-weight: 750;
    line-height: 1.45;
    box-shadow: 0 9px 20px rgba(74, 54, 2, .1);
}

.chat-bubble--first { top: 151px; left: 12%; }
.chat-bubble--second { right: 8%; bottom: 102px; border-radius: 18px 18px 4px 18px; background: #fff5bf; }
.hero-lumi__signature { position: absolute; right: 13%; bottom: 20px; z-index: 4; margin: 0; color: rgba(72, 56, 15, .62); font-size: .66rem; font-weight: 850; letter-spacing: .13em; }
.hero-lumi__signature span { color: #fff9df; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.feature-card {
    min-height: 265px;
    padding: 2rem;
    border: 1px solid rgba(224, 210, 163, .6);
    border-radius: var(--tc-radius-lg);
    background: #fffefa;
    box-shadow: 0 8px 20px rgba(90, 74, 24, .035);
}

.feature-card--2 { transform: translateY(1.5rem); background: #fff8d4; }
.feature-card--3 { background: #fbf4e3; }
.feature-card__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.6rem; border-radius: 50%; background: var(--tc-yellow); font-size: 1.35rem; }
.feature-card--2 .feature-card__icon { background: #f7c652; }
.feature-card--3 .feature-card__icon { background: var(--tc-blue); }
.feature-card h3 { margin: 0; font-size: 1.22rem; font-weight: 800; letter-spacing: -.05em; }
.feature-card p { margin: .7rem 0 0; color: var(--tc-muted); font-size: .94rem; }

.story-section { padding-top: 9rem; padding-bottom: 9rem; }
.story-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 2rem; background: #e9f4f4; }
.story-card__art { position: relative; min-height: 440px; overflow: hidden; background: #dceeee; }
.story-card__sun { position: absolute; top: 56px; left: 15%; width: 123px; height: 123px; border-radius: 50%; background: var(--tc-yellow); }
.story-card__hills { position: absolute; border-radius: 50% 50% 0 0; }
.story-card__hills--back { right: -70px; bottom: 105px; width: 490px; height: 265px; background: #b5d9c2; transform: rotate(-8deg); }
.story-card__hills--front { bottom: -85px; left: -80px; width: 560px; height: 280px; background: #87bd79; transform: rotate(7deg); }
.story-card__tiny-cloud { position: absolute; top: 195px; right: 20%; width: 90px; height: 27px; border-radius: 999px; background: #fffefa; }
.story-card__tiny-cloud::before, .story-card__tiny-cloud::after { position: absolute; bottom: 0; border-radius: 50%; background: inherit; content: ""; }
.story-card__tiny-cloud::before { left: 12px; width: 42px; height: 42px; }
.story-card__tiny-cloud::after { right: 11px; width: 35px; height: 35px; }
.story-card__tiny-star { position: absolute; top: 75px; right: 14%; color: #f6aa23; font-size: 1.6rem; }
.story-card__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.5rem, 6vw, 5.4rem); }
.story-card__content > p:not(.eyebrow) { margin: 1.35rem 0 1.6rem; color: var(--tc-muted); }

.home-cta { background: var(--tc-yellow); }
.home-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.home-cta .eyebrow { color: #665719; }
.home-cta .eyebrow > span { background: var(--tc-ink); }

/* Lumi page */
.page-hero { overflow: hidden; }
.page-hero--lumi { padding: clamp(4.5rem, 8vw, 7.7rem) 0; background: #fff0a1; }
.lumi-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); align-items: center; gap: clamp(2.5rem, 8vw, 8rem); }
.lumi-intro__copy h1,
.team-intro h1 { margin: 0; font-size: clamp(3.1rem, 6vw, 5.5rem); font-weight: 850; line-height: 1.06; letter-spacing: -.1em; }
.lumi-intro__copy h1 em { color: #f49b18; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; letter-spacing: -.09em; }
.lumi-intro__tagline { margin: 1.25rem 0 0; color: #3d361c; font-size: 1.25rem; font-weight: 750; }
.lumi-intro__description { max-width: 505px; margin: 1.25rem 0 2rem; color: #625630; }
.lumi-portrait { position: relative; width: min(100%, 420px); min-height: 460px; justify-self: end; overflow: hidden; border: 8px solid rgba(255,255,255,.65); border-radius: 49% 51% 46% 54% / 39% 42% 58% 61%; background: #ffca56; box-shadow: 17px 19px 0 rgba(211, 151, 7, .16); }
.lumi-portrait__image { width: 100%; height: 460px; object-fit: cover; }
.lumi-portrait__illustration { position: absolute; inset: 0; overflow: hidden; }
.lumi-portrait__sun { position: absolute; top: -92px; left: -65px; width: 265px; height: 265px; border-radius: 50%; background: #ffe875; }
.lumi-portrait__spark { position: absolute; z-index: 4; color: #fff6c5; font-size: 1.45rem; }
.lumi-portrait__spark--one { top: 86px; right: 14%; }
.lumi-portrait__spark--two { top: 178px; left: 11%; font-size: .9rem; }
.lumi-portrait__cloud { right: -28px; bottom: 96px; width: 143px; height: 36px; }
.lumi-portrait__cloud::before { bottom: 0; left: 25px; width: 59px; height: 59px; }
.lumi-portrait__cloud::after { right: 17px; bottom: 0; width: 45px; height: 45px; }
.lumi-portrait__character { position: absolute; z-index: 3; bottom: -3px; left: 50%; width: 280px; height: 340px; transform: translateX(-50%); }
.lumi-portrait__hair { position: absolute; top: 18px; left: 51px; width: 178px; height: 185px; border-radius: 49% 51% 42% 48%; background: #41352a; }
.lumi-portrait__face { position: absolute; z-index: 1; top: 47px; left: 74px; width: 135px; height: 147px; border-radius: 49% 51% 46% 45% / 44% 45% 56% 56%; background: #f7c492; }
.lumi-portrait__face b { position: absolute; top: 62px; width: 8px; height: 10px; border-radius: 50%; background: #312b24; }
.lumi-portrait__face b:first-child { left: 34px; }
.lumi-portrait__face b:nth-child(2) { right: 34px; }
.lumi-portrait__face strong { position: absolute; left: 52px; bottom: 30px; width: 31px; height: 15px; border-bottom: 4px solid #d4776a; border-radius: 50%; }
.lumi-portrait__neck { position: absolute; z-index: 2; top: 174px; left: 120px; width: 42px; height: 55px; border-radius: 0 0 23px 23px; background: #f7c492; }
.lumi-portrait__shirt { position: absolute; right: 3px; bottom: 0; width: 275px; height: 175px; border-radius: 49% 51% 0 0; background: #fffdf3; }
.lumi-portrait__shirt::after { position: absolute; top: 0; left: 97px; width: 80px; height: 42px; border-radius: 0 0 50% 50%; background: #f7c492; content: ""; }
.lumi-portrait__label { position: absolute; z-index: 6; right: 20px; bottom: 17px; color: rgba(73, 52, 12, .67); font-size: .73rem; font-weight: 850; letter-spacing: .16em; }
.lumi-portrait__label i { color: #fffaf2; font-size: 1rem; font-style: normal; }

.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; overflow: hidden; border: 1px solid var(--tc-line); border-radius: var(--tc-radius-lg); background: var(--tc-white); }
.profile-grid__item { min-height: 142px; padding: 1.5rem; border-right: 1px solid var(--tc-line); }
.profile-grid__item:last-child { border-right: 0; }
.profile-grid dt { color: #948d70; font-size: .78rem; font-weight: 750; }
.profile-grid dd { margin: .6rem 0 0; font-size: 1.02rem; font-weight: 750; }

.lumi-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.lumi-fact { padding: 2.1rem 1.8rem; border-radius: var(--tc-radius-lg); background: var(--tc-white); text-align: center; box-shadow: 0 9px 24px rgba(78, 62, 15, .04); }
.lumi-fact__icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 1.2rem; border-radius: 50%; background: #fff0a1; font-size: 1.4rem; }
.lumi-fact:nth-child(2) .lumi-fact__icon { background: #dceff2; }
.lumi-fact:nth-child(3) .lumi-fact__icon { background: #ffe2b1; }
.lumi-fact h3 { margin: 0; font-size: 1.12rem; font-weight: 800; letter-spacing: -.05em; }
.lumi-fact p { margin: .55rem 0 0; color: var(--tc-muted); font-size: .9rem; }

.lumi-story-section .section-heading { margin-bottom: 2.25rem; }
.story-timeline { padding: 0; margin: 0; list-style: none; }
.story-timeline li { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 2rem 0 2rem 1.5rem; border-top: 1px solid var(--tc-line); }
.story-timeline li::before { position: absolute; top: 2.5rem; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--tc-yellow-deep); content: ""; }
.story-timeline li:last-child { border-bottom: 1px solid var(--tc-line); }
.story-timeline__year { margin: .1rem 0 0; color: #a39871; font-size: .75rem; font-weight: 850; letter-spacing: .1em; }
.story-timeline h3 { margin: 0; font-size: 1.13rem; font-weight: 800; letter-spacing: -.05em; }
.story-timeline div p { margin: .4rem 0 0; color: var(--tc-muted); }

/* Team */
.page-hero--team { padding: clamp(4.5rem, 8vw, 7.7rem) 0; background: #f0f7e6; }
.team-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .88fr); align-items: center; gap: clamp(2.5rem, 8vw, 8rem); }
.team-intro__copy > p:not(.eyebrow) { max-width: 535px; margin: 1.55rem 0 2rem; color: var(--tc-muted); font-size: 1.08rem; }
.team-collage { position: relative; width: min(100%, 430px); min-height: 430px; justify-self: end; overflow: hidden; border-radius: 54% 46% 50% 50% / 47% 45% 55% 53%; background: #cbe4d0; box-shadow: 16px 18px 0 rgba(103, 150, 93, .12); }
.team-collage__image { width: 100%; height: 430px; object-fit: cover; }
.team-collage__scene { position: absolute; inset: 0; overflow: hidden; }
.team-collage__sun { position: absolute; top: 57px; right: 62px; width: 111px; height: 111px; border-radius: 50%; background: var(--tc-yellow); }
.team-collage__cloud--one { top: 98px; left: -18px; width: 120px; height: 29px; }
.team-collage__cloud--two { top: 205px; right: -24px; width: 88px; height: 23px; opacity: .8; }
.team-collage__cloud--one::before, .team-collage__cloud--two::before { bottom: 0; left: 24px; width: 49px; height: 49px; }
.team-collage__cloud--one::after, .team-collage__cloud--two::after { right: 16px; bottom: 0; width: 38px; height: 38px; }
.team-collage__hill { position: absolute; border-radius: 50% 50% 0 0; }
.team-collage__hill--back { right: -74px; bottom: 57px; width: 430px; height: 260px; background: #a8d29c; transform: rotate(-11deg); }
.team-collage__hill--front { bottom: -93px; left: -82px; width: 550px; height: 280px; background: #75ac6d; transform: rotate(6deg); }
.team-collage__people { position: absolute; z-index: 4; bottom: 56px; left: 50%; display: flex; align-items: end; gap: 4px; height: 135px; transform: translateX(-50%); }
.team-collage__people i { position: relative; display: block; width: 51px; height: 99px; border-radius: 43% 43% 6px 6px; background: #fff6db; }
.team-collage__people i::before { position: absolute; top: -33px; left: 9px; width: 33px; height: 38px; border-radius: 48% 48% 45% 45%; background: #f0b77f; content: ""; }
.team-collage__people i:nth-child(2) { height: 118px; background: #d9ae65; }
.team-collage__people i:nth-child(2)::before { background: #e9b57c; }
.team-collage__people i:nth-child(3) { height: 90px; background: #a8cae8; }
.team-collage__people i:nth-child(3)::before { background: #e7af7b; }
.team-collage__note { position: absolute; z-index: 6; right: 20px; bottom: 18px; color: rgba(57, 83, 54, .68); font-size: .67rem; font-weight: 800; line-height: 1.2; letter-spacing: .04em; text-align: right; }
.team-collage__note b { color: #f7c932; font-size: 1rem; }

.value-list { border-top: 1px solid var(--tc-line); }
.value-list__item { display: grid; grid-template-columns: 85px minmax(220px, .7fr) 1fr minmax(270px, 1.1fr); align-items: center; gap: 1.2rem; padding: 1.7rem 0; border-bottom: 1px solid var(--tc-line); }
.value-list__item > p { margin: 0; color: #b2a77e; font-size: .75rem; font-weight: 850; letter-spacing: .11em; }
.value-list__item h3 { margin: 0; font-size: 1.12rem; font-weight: 800; letter-spacing: -.05em; }
.value-list__item > div { height: 1px; background: #e4dbc1; }
.value-list__item > span { color: var(--tc-muted); font-size: .93rem; }

.team-history-section .section-heading { margin-bottom: 2.25rem; }
.story-timeline--team li::before { background: var(--tc-green); }

.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.member-card { padding: 1.2rem; border: 1px solid var(--tc-line); border-radius: var(--tc-radius-lg); background: #fff; }
.member-card__portrait { position: relative; display: grid; min-height: 238px; place-items: center; overflow: hidden; border-radius: 1rem; background: #fff3c5; }
.member-card:nth-child(2) .member-card__portrait { background: #e5f0e1; }
.member-card:nth-child(3) .member-card__portrait { background: #e6f2f6; }
.member-card__portrait > img { width: 100%; height: 238px; object-fit: cover; }
.member-card__portrait > span { position: relative; display: block; width: 97px; height: 111px; margin-top: 45px; border-radius: 48% 48% 13px 13px; background: #fffdf5; }
.member-card__portrait > span::before { position: absolute; top: -78px; left: 21px; width: 55px; height: 69px; border-radius: 47% 47% 44% 44%; background: #f0bd87; box-shadow: 0 -10px 0 9px #554431; content: ""; }
.member-card__portrait > span i, .member-card__portrait > span b { position: absolute; top: -50px; width: 5px; height: 7px; border-radius: 50%; background: #332a23; }
.member-card__portrait > span i { left: 39px; }
.member-card__portrait > span b { right: 39px; }
.member-card__role { margin: 1.25rem 0 .25rem; color: #a5955e; font-size: .75rem; font-weight: 800; letter-spacing: .07em; }
.member-card h3 { margin: 0; font-size: 1.2rem; font-weight: 800; letter-spacing: -.05em; }
.member-card__bio { min-height: 2.9em; margin: .5rem 0 0; color: var(--tc-muted); font-size: .9rem; }

/* Board list */
.board-hero { padding: clamp(4.25rem, 7vw, 6.5rem) 0 3.75rem; border-bottom: 1px solid var(--tc-line); background: #fff8db; }
.board-hero h1 { margin: 0; font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 850; line-height: 1.1; letter-spacing: -.09em; }
.board-hero > .container > p:not(.eyebrow) { max-width: 490px; margin: 1.1rem 0 0; color: #6e6131; }
.board-section { padding: 3.4rem 0 7rem; }
.board-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2.2rem; }
.board-tabs { display: flex; flex-wrap: wrap; gap: .45rem; }
.board-tabs a { display: inline-flex; align-items: center; gap: .35rem; padding: .46rem .8rem; border: 1px solid transparent; border-radius: 999px; color: #7c755f; font-size: .89rem; font-weight: 700; }
.board-tabs a:hover { color: var(--tc-ink); background: var(--tc-yellow-pale); }
.board-tabs a[aria-current="page"] { border-color: #edc82f; color: var(--tc-ink); background: var(--tc-yellow); }
.board-tabs small { color: inherit; opacity: .58; font-size: .72rem; }
.board-summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.board-summary > p { margin: 0; color: #85806a; font-size: .9rem; }
.board-summary strong { color: var(--tc-ink); }
.board-search { position: relative; width: min(100%, 275px); }
.board-search input { width: 100%; height: 42px; padding: .55rem 2.6rem .55rem .95rem; border: 1px solid var(--tc-line); border-radius: 999px; outline: 0; background: #fff; color: var(--tc-ink); font-size: .86rem; }
.board-search input::placeholder { color: #aaa38a; }
.board-search input:focus { border-color: #eabc00; box-shadow: 0 0 0 3px rgba(255, 213, 61, .3); }
.board-search button { position: absolute; top: 0; right: 0; width: 42px; height: 42px; border: 0; color: #746d50; background: transparent; font-size: 1.55rem; line-height: 1; }
.board-list { overflow: hidden; border-top: 2px solid var(--tc-ink); }
.board-row { display: grid; grid-template-columns: 90px minmax(0, 1fr) 58px; align-items: center; gap: 1.3rem; min-height: 120px; padding: 1.4rem .6rem; border-bottom: 1px solid var(--tc-line); transition: background .18s ease; }
.board-row:hover { background: #fffdf5; }
.board-row__badge { color: #918866; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-align: center; }
.board-row--notice .board-row__badge { width: fit-content; margin: auto; padding: .28rem .42rem; border-radius: .4rem; color: #5b4c15; background: var(--tc-yellow); }
.board-row__category { margin: 0 0 .23rem; color: #9b9167; font-size: .75rem; font-weight: 750; }
.board-row h2 { margin: 0; overflow: hidden; font-size: 1.12rem; font-weight: 780; letter-spacing: -.045em; text-overflow: ellipsis; white-space: nowrap; }
.board-row h2 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.board-row__excerpt { display: -webkit-box; margin: .3rem 0 0; overflow: hidden; color: var(--tc-muted); font-size: .88rem; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.board-row__meta { display: flex; flex-wrap: wrap; gap: .15rem .8rem; margin-top: .55rem; color: #9b967e; font-size: .75rem; }
.board-row__arrow { display: grid; width: 37px; height: 37px; place-items: center; justify-self: end; border-radius: 50%; color: var(--tc-ink); background: #f4f0df; transition: background .18s ease, transform .18s ease; }
.board-row:hover .board-row__arrow { background: var(--tc-yellow); transform: rotate(8deg); }
.board-empty { display: grid; min-height: 315px; place-items: center; align-content: center; padding: 2rem; border-bottom: 1px solid var(--tc-line); text-align: center; }
.board-empty > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 1rem; border-radius: 50%; background: var(--tc-yellow-soft); font-size: 1.5rem; }
.board-empty h2 { margin: 0; font-size: 1.12rem; font-weight: 800; }
.board-empty p { margin: .4rem 0 0; color: var(--tc-muted); font-size: .92rem; }
.board-pagination { display: flex; justify-content: center; gap: .25rem; margin-top: 2.7rem; }
.board-pagination a, .board-pagination span { display: grid; min-width: 35px; height: 35px; place-items: center; border-radius: 50%; color: #827b61; font-size: .87rem; font-weight: 700; }
.board-pagination a:hover, .board-pagination a[aria-current="page"] { color: var(--tc-ink); background: var(--tc-yellow); }
.board-pagination .is-disabled { color: #c6c0ab; }

/* Board detail and Markdown output */
.board-detail-section { padding: 3rem 0 7.5rem; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 2rem; color: #6f6850; font-size: .9rem; font-weight: 750; }
.back-link:hover { color: var(--tc-ink); }
.post-detail { overflow: hidden; border: 1px solid var(--tc-line); border-radius: var(--tc-radius-lg); background: #fff; }
.post-detail__header { position: relative; padding: clamp(1.8rem, 5vw, 3.6rem); border-bottom: 1px solid var(--tc-line); }
.post-detail__category { margin: 0 0 .7rem; color: #9a8e55; font-size: .78rem; font-weight: 850; letter-spacing: .07em; }
.post-detail__header h1 { max-width: 90%; margin: 0; font-size: clamp(1.7rem, 3.2vw, 2.7rem); font-weight: 830; line-height: 1.28; letter-spacing: -.06em; }
.post-detail__meta { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem .9rem; margin-top: 1.35rem; color: #99927a; font-size: .79rem; }
.post-author { display: inline-flex; align-items: center; gap: .43rem; color: #635d48; font-weight: 750; }
.post-author > img, .post-author__fallback { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; }
.post-author__fallback { display: grid; place-items: center; color: #5c522a; background: var(--tc-yellow-soft); font-size: .7rem; }
.post-detail__edit { position: absolute; top: 2rem; right: 2rem; padding: .35rem .6rem; border-radius: .5rem; color: #817a61; font-size: .8rem; font-weight: 750; }
.post-detail__edit:hover { color: var(--tc-ink); background: var(--tc-yellow-pale); }
.post-detail__content { min-height: 260px; padding: clamp(1.8rem, 5vw, 3.6rem); }
.markdown-body { color: #494637; font-size: 1rem; line-height: 1.9; word-break: break-word; }
.markdown-body > :first-child { margin-top: 0; }
.markdown-body > :last-child { margin-bottom: 0; }
.markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4 { margin: 2.1rem 0 .8rem; color: var(--tc-ink); font-weight: 800; letter-spacing: -.045em; }
.markdown-body h2 { font-size: 1.5rem; }
.markdown-body h3 { font-size: 1.22rem; }
.markdown-body p, .markdown-body ul, .markdown-body ol { margin: 0 0 1.15rem; }
.markdown-body ul, .markdown-body ol { padding-left: 1.4rem; }
.markdown-body a { color: #76600a; text-decoration: underline; text-underline-offset: 3px; }
.markdown-body blockquote { margin: 1.5rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--tc-yellow-deep); border-radius: 0 .85rem .85rem 0; color: #6a624c; background: var(--tc-yellow-pale); }
.markdown-body pre { padding: 1rem 1.2rem; overflow: auto; border-radius: .9rem; color: #efe9d7; background: #302f25; }
.markdown-body code { padding: .1rem .35rem; border-radius: .3rem; background: #f2efe3; color: #6c4c00; font-size: .87em; }
.markdown-body pre code { padding: 0; color: inherit; background: transparent; }
.markdown-body img { display: block; max-width: 100%; margin: 1.5rem auto; border-radius: .85rem; }
.markdown-body table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.markdown-body th, .markdown-body td { padding: .65rem .85rem; border: 1px solid var(--tc-line); }
.markdown-body th { background: var(--tc-yellow-pale); }
.post-attachments { margin: 0 clamp(1.8rem, 5vw, 3.6rem) clamp(1.8rem, 5vw, 3rem); padding: 1.2rem; border-radius: 1rem; background: #fbf9f1; }
.post-attachments h2 { margin: 0 0 .6rem; font-size: .83rem; font-weight: 800; }
.post-attachments ul { padding: 0; margin: 0; list-style: none; }
.post-attachments li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; color: #6d674f; font-size: .88rem; }
.post-attachments a { display: inline-flex; align-items: center; gap: .4rem; text-decoration: underline; text-underline-offset: 3px; }
.post-attachments small { color: #99917b; }
.post-adjacent { margin-top: 1.25rem; overflow: hidden; border: 1px solid var(--tc-line); border-radius: var(--tc-radius-md); background: #fff; }
.post-adjacent a { display: grid; grid-template-columns: 76px 1fr; gap: 1rem; padding: .9rem 1.15rem; }
.post-adjacent a + a { border-top: 1px solid var(--tc-line); }
.post-adjacent small { color: #a09675; font-size: .76rem; font-weight: 800; }
.post-adjacent span { overflow: hidden; font-size: .9rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.post-adjacent a:hover { background: var(--tc-yellow-pale); }

.comments-section { margin-top: 3.7rem; }
.comments-section__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; }
.comments-section h2 { margin: 0; font-size: 1.26rem; font-weight: 800; letter-spacing: -.05em; }
.comments-section h2 span { color: #b2961a; }
.comment-form { padding: 1rem; border: 1px solid var(--tc-line); border-radius: var(--tc-radius-md); background: #fff; }
.comment-form label { display: block; margin: 0 0 .55rem; color: #605a44; font-size: .85rem; font-weight: 750; }
.comment-form textarea { display: block; width: 100%; resize: vertical; padding: .75rem .85rem; border: 1px solid transparent; border-radius: .7rem; outline: 0; color: var(--tc-ink); background: #fbfaf5; font-size: .9rem; }
.comment-form textarea:focus { border-color: #e7bd12; background: #fff; box-shadow: 0 0 0 3px rgba(255, 213, 61, .26); }
.comment-form > div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .7rem; }
.comment-form small { color: #a1987d; font-size: .75rem; }
.tc-ajax-feedback { margin: 0 0 .75rem; padding: .66rem .8rem; border: 1px solid transparent; border-radius: .72rem; font-size: .83rem; font-weight: 700; line-height: 1.5; }
.tc-ajax-feedback--success { border-color: #c7e4c5; color: #2d6c38; background: #edf8e9; }
.tc-ajax-feedback--danger { border-color: #efc6bd; color: #963d31; background: #fff0ec; }
.tc-ajax-feedback--info { border-color: #f2de9c; color: #746018; background: #fff9df; }
.tc-ajax-field-error { margin-top: .38rem; color: #a44337; font-size: .78rem; font-weight: 700; }
.comment-form textarea.is-invalid { border-color: #d67261; box-shadow: 0 0 0 3px rgba(214, 114, 97, .14); }
.tc-ajax-form--submitting { opacity: .76; }
.tc-ajax-form--submitting :is(button, input, textarea, select) { cursor: progress; }
.comment-closed, .comment-login-prompt { padding: 1rem 1.1rem; border-radius: .8rem; color: #77705a; background: #f4f1e6; font-size: .9rem; }
.comment-login-prompt { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.comment-login-prompt p { margin: 0; }
.comment-login-prompt a { color: var(--tc-ink); font-weight: 800; white-space: nowrap; }
.comment-list { padding: 0; margin: 1.2rem 0 0; list-style: none; }
.comment-item { display: grid; grid-template-columns: 36px 1fr; gap: .75rem; padding: 1.15rem 0; border-bottom: 1px solid var(--tc-line); }
.comment-item__avatar { display: grid; width: 36px; height: 36px; place-items: center; overflow: hidden; border-radius: 50%; color: #6b5920; background: var(--tc-yellow-soft); font-size: .8rem; font-weight: 800; }
.comment-item__avatar img { width: 100%; height: 100%; object-fit: cover; }
.comment-item__meta { display: flex; align-items: center; gap: .65rem; color: #98917a; font-size: .76rem; }
.comment-item__meta strong { color: #5c5642; font-size: .85rem; }
.comment-item__content { margin-top: .32rem; color: #56513f; font-size: .9rem; line-height: 1.75; word-break: break-word; }
.comment-item__content p { margin: 0; }

/* Footer */
.site-footer { padding: 3.6rem 0 1.8rem; color: #7a745f; background: #2c2b21; }
.brand--footer { color: #fffdf6; }
.brand--footer .brand__mark { background: var(--tc-yellow); }
.site-footer__top { display: grid; grid-template-columns: 1fr auto; gap: .35rem 2rem; align-items: center; padding-bottom: 2.6rem; }
.site-footer__top > p { grid-column: 1; margin: .2rem 0 0; color: #aaa593; font-size: .88rem; }
.site-footer__contact { grid-row: span 2; grid-column: 2; color: #f9e690; font-size: .9rem; font-weight: 750; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .11); font-size: .76rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer__links a:hover { color: #fff8c8; }
.site-footer__notice { margin: 1rem 0 0; color: #e8d876; font-size: .77rem; }

@media (max-width: 991.98px) {
    .site-header__inner { min-height: 67px; }
    .site-header__menu { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 39px; height: 39px; margin-left: auto; padding: 0; border: 0; border-radius: .65rem; background: transparent; }
    .site-header__menu:hover { background: var(--tc-yellow-pale); }
    .site-header__menu i { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--tc-ink); transition: transform .2s ease, opacity .2s ease; }
    .site-header__menu[aria-expanded="true"] i:first-of-type { transform: translateY(6px) rotate(45deg); }
    .site-header__menu[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
    .site-header__menu[aria-expanded="true"] i:last-of-type { transform: translateY(-6px) rotate(-45deg); }
    .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: .8rem; padding: .75rem max(12px, calc((100% - 960px) / 2)); border-top: 1px solid var(--tc-line); border-bottom: 1px solid var(--tc-line); background: rgba(255, 253, 246, .98); box-shadow: 0 12px 28px rgba(68, 59, 31, .08); transform: translateY(-8px); visibility: hidden; opacity: 0; transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
    .site-nav.is-open { transform: translateY(0); visibility: visible; opacity: 1; }
    .site-nav__links { display: grid; gap: .05rem; width: 100%; margin: 0; }
    .site-nav__links a { padding: .6rem .8rem; }
    .site-nav__account { padding: .3rem .8rem .65rem; }
    .hero__grid, .lumi-intro, .team-intro { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: 2.5rem; }
    .hero-lumi { min-height: 410px; }
    .hero-lumi__character { right: 9%; transform: scale(.88); transform-origin: right bottom; }
    .chat-bubble--first { left: 6%; }
    .chat-bubble--second { right: 4%; }
    .feature-card { min-height: 235px; padding: 1.55rem; }
    .story-card__content { padding: 2.7rem; }
    .profile-grid__item { padding: 1.1rem; }
    .value-list__item { grid-template-columns: 60px minmax(220px, .8fr) 1fr; }
    .value-list__item > div { display: none; }
}

@media (max-width: 767.98px) {
    .site-section { padding: 4.7rem 0; }
    .site-section--compact { padding: 3.9rem 0; }
    .section-heading { margin-bottom: 2.3rem; }
    .section-heading--split { display: block; }
    .section-heading--split > p { margin-top: 1rem !important; }
    .hero--home { padding-top: 4.2rem; padding-bottom: 3.7rem; }
    .hero__grid, .lumi-intro, .team-intro { grid-template-columns: 1fr; }
    .hero__content { padding: 0; }
    .hero__content h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
    .hero__lead { font-size: 1rem; }
    .hero__highlights { gap: 1.55rem; margin-top: 2.7rem; }
    .hero-lumi, .lumi-portrait, .team-collage { width: min(100%, 430px); justify-self: center; }
    .hero-lumi { min-height: 405px; }
    .feature-grid, .lumi-facts { grid-template-columns: 1fr; gap: .8rem; }
    .feature-card--2 { transform: none; }
    .feature-card { min-height: auto; }
    .story-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
    .story-card { grid-template-columns: 1fr; }
    .story-card__art { min-height: 290px; }
    .story-card__content { padding: 2.3rem 1.6rem 2.5rem; }
    .home-cta__inner { display: block; }
    .home-cta .tc-button { margin-top: 1.7rem; }
    .page-hero--lumi, .page-hero--team { padding: 4.2rem 0; }
    .lumi-intro__copy h1, .team-intro h1 { font-size: clamp(2.9rem, 13vw, 4.3rem); }
    .lumi-portrait { min-height: 410px; }
    .lumi-portrait__image { height: 410px; }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid__item { min-height: 112px; border-bottom: 1px solid var(--tc-line); }
    .profile-grid__item:nth-child(2n) { border-right: 0; }
    .profile-grid__item:nth-last-child(-n + 2) { border-bottom: 0; }
    .story-timeline li { grid-template-columns: 75px 1fr; gap: .65rem; padding-left: 1.1rem; }
    .value-list__item { grid-template-columns: 43px 1fr; gap: .55rem .8rem; }
    .value-list__item > span { grid-column: 2; }
    .member-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
    .member-card { padding: .8rem; }
    .member-card__portrait, .member-card__portrait > img { min-height: 180px; height: 180px; }
    .member-card__bio { min-height: 0; }
    .board-hero { padding: 3.7rem 0 2.9rem; }
    .board-section { padding: 2rem 0 4.5rem; }
    .board-toolbar { align-items: flex-start; flex-direction: column; margin-bottom: 1.5rem; }
    .board-summary { align-items: flex-start; flex-direction: column; }
    .board-search { width: 100%; }
    .board-row { grid-template-columns: 1fr 38px; gap: .65rem; min-height: 0; padding: 1.1rem 0; }
    .board-row__badge { display: none; }
    .board-row h2 { font-size: 1.02rem; }
    .board-row__meta span:nth-child(3) { display: none; }
    .board-row__arrow { width: 33px; height: 33px; }
    .board-detail-section { padding: 1.7rem 0 4.5rem; }
    .post-detail { border-right: 0; border-left: 0; border-radius: 0; }
    .post-detail__header { padding: 1.65rem 0; }
    .post-detail__content { padding: 1.8rem 0; }
    .post-detail__edit { top: 1.45rem; right: 0; }
    .post-detail__header h1 { max-width: 85%; font-size: 1.7rem; }
    .post-attachments { margin-right: 0; margin-left: 0; }
    .post-adjacent { border-right: 0; border-left: 0; border-radius: 0; }
    .comments-section { margin-top: 2.8rem; }
    .comment-login-prompt { align-items: flex-start; flex-direction: column; }
    .site-footer { padding-top: 2.7rem; }
    .site-footer__top { display: block; padding-bottom: 1.8rem; }
    .site-footer__top > p { margin-top: .6rem; }
    .site-footer__contact { display: inline-block; margin-top: 1.1rem; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 425px) {
    .hero__highlights { gap: 1.25rem; }
    .hero__highlights div + div::before { left: -.65rem; }
    .hero__highlights dt { font-size: 1.05rem; }
    .hero__highlights dd { font-size: .68rem; }
    .hero-lumi { min-height: 350px; border-width: 6px; }
    .hero-lumi__character { right: -2%; transform: scale(.75); }
    .chat-bubble { padding: .65rem .75rem; font-size: .71rem; }
    .chat-bubble--first { top: 112px; }
    .chat-bubble--second { bottom: 76px; }
    .lumi-portrait { min-height: 360px; }
    .lumi-portrait__image { height: 360px; }
    .lumi-portrait__character { transform: translateX(-50%) scale(.86); transform-origin: center bottom; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-grid__item, .profile-grid__item:nth-child(2n) { min-height: auto; padding: 1rem; border-right: 0; border-bottom: 1px solid var(--tc-line); }
    .profile-grid__item:last-child { border-bottom: 0; }
    .member-grid { grid-template-columns: 1fr; }
}

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