/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --canvas: #FAFAF8;
  --ink: #0A0A0A;
  --ink-light: #3D3D3D;
  --muted: #8A8A8A;
  --line: #DFDFD9;
  --rust: #F5C500;
  --rust-light: #FFD700;
  --dark: #0D0D0D;
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  background-color: var(--canvas);
  color: var(--ink);
  font-family: 'DM Sans', 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background-color: var(--rust); color: var(--ink); }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
em { font-style: italic; }

/* ===== LAYOUT ===== */
.page-content { flex: 1; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color 0.3s, border-color 0.3s;
}
.nav.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 72rem; margin: 0 auto;
  padding: 0 1.5rem; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600; font-size: 26px; letter-spacing: 0.02em;
  transition: color 0.2s;
  display: flex; flex-direction: column; gap: 1px;
}
.nav.transparent .nav__logo { color: white; }
.nav.solid .nav__logo { color: var(--ink); }
.nav__logo .rust { color: var(--rust); }
.nav__list { list-style: none; display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav.transparent .nav__link { color: rgba(255,255,255,0.7); }
.nav.transparent .nav__link:hover { color: white; }
.nav.transparent .nav__link.active { color: var(--rust); border-bottom: 1px solid var(--rust); padding-bottom: 2px; }
.nav.solid .nav__link { color: var(--muted); }
.nav.solid .nav__link:hover { color: var(--ink); }
.nav.solid .nav__link.active { color: var(--rust); border-bottom: 1px solid var(--rust); padding-bottom: 2px; }
.nav__toggle {
  display: none; background: none; border: none; padding: 0;
  transition: color 0.2s;
}
.nav.transparent .nav__toggle { color: white; }
.nav.solid .nav__toggle { color: var(--ink); }
.nav__mobile {
  display: none; background: var(--canvas); border-top: 1px solid var(--line);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  list-style: none; max-width: 72rem; margin: 0 auto;
  padding: 1.25rem 1.5rem; display: flex; flex-direction: column;
}
.nav__mobile a {
  display: block; padding: 0.75rem 0;
  font-family: 'Noto Serif KR', serif;
  font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--rust); }

@media (max-width: 767px) {
  .nav__list { display: none; }
  .nav__toggle { display: block; }
}

/* ===== FOOTER ===== */
footer {
  background: #F2EDE6;
  margin-top: 5rem;
}
.footer__top {
  max-width: 72rem; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: 3.5rem 1.5rem 2.5rem;
}
@media (min-width: 640px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; align-items: start; }
}
.footer__brand-logo {
  font-family: 'Noto Serif KR', serif;
  font-weight: 600; font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink); transition: color 0.2s; display: inline-block;
}
.footer__brand-logo:hover { color: var(--rust); }
.footer__brand-logo .rust { color: var(--rust); }
.footer__brand-tagline {
  margin-top: 0.5rem;
  font-family: 'Noto Serif KR', serif;
  font-size: 13px; color: var(--ink-light); font-weight: 300;
}
.footer__col-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 0.6rem;
}
.footer__col-desc {
  font-family: 'Noto Serif KR', serif;
  font-size: 12.5px; color: var(--ink-light); font-weight: 300;
  line-height: 1.6; margin-bottom: 0.6rem;
}
.footer__col-link {
  font-family: 'Noto Serif KR', serif;
  font-size: 12.5px; color: var(--ink); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s;
}
.footer__col-link:hover { color: var(--rust); }
.footer__badge {
  display: inline-block; padding: 0.15rem 0.5rem;
  font-family: 'Noto Serif KR', serif;
  font-size: 10px; letter-spacing: 0.05em;
  border-radius: 2px; margin-bottom: 0.5rem;
}
.footer__badge--active {
  background: #FFF0A0; color: #1A1A1A;
}
.footer__badge--pending {
  background: #E8E8E4; color: var(--muted);
}
.footer__bottom {
  border-top: 1px solid #DDD8D0;
  padding: 1.25rem 1.5rem;
}
.footer__bottom-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.4rem; align-items: center;
}
@media (min-width: 640px) {
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer__copy {
  font-family: 'Noto Serif KR', serif;
  font-size: 13px; color: var(--muted); letter-spacing: 0.02em;
}
.footer__email {
  font-family: 'Noto Serif KR', serif;
  font-size: 13px; color: var(--muted); transition: color 0.2s;
}
.footer__email:hover { color: var(--ink); }

/* ===== PAGE HEADER ===== */
.page-header { padding-top: calc(76px + 2.5rem); padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.page-header__row { display: flex; align-items: baseline; gap: 1rem; }
.page-header__num {
  font-family: 'Syne', 'Arial Black', sans-serif;
  font-size: 9px; letter-spacing: 0.35em; color: var(--muted); text-transform: uppercase;
}
.page-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: 0.1em; color: var(--ink);
}
.page-header__sub { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--muted); margin-top: 0.5rem; }

