:root {
  --bg: #161616;
  --bg-soft: #1e1e1e;
  --bg-card: #242424;
  --bg-elevated: #2d2d2d;
  --fg: #f2f0eb;
  --fg-muted: #b3b1aa;
  --fg-dim: #84827b;
  --accent: #d9d7cf;
  --accent-soft: #f0eee8;
  --accent-dim: #8f8d86;
  --border: #353535;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --maxw: 1180px;
  --header-h: 64px;
}

[data-theme="light"] {
  --bg: #f7f5f0;
  --bg-soft: #efede5;
  --bg-card: #ffffff;
  --bg-elevated: #fbfaf6;
  --fg: #222222;
  --fg-muted: #4c4c48;
  --fg-dim: #88867f;
  --accent: #2a2a2a;
  --accent-soft: #5c5a54;
  --accent-dim: #9a9891;
  --border: #ddd9ce;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}

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

a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  width: auto; height: auto; clip: auto;
  background: var(--accent); color: #111; padding: 10px 16px; border-radius: 6px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.logo-profile {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; color: var(--fg);
  white-space: nowrap;
}

.logo-profile img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

.logo-profile .logo-name { display: none; }

@media (min-width: 480px) {
  .logo-profile .logo-name { display: inline; }
}

.nav-desktop { display: none; align-items: center; gap: 4px; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  padding: 8px 12px; border-radius: 8px;
  text-decoration: none; color: var(--fg-muted);
  font-size: 14.5px; font-weight: 500;
  transition: color .2s, background .2s;
}

.nav-desktop a:hover { color: var(--accent-soft); background: var(--bg-soft); }

.nav-desktop a.active { color: var(--accent-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-select {
  background: var(--bg-soft); color: var(--fg);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 8px; font-size: 13px; font-family: var(--font-body);
  cursor: pointer;
}

.theme-toggle {
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--fg); border-radius: 8px;
  width: 34px; height: 34px; display: inline-flex;
  align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s;
}

.theme-toggle:hover { background: var(--bg-elevated); }

.theme-icon-dark { display: none; }
.theme-icon-light { display: block; }

[data-theme="dark"] .theme-icon-dark { display: block; }
[data-theme="dark"] .theme-icon-light { display: none; }

.mobile-toggle {
  display: inline-flex; background: none; border: none; color: var(--fg);
  padding: 8px; cursor: pointer;
}

@media (min-width: 900px) {
  .mobile-toggle { display: none; }
}

.mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.6);
}

.mobile-overlay.open { display: block; }

.mobile-overlay-inner {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--bg); border-left: 1px solid var(--border);
  padding: 24px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
}

.mobile-overlay-inner a {
  padding: 12px 10px; border-radius: 8px;
  text-decoration: none; color: var(--fg-muted); font-size: 16px;
}

.mobile-overlay-inner a:hover { background: var(--bg-soft); color: var(--accent-soft); }

.mobile-overlay-close {
  align-self: flex-end; background: none; border: 1px solid var(--border);
  color: var(--fg); border-radius: 8px; padding: 6px 12px; cursor: pointer;
  margin-bottom: 8px;
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: brightness(.55) saturate(.85);
}

.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%),
              linear-gradient(to right, rgba(14,13,11,.6), transparent 70%);
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 96px 24px 72px;
}

.hero-kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid var(--accent-dim);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 22px;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 700; line-height: .95; letter-spacing: .01em;
  color: var(--fg);
}

.hero-sub {
  max-width: 620px; font-size: 18px; color: var(--fg-muted);
  margin: 0 0 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1px solid var(--accent-dim);
  transition: transform .15s, background .2s, color .2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--accent); color: #17140c; border-color: var(--accent); }

.btn-primary:hover { background: var(--accent-soft); }

.btn-ghost { color: var(--fg); }

.btn-ghost:hover { background: var(--bg-soft); color: var(--accent-soft); }

/* ---------- Sections ---------- */

.section { padding: 72px 0; }

.section-tight { padding: 48px 0; }

.section-head { margin-bottom: 36px; }

.section-kicker {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent-soft); margin: 0 0 10px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700; margin: 0; line-height: 1.1;
}

.section-head p { color: var(--fg-muted); margin: 12px 0 0; max-width: 720px; }

/* ---------- Cards / grids ---------- */