/* ===== HOME HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/Main1.jpg');
  background-position: center; background-size: cover;
  filter: blur(1px) brightness(0.75);
  transform: scale(1.06);
}
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
.hero__content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 1.5rem; max-width: 64rem;
}
.hero__label {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-weight: 300; font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.3em; color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; color: white; line-height: 1;
  margin-bottom: 1.25rem; user-select: none; letter-spacing: -0.02em;
  font-size: clamp(3.5rem, 13vw, 10rem);
}
.hero__phrase {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-weight: 300; font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.35em; color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
}
.hero__buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .hero__buttons { flex-direction: row; } }
.btn-primary {
  display: inline-block; padding: 0.75rem 2.25rem;
  background: var(--rust); color: white;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  transition: background-color 0.2s;
}
.btn-primary:hover { background: var(--rust-light); }
.btn-secondary {
  display: inline-block; padding: 0.75rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: white; color: white; }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll-line { width: 1px; height: 2.5rem; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2)); }
.hero__scroll-label { font-size: 8px; letter-spacing: 0.4em; color: rgba(255,255,255,0.3); text-transform: uppercase; }

/* ===== HOME SECTIONS ===== */
.home-section { padding: 5rem 1.5rem; border-top: 1px solid var(--line); }
.home-section__container { max-width: 72rem; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2.5rem; }
.section-head__left { display: flex; align-items: baseline; gap: 1rem; }
.section-head__kr {
  font-family: 'Syne', 'Arial Black', sans-serif;
  font-size: 9px; letter-spacing: 0.35em; color: var(--muted); text-transform: uppercase;
}
.section-head__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.5rem; letter-spacing: 0.08em; color: var(--ink);
}
.section-head__link {
  font-size: 10px; letter-spacing: 0.25em; color: var(--muted);
  text-transform: uppercase; transition: color 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-head__link:hover { color: var(--rust); }

/* ===== GALLERY GRID ===== */
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(4, 1fr); } }

.gallery-card { display: block; }
.gallery-card__img { position: relative; overflow: hidden; background: #F0F0EE; }
.gallery-card__img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-card:hover .gallery-card__img img { transform: scale(1.05); }
.gallery-card__overlay {
  position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.3s;
}
.gallery-card:hover .gallery-card__overlay { background: rgba(10,10,10,0.2); }
.gallery-card__label {
  margin-top: 0.6rem;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-weight: 400; font-size: 0.9rem; color: var(--ink); letter-spacing: 0.01em;
}
.gallery-card__sub {
  margin-top: 0.2rem;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300; font-size: 0.75rem; color: var(--muted); letter-spacing: 0.01em;
}
.gallery-card__cat {
  margin-top: 0.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.works-row {
  display: flex; align-items: flex-start; gap: 0;
}
.works-col { flex: 1; }
.works-col--wide { flex: 2; }
.works-vdivider {
  width: 1px; background: var(--line);
  align-self: stretch; margin: 0 2rem; flex-shrink: 0;
}
.works-drawing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.works-group__label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.85rem;
}
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-1-1 { aspect-ratio: 1; }
.aspect-9-16 { aspect-ratio: 9/16; }

/* ===== PENDING CARD ===== */
.pending-card {
  background: #F0F0EE; display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); transition: border-color 0.2s;
}
.pending-card:hover { border-color: rgba(10,10,10,0.2); }
.pending-card span { font-size: 10px; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; }

/* ===== QUICK LINKS ===== */
.quick-links { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); }
@media (min-width: 768px) { .quick-links { grid-template-columns: repeat(3, 1fr); } }
.quick-link {
  background: var(--canvas); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.75rem; transition: background 0.2s;
}
.quick-link:hover { background: var(--ink); }
.quick-link__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--ink); transition: color 0.2s;
}
.quick-link:hover .quick-link__title { color: white; }
.quick-link__sub { font-size: 10px; letter-spacing: 0.3em; color: var(--muted); transition: color 0.2s; }
.quick-link:hover .quick-link__sub { color: rgba(255,255,255,0.5); }