.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 24px; }

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block; text-decoration: none; color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dim);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }

.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}

.card:hover .card-media img { transform: scale(1.04); }

.card-media .year-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(14,13,11,.8); color: var(--accent-soft);
  border: 1px solid var(--accent-dim);
  font-size: 12px; letter-spacing: .15em;
  padding: 4px 10px; border-radius: 999px;
}

.card-body { padding: 18px 20px 20px; }

.card-body h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; margin: 0 0 6px;
}

.card-body p { margin: 0; color: var(--fg-muted); font-size: 14.5px; }

/* ---------- Bio (home) ---------- */

.bio-wrap { display: grid; gap: 36px; }

@media (min-width: 900px) {
  .bio-wrap { grid-template-columns: 380px 1fr; align-items: start; }
}

.bio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky; top: calc(var(--header-h) + 24px);
}

.bio-photo img { width: 100%; }

.bio-content p { margin: 0 0 16px; color: var(--fg-muted); font-size: 16.5px; }

.bio-content p:last-child { margin-bottom: 0; }

.bio-content strong { color: var(--fg); }

/* ---------- Press ---------- */

.press-grid { display: grid; gap: 20px; }

@media (min-width: 900px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}

.press-card {
  display: flex; gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  align-items: flex-start;
}

.press-thumb {
  width: 120px; height: 90px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  padding: 0; cursor: pointer;
  background: none;
}

.press-thumb img { width: 100%; height: 100%; object-fit: cover; }

.press-card h3 { margin: 0 0 4px; font-size: 17px; font-family: var(--font-display); font-weight: 700; }

.press-card .press-date {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-soft); margin: 0 0 6px;
}

.press-card p { margin: 0; color: var(--fg-muted); font-size: 14.5px; }

.press-open { font-size: 13px; color: var(--accent-soft); background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-body); appearance: none; }

.press-open:hover { text-decoration: underline; }

.press-gallery {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin-top: 24px;
}

.press-clip {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform .2s ease, border-color .2s ease;
  padding: 0;
  font-family: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.press-clip img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }

.press-clip:hover { transform: translateY(-2px); border-color: var(--accent); }

/* ---------- Album detail ---------- */

.album-hero {
  padding: 64px 0 40px;
  display: grid; gap: 32px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .album-hero { grid-template-columns: 340px 1fr; align-items: end; }
}

.album-cover {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  aspect-ratio: 1/1;
}

.album-cover img { width: 100%; height: 100%; object-fit: cover; }

.album-meta { display: flex; flex-direction: column; gap: 14px; }

.album-meta h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700; line-height: 1; margin: 0;
}

.album-meta .album-year {
  color: var(--accent-soft);
  font-size: 14px; letter-spacing: .3em; text-transform: uppercase;
}

.album-meta .album-desc { color: var(--fg-muted); margin: 0; max-width: 640px; }

.album-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.tracklist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 24px;
}

.tracklist li {
  display: flex; gap: 16px; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.tracklist li:last-child { border-bottom: none; }

.tracklist .track-no {
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-size: 18px; min-width: 28px;
}

.tracklist .track-name { font-size: 16px; }

.credits {
  display: grid; gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.credits h3 {
  font-family: var(--font-display); font-size: 24px; margin: 0 0 8px;
}

.credits ul { margin: 0; padding-left: 20px; color: var(--fg-muted); }

.credits li { margin-bottom: 6px; }

/* ---------- Lyrics ---------- */

.lyrics {
  max-width: 640px; margin: 0 auto;
  font-family: var(--font-display);
  font-size: 19px; line-height: 1.9;
  color: var(--fg-muted);
  white-space: pre-line;
}

.lyrics h3 { font-size: 26px; color: var(--fg); margin: 44px 0 4px; }

.lyrics p { margin: 0 0 18px; }

/* ---------- Media (photo-video) ---------- */

.video-frame {
  position: relative; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.photo-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }

@media (min-width: 700px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }

.photo-item { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }

.photo-item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  transition: transform .4s, filter .4s;
  filter: saturate(.9);
}

.photo-item:hover img { transform: scale(1.05); filter: saturate(1.1); }

.photo-item figcaption {
  display: none;
  font-size: 13px; color: var(--fg-muted); padding: 8px 10px;
}

/* ---------- Artists ---------- */

.artist-row {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) { .artist-row { grid-template-columns: 220px 1fr; } }

.artist-photo {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}

.artist-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.artist-photo .no-photo {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  font-family: var(--font-display);
  font-size: 72px; color: var(--accent-dim);
}

.artist-info h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px); margin: 0 0 12px; line-height: 1.05;
}

.artist-info .artist-bio { color: var(--fg-muted); font-size: 16.5px; }

.artist-info .artist-bio p { margin: 0 0 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 14px;
  font-size: 13.5px; color: var(--accent-soft); text-decoration: none;
}

.chip:hover { border-color: var(--accent-dim); }

/* ---------- Contact ---------- */

.contact-card {
  max-width: 560px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
}

.contact-card .contact-mail {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 600; color: var(--accent-soft);
  text-decoration: none;
  border: 1px solid var(--accent-dim);
  border-radius: 999px; padding: 12px 24px; margin: 10px 0 20px;
  transition: background .2s;
}

.contact-card .contact-mail:hover { background: var(--bg-soft); }

.contact-card p { color: var(--fg-muted); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-soft);
}

.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; gap: 18px;
  align-items: center; text-align: center;
}

@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-links { display: flex; gap: 18px; align-items: center; }

.footer-links a {
  color: var(--fg-muted); text-decoration: none; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 6px;
}

.footer-links a:hover { color: var(--accent-soft); }

.footer-copy { color: var(--fg-dim); font-size: 13.5px; }

.footer-copy a { color: var(--fg-muted); }

/* ---------- 404 ---------- */

.notfound {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 40px 24px;
}

.notfound h1 { font-family: var(--font-display); font-size: 96px; margin: 0; color: var(--accent-soft); }

/* ---------- Generic ---------- */

.text-center { text-align: center; }

.mt-0 { margin-top: 0; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  margin: 0 0 8px; line-height: 1.05;
}

.page-sub { color: var(--fg-muted); margin: 0 0 40px; max-width: 680px; }