/* ===== ABOUT PAGE ===== */
.about-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }
.about-photo { aspect-ratio: 3/4; position: relative; overflow: hidden; border: 1px solid var(--line); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-meta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-meta-row { display: flex; gap: 1.25rem; }
.about-meta-label {
  font-size: 9px; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase;
  width: 3rem; flex-shrink: 0; padding-top: 2px;
}
.about-meta-value { color: var(--ink-light); font-size: 0.75rem; line-height: 1.75; white-space: pre-line; }
.about-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 2.25rem; letter-spacing: 0.1em; color: #000; margin-bottom: 0.5rem;
}
.about-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.125rem; letter-spacing: 0.18em; margin-bottom: 2rem;
}
.about-bio { display: flex; flex-direction: column; gap: 1.25rem; }
.about-bio p { font-size: 0.875rem; color: var(--ink-light); line-height: 2; }
.about-bio__intro {
  font-size: 1rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.02em; line-height: 1.8;
}
.section-divider { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.timeline-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 2rem;
}
.timeline { position: relative; }
.timeline__line {
  display: none; position: absolute; left: 3.75rem; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
@media (min-width: 640px) { .timeline__line { display: block; } }
.timeline__list { list-style: none; }
.timeline__item {
  position: relative; display: flex; flex-direction: column; gap: 0.5rem; padding-bottom: 2rem;
}
@media (min-width: 640px) { .timeline__item { flex-direction: row; gap: 2rem; } }
.timeline__year {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem; font-weight: 300; color: var(--muted); transition: color 0.2s;
}
@media (min-width: 640px) { .timeline__year { width: 3.5rem; text-align: right; } }
.timeline__item:hover .timeline__year { color: var(--rust); }
.timeline__dot {
  display: none; flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--muted); background: var(--canvas);
  margin-top: 4px; position: relative; z-index: 1; transition: border-color 0.2s;
}
@media (min-width: 640px) { .timeline__dot { display: block; } }
.timeline__item:hover .timeline__dot { border-color: var(--rust); }
.timeline__body { flex: 1; padding-top: 2px; }
.timeline__body-title { font-size: 0.875rem; color: var(--ink-light); line-height: 1.4; }
.timeline__body-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.timeline__body-type { font-size: 9px; letter-spacing: 0.2em; color: var(--rust); text-transform: uppercase; }
.timeline__body-sep { color: var(--line); font-size: 0.75rem; }
.timeline__body-venue { font-size: 10px; color: var(--muted); }
.qual-list { list-style: none; }
.qual-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.qual-item:last-child { border-bottom: none; }
.qual-dot {
  display: none; flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--muted); background: var(--canvas); margin-top: 4px; transition: border-color 0.2s;
}
@media (min-width: 640px) { .qual-dot { display: block; } }
.qual-item:hover .qual-dot { border-color: var(--rust); }
.qual-title { font-size: 0.875rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.qual-issuer { font-size: 10px; color: var(--muted); margin-top: 4px; }

/* ===== EXHIBITIONS PAGE ===== */
.exh-timeline { margin-top: 3.5rem; position: relative; }
.exh-timeline__line {
  display: none; position: absolute; left: 4.5rem; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
@media (min-width: 640px) { .exh-timeline__line { display: block; } }
.exh-item {
  position: relative; display: flex; flex-direction: column; gap: 1rem; padding-bottom: 2.5rem;
}
@media (min-width: 640px) { .exh-item { flex-direction: row; gap: 2.5rem; } }
.exh-item__year {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1rem; color: var(--muted); transition: color 0.2s;
}
@media (min-width: 640px) { .exh-item__year { width: 4rem; text-align: right; } }
.exh-item:hover .exh-item__year { color: var(--rust); }
.exh-item__dot {
  display: none; flex-shrink: 0; width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--muted); background: var(--canvas);
  margin-top: 6px; position: relative; z-index: 1; transition: border-color 0.2s;
}
@media (min-width: 640px) { .exh-item__dot { display: block; } }
.exh-item--highlight .exh-item__dot { border-color: var(--rust); background: var(--rust); }
.exh-item:not(.exh-item--highlight):hover .exh-item__dot { border-color: var(--rust); }
.exh-item__body { flex: 1; padding-top: 2px; }
.exh-item__head { display: flex; align-items: flex-start; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 4px; }
.exh-item__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 0.9rem; color: var(--ink); letter-spacing: 0.05em;
}
.exh-badge { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; padding: 2px 8px; margin-top: 2px; }
.exh-badge--special { background: rgba(245,197,0,0.15); color: var(--rust); }
.exh-badge--group { background: var(--line); color: var(--muted); }
.exh-item__venue { font-size: 0.75rem; color: var(--ink-light); }