.section-kicker { display: inline-block; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; font-size: 13px; font-weight: 600; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.card { display: block; background: var(--bg-card, var(--bg-elevated)); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; color: var(--fg); }
.card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media.initials-tile { display: flex; align-items: center; justify-content: center; }
.card-body { padding: 14px 16px 16px; }
.card-body h3 { margin: 0 0 6px; font-size: 18px; }
.card-body p { margin: 0; color: var(--fg-muted); font-size: 13px; }

.initials-tile { background: linear-gradient(135deg, var(--bg-elevated), var(--bg-soft)); color: var(--accent); font-family: var(--font-display); font-weight: 700; }

.artist-layout { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: start; }
.artist-photo { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.artist-photo img { width: 100%; display: block; }
.artist-bio { color: var(--fg-muted); line-height: 1.75; max-width: 720px; }
.back-link { color: var(--fg-muted); text-decoration: none; font-size: 14px; }
.back-link:hover { color: var(--accent-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 24px; }
.chip-label { color: var(--fg-muted); font-size: 13px; margin-right: 4px; }
.chip { display: inline-block; border: 1px solid var(--border); color: var(--fg-muted); border-radius: 999px; padding: 5px 12px; font-size: 13px; }
.chip:hover { border-color: var(--accent); color: var(--accent-soft); }

.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.press-card { display: grid; grid-template-columns: 150px 1fr; gap: 16px; align-items: center; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.press-thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; }
.press-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.press-card h3 { margin: 0 0 4px; font-size: 16px; }
.press-date { margin: 0 0 6px; color: var(--accent); font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; }
.press-card p:not(.press-date) { margin: 0 0 8px; color: var(--fg-muted); font-size: 13.5px; line-height: 1.55; }
.press-open { color: var(--accent-soft); font-size: 13px; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.press-open:hover { color: var(--accent); }

.contact-card { max-width: 560px; margin: 0 auto; text-align: center; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 18px; padding: 56px 40px; }
.contact-card p { color: var(--fg-muted); line-height: 1.7; }
.contact-mail { display: inline-flex; align-items: center; gap: 10px; margin: 22px 0 6px; font-size: 20px; color: var(--accent-soft); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.contact-mail:hover { color: var(--accent); }

@media (max-width: 768px) {
  .artist-layout { grid-template-columns: 1fr; }
  .press-card { grid-template-columns: 1fr; }
  .press-thumb { max-width: 320px; }
}

.dropdown { position: relative; }
.dropdown-trigger {
  background: transparent; border: none; cursor: pointer;
  color: var(--fg-muted); font-size: 14px; font-family: var(--font-body);
  padding: 8px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px;
  transition: color .15s ease, background .15s ease;
}
.dropdown-trigger:hover { color: var(--accent-soft); background: var(--bg-soft); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 260px; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px; box-shadow: 0 18px 40px rgba(0,0,0,.35); z-index: 60;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
.dropdown-menu::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.dropdown-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 9px; color: var(--fg); font-size: 14px; text-decoration: none;
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--accent-soft); }
.dropdown-menu a em { font-style: normal; color: var(--fg-muted); font-size: 12px; letter-spacing: .5px; }
.dd-group-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); padding: 10px 12px 4px; }
.dd-divider { height: 1px; background: var(--border); margin: 6px 0; }
.dropdown-menu-artists { min-width: 240px; column-count: 1; }

.mob-group { color: var(--accent); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; margin: 18px 0 4px; }
.mobile-overlay-inner a { font-size: 15px; font-weight: 500; }

.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 8px; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.t-item { position: relative; padding-left: 62px; margin-bottom: 26px; }
.t-dot { position: absolute; left: 18px; top: 30px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 4px solid var(--bg-elevated); box-shadow: 0 0 0 2px var(--accent); }
.t-card { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: center; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px 12px 12px; color: var(--fg); transition: transform .18s ease, border-color .18s ease; }
.t-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.t-card img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; display: block; }
.t-body { min-width: 0; }
.t-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.t-head h3 { margin: 0 0 6px; font-size: 19px; }
.t-year { color: var(--accent); font-size: 13px; letter-spacing: 1.5px; white-space: nowrap; }
.t-body p { margin: 0; color: var(--fg-muted); font-size: 13.5px; line-height: 1.55; }
@media (max-width: 520px) {
  .t-card { grid-template-columns: 72px 1fr; padding: 10px 12px 10px 10px; }
  .t-card img { width: 72px; height: 72px; }
  .t-head { flex-direction: column; align-items: flex-start; gap: 2px; }
  .t-head h3 { font-size: 16px; margin-bottom: 3px; }
}

.sec-title { font-family: var(--font-display); font-size: 24px; margin: 48px 0 16px; color: var(--fg); }
.quote { margin: 0 0 18px; padding: 18px 22px; border-left: 3px solid var(--accent); background: var(--bg-soft); border-radius: 0 12px 12px 0; }
.quote p { margin: 0 0 8px; color: var(--fg-muted); font-style: italic; line-height: 1.7; }
.quote footer { color: var(--fg-dim); font-size: 13px; }

/* ---------- Lightbox ---------- */

.lb {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
}
.lb.open { display: flex; }

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.88);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

.lb-panel {
  position: relative; z-index: 2;
  width: min(94vw, 1080px); height: min(92vh, 900px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}

.lb-stage {
  flex: 1; min-height: 0; overflow: auto;
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
}
.lb-stage.dragging { cursor: grabbing; }
.lb-stage img {
  max-width: 100%; max-height: 100%;
  transform-origin: center;
  transition: transform .15s ease;
  user-select: none;
}

.lb-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-top: 1px solid var(--border);
}

.lb-caption { flex: 1; font-size: 13.5px; color: var(--fg-muted); text-align: center; font-family: var(--font-body); }

.lb-zoom-btn, .lb-close {
  background: var(--bg-elevated);
  color: var(--fg); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  width: 34px; height: 34px; line-height: 1;
  font-size: 16px; display: inline-flex; align-items: center; justify-content: center;
}
.lb-zoom-btn:hover, .lb-close-btn:hover { border-color: var(--accent); }

.lb-close-btn { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; font-size: 18px; }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(20,20,20,.75); color: var(--fg);
  border: 1px solid var(--border); cursor: pointer;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 10px; } .lb-next { right: 10px; }
.lb-nav:hover { border-color: var(--accent); }
.lb-nav[hidden] { display: none; }

.lb-pdf { font-size: 13px; color: var(--accent-soft); text-decoration: underline; white-space: nowrap; }
.lb-pdf:hover { text-decoration: none; }

@media (max-width: 640px) {
  .lb-nav { width: 38px; height: 38px; font-size: 16px; }
}