/* ===== WORKS PAGE ===== */
.works-header { padding-top: calc(76px + 2.5rem); padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.works-header__row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.works-header__num {
  font-family: 'Syne', 'Arial Black', sans-serif;
  font-size: 9px; letter-spacing: 0.35em; color: var(--muted); text-transform: uppercase;
}
.works-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: 0.1em; color: var(--ink);
}
.works-tabs { display: flex; border-bottom: 1px solid var(--line); overflow-x: auto; }
.works-tab {
  padding: 1rem 1.5rem; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
  color: var(--muted); transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.works-tab:hover { color: var(--ink); }
.works-tab.active { border-bottom-color: var(--rust); color: var(--rust); }
.works-content { margin-top: 2.5rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.picturebook-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 1024px) { .picturebook-grid { grid-template-columns: repeat(4, 1fr); } }

.book-card { display: block; }
.book-card__img { position: relative; overflow: hidden; background: #F0F0EE; }
.book-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.book-card__info { margin-top: 0.625rem; }
.book-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1rem; color: var(--ink); letter-spacing: 0.04em;
}
.book-card__author { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.02em; }
.drawing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .drawing-grid { grid-template-columns: repeat(3, 1fr); } }

.drawing-grid-new {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 640px) { .drawing-grid-new { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .drawing-grid-new { grid-template-columns: repeat(4, 1fr); } }

.drawing-item { display: block; cursor: pointer; }
.drawing-item__thumb {
  aspect-ratio: 1; position: relative; overflow: hidden; background: #F0F0EE;
}
.drawing-item__thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.drawing-item:hover .drawing-item__thumb img { transform: scale(1.04); }
.drawing-item__overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0);
  display: flex; align-items: flex-end;
  padding: 1rem 1.25rem;
  transition: background 0.3s;
}
.drawing-item:hover .drawing-item__overlay { background: rgba(10,10,10,0.6); }
.drawing-item__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 0.95rem; letter-spacing: 0.06em;
  color: white;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.drawing-item:hover .drawing-item__title { opacity: 1; transform: translateY(0); }

/* Drawing modal */
.dmodal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,10,10,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.dmodal-box {
  background: var(--canvas); border: 1px solid var(--line);
  padding: 2.5rem; max-width: 36rem; width: 100%;
  position: relative;
}
.dmodal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--muted);
  transition: color 0.2s; padding: 0.25rem;
}
.dmodal-close:hover { color: var(--ink); }
.dmodal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.5rem; letter-spacing: 0.08em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.dmodal-desc {
  font-size: 0.825rem; color: var(--ink-light);
  line-height: 1.9;
}

.mediaart-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .mediaart-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .mediaart-grid { grid-template-columns: repeat(4, 1fr); } }

.mediaart-card { display: block; }
.mediaart-thumb { aspect-ratio: 9/16; position: relative; overflow: hidden; background: var(--dark); }
.mediaart-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mediaart-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.1); transition: background 0.2s; }
.mediaart-card:hover .mediaart-overlay { background: rgba(0,0,0,0.4); }
.mediaart-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mediaart-play-btn {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(245,197,0,0.8); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; opacity: 0.8;
}
.mediaart-card:hover .mediaart-play-btn { background: var(--rust); opacity: 1; }
.mediaart-play-btn svg { color: white; margin-left: 3px; }
.mediaart-duration {
  position: absolute; bottom: 0.5rem; right: 0.5rem;
  background: rgba(0,0,0,0.7); padding: 2px 6px;
}
.mediaart-duration span { font-size: 9px; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }
.mediaart-ext { position: absolute; top: 0.5rem; right: 0.5rem; opacity: 0; transition: opacity 0.2s; }
.mediaart-card:hover .mediaart-ext { opacity: 0.8; }
.mediaart-info { margin-top: 0.75rem; }
.mediaart-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.125rem; color: var(--ink); letter-spacing: 0.05em;
}

.meditation-note { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.2em; margin-bottom: 2rem; }
.meditation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .meditation-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .meditation-grid { grid-template-columns: repeat(4, 1fr); } }
.meditation-card { display: block; }
.meditation-thumb { aspect-ratio: 4/5; position: relative; overflow: hidden; background: #F0F0EE; }
.meditation-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.meditation-ig { position: absolute; top: 0.75rem; right: 0.75rem; opacity: 0.25; transition: opacity 0.3s; color: white; }
.meditation-card:hover .meditation-ig { opacity: 0.8; }
.meditation-hover {
  position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.meditation-card:hover .meditation-hover { background: rgba(10,10,10,0.3); }
.meditation-hover svg { opacity: 0; transition: opacity 0.3s; color: white; }
.meditation-card:hover .meditation-hover svg { opacity: 1; }
.meditation-label {
  margin-top: 0.625rem; padding: 0 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 0.875rem; color: var(--ink); letter-spacing: 0.04em;
}

/* ===== NAV LOGO TAGLINE ===== */
.nav__logo-tagline {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-weight: 300; font-size: 10px; letter-spacing: 0.12em;
  transition: color 0.2s; line-height: 1; text-align: center;
}
.nav.transparent .nav__logo-tagline { color: rgba(255,255,255,0.45); }
.nav.solid .nav__logo-tagline { color: var(--muted); }

/* ===== HERO TAGLINE ===== */
.hero__tagline {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-weight: 300; font-size: clamp(0.7rem, 1.5vw, 0.875rem);
  letter-spacing: 0.25em; color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

/* ===== ABOUT BIO TAGLINE ===== */
.about-bio__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1rem; letter-spacing: 0.15em;
  color: var(--rust); margin-bottom: 0.5rem;
}

/* ===== ABOUT QUOTES ===== */
.about-quote {
  border-left: 2px solid var(--rust);
  padding: 1rem 0 1rem 1.25rem;
  margin: 1.5rem 0;
}
.about-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 0.95rem; line-height: 2;
  color: var(--ink-light); letter-spacing: 0.03em;
}
.about-quote--main {
  border-left: none; border-top: 1px solid var(--line);
  padding: 1.5rem 0 0; margin-top: 2rem;
}
.about-quote--main p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1rem; line-height: 1.9;
  color: var(--muted); letter-spacing: 0.02em; font-style: italic;
}

/* ===== MODAL ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,10,10,0.5);
  display: flex; align-items: center; justify-content: center;
}
.modal-box {
  background: var(--canvas); padding: 2.5rem 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  border: 1px solid var(--line);
}
.modal-msg {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: 1.25rem; letter-spacing: 0.1em; color: var(--ink);
}
.modal-close {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  background: none; border: 1px solid var(--line); color: var(--muted);
  padding: 0.5rem 1.5rem; transition: border-color 0.2s, color 0.2s;
}
.modal-close:hover { border-color: var(--ink); color: var(--ink); }

/* ===== UTILITIES ===== */
.rust { color: var(--rust); }
