@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --bg:         #fafafa;
  --bg-2:       #f3f3f3;
  --surface:    #ffffff;
  --surface-2:  #f8f8f8;
  --border:     rgba(0,0,0,0.09);
  --border-2:   rgba(0,0,0,0.16);
  --ink:        #111111;
  --ink-2:      #333333;
  --muted:      #717171;
  --muted-2:    #aaaaaa;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 2px 12px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.05);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --r-xl: 16px;  --r-lg: 12px;  --r-md: 8px;  --r-sm: 6px;
  --font: 'Inter', system-ui, sans-serif;
  --accent: #d94f83;
}

[data-theme="dark"] {
  --bg:        #0f0f0f;
  --bg-2:      #1a1a1a;
  --surface:   #181818;
  --surface-2: #222222;
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.16);
  --ink:       #f0f0f0;
  --ink-2:     #cccccc;
  --muted:     #888888;
  --muted-2:   #555555;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh; margin: 0;
  font-family: var(--font); color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 200ms, color 200ms;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 30;
  padding: 10px 14px; color: var(--ink); background: var(--surface);
  border: 2px solid var(--ink); border-radius: 999px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

/* ── Shell ───────────────────────────────────────────────────────────────── */
.site-shell { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 16px; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin: 16px 0 40px;
  padding: 8px 8px 8px 18px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(24px);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; object-fit: contain; }

.header-right { display: flex; align-items: center; gap: 4px; }

.site-nav { display: flex; align-items: center; gap: 0; }

.nav-link {
  display: inline-flex; align-items: center;
  min-height: 36px; padding: 0 13px;
  color: var(--muted); font-size: 0.855rem; font-weight: 500;
  border-radius: 999px;
  transition: color 130ms, background 130ms;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--bg-2); }

.nav-toggle {
  display: none; min-height: 36px; padding: 0 14px;
  color: var(--ink); font-size: 0.855rem; font-weight: 500;
  background: none; border: 1px solid var(--border);
  border-radius: 999px; cursor: pointer; align-items: center; justify-content: center;
}

/* Theme toggle button */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--muted); background: none;
  border: 1px solid var(--border);
  border-radius: 999px; cursor: pointer;
  transition: color 130ms, background 130ms, border-color 130ms;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--ink); background: var(--bg-2); border-color: var(--border-2); }
.theme-toggle svg { pointer-events: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3 {
  margin: 0; font-family: var(--font); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.035em; color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 600; letter-spacing: -0.02em; }

p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

.lead {
  color: var(--ink-2); font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.65; margin-top: 14px; max-width: 640px; font-weight: 400;
}

/* ── Page ────────────────────────────────────────────────────────────────── */
.page { min-height: 70vh; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 20px;
  color: var(--bg); font-size: 0.875rem; font-weight: 600; letter-spacing: -0.01em;
  background: var(--ink); border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform 130ms, opacity 130ms;
  cursor: pointer;
}
.button:hover { opacity: 0.85; transform: translateY(-1px); }

.button.secondary {
  color: var(--ink); background: var(--surface);
  border-color: var(--border-2);
}
.button.secondary:hover { background: var(--bg-2); opacity: 1; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: clamp(48px, 8vw, 100px) 0 clamp(28px, 4vw, 56px); }

/* ── Announcement ────────────────────────────────────────────────────────── */
.announcement-strip {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; margin-bottom: 64px;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md); color: inherit;
  transition: box-shadow 130ms;
}
.announcement-strip:hover { box-shadow: var(--shadow-md); }
.announcement-tag {
  flex: 0 0 auto; padding: 3px 9px;
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; border-radius: 999px;
}
.announcement-title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.announcement-body {
  font-size: 0.84rem; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  flex: 1; min-width: 0;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { margin-top: 64px; }
.section-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 10px;
}
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }

/* ── Surfaces ────────────────────────────────────────────────────────────── */
.page-hero, .panel, .loading-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 44px);
}

/* ── Talent grid & cards ─────────────────────────────────────────────────── */
.talent-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.talent-card {
  position: relative; display: flex; flex-direction: column;
  overflow: hidden; color: inherit;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  text-decoration: none;
}
.talent-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--talent-color) 40%, var(--border));
}
.talent-color-bar { height: 4px; background: var(--talent-color, var(--accent)); flex-shrink: 0; }
.talent-image {
  display: block; overflow: hidden; aspect-ratio: 1/1;
  background: color-mix(in srgb, var(--talent-color,#ccc) 10%, var(--bg-2));
}
.talent-image img { width: 100%; height: 100%; object-fit: cover; }
.talent-card-body { padding: 18px 18px 0; flex: 1; }
.talent-card-body > p:first-child { font-size: 0.72rem; color: var(--muted-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.talent-card-body h3 { color: var(--ink); margin-bottom: 7px; }
.talent-desc { font-size: 0.875rem; color: var(--muted); }
.talent-card-action {
  display: inline-flex; align-items: center; gap: 5px;
  margin: 14px 18px 18px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--talent-color, var(--ink));
}
.talent-card-action::after { content: '→'; transition: transform 140ms; }
.talent-card:hover .talent-card-action::after { transform: translateX(3px); }

/* ── Feature & about ─────────────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card {
  padding: 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin-top: 6px; }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.panel h2 { margin-bottom: 12px; font-size: clamp(1.2rem,2vw,1.6rem); }
.panel p { margin-top: 10px; }

/* ── Events ──────────────────────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.event-card {
  display: flex; flex-direction: column; gap: 14px; padding: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  transition: transform 150ms, box-shadow 150ms;
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.event-header { display: flex; align-items: flex-start; gap: 14px; }
.event-date-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; width: 54px; height: 54px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-md);
}
.event-month { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.event-day { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.event-header-text h3 { margin-bottom: 5px; font-size: 1rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.event-pill {
  padding: 3px 8px; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.74rem; font-weight: 500; color: var(--muted);
}
.event-description { font-size: 0.875rem; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 12px; }
.events-empty {
  grid-column: 1/-1; padding: 40px; text-align: center;
  color: var(--muted); border: 1px dashed var(--border-2); border-radius: var(--r-xl);
}

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.legal-card {
  padding: 28px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm); display: block; color: inherit;
  transition: box-shadow 140ms, transform 140ms, border-color 140ms;
}
.legal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--accent); }
.legal-card h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--ink); }
.legal-card p { margin-top: 10px; font-size: 0.9rem; line-height: 1.8; color: var(--ink-2); }

.legal-document { 
  max-width: 760px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(36px, 5vw, 48px);
}
.legal-header { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 2px solid var(--border); }
.legal-header h1 { font-size: 2.2rem; margin-bottom: 12px; }
.legal-meta { font-size: 0.85rem; color: var(--muted); }
.legal-body { display: flex; flex-direction: column; gap: 32px; }
.legal-section { }
.legal-section h2 { 
  font-size: 1.3rem; margin-bottom: 12px; color: var(--ink);
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-section p { 
  color: var(--ink-2); line-height: 1.8; font-size: 0.95rem;
  margin: 0;
}

/* ── Profile page ────────────────────────────────────────────────────────── */
.profile-page { --tc: var(--accent); }

.profile-accent-bar {
  height: 4px; background: var(--tc);
  margin: -40px calc(-1 * (50vw - 50%)) 0;
  width: 100vw; margin-bottom: 36px;
}

.profile-hero {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 36px; align-items: start;
}

/* Art gallery */
.profile-art-container { position: relative; }

.profile-art-main {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--r-xl);
  background: color-mix(in srgb, var(--tc) 8%, var(--bg-2));
  border: 1px solid color-mix(in srgb, var(--tc) 18%, var(--border));
}
.profile-art-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 150ms ease;
}

.art-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.art-thumb {
  width: 52px; height: 52px; overflow: hidden;
  border-radius: var(--r-md); cursor: pointer;
  border: 2px solid transparent;
  background: var(--bg-2); padding: 0;
  transition: border-color 130ms, opacity 130ms;
  flex-shrink: 0;
}
.art-thumb img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.art-thumb:hover { opacity: 0.8; }
.art-thumb.active { border-color: var(--tc); }

/* Profile copy */
.profile-copy { padding-top: 4px; }

.profile-name-row {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap; margin-bottom: 4px;
}
.profile-name-row h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; }
.profile-role-badge {
  padding: 4px 11px; border-radius: 999px; flex-shrink: 0;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  background: color-mix(in srgb, var(--tc) 12%, var(--surface));
  color: color-mix(in srgb, var(--tc) 70%, var(--ink));
  border: 1px solid color-mix(in srgb, var(--tc) 22%, var(--border));
}

.profile-catchphrase {
  font-size: clamp(1rem, 1.8vw, 1.1rem); color: var(--ink-2);
  font-style: italic; margin: 12px 0 18px; line-height: 1.55;
  border-left: 3px solid var(--tc); padding-left: 14px;
}

.profile-desc { font-size: 0.93rem; line-height: 1.75; color: var(--muted); }

/* Data table */
.talent-data-section { margin-top: 28px; }
.talent-data-title {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.talent-data-table { width: 100%; border-collapse: collapse; }
.talent-data-table tr { border-bottom: 1px solid var(--border); }
.talent-data-table tr:last-child { border-bottom: none; }
.talent-data-table td {
  padding: 10px 0; vertical-align: top;
  font-size: 0.875rem; line-height: 1.5;
}
.talent-data-table td:first-child {
  color: var(--muted); font-weight: 500;
  width: 130px; padding-right: 16px; white-space: nowrap;
}
.talent-data-table td:last-child { color: var(--ink-2); }

/* Status */
.status-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; margin-top: 22px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.status-dot {
  flex: 0 0 auto; width: 9px; height: 9px;
  background: var(--muted-2); border-radius: 999px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--muted-2) 20%, transparent);
}
.status-card.live .status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.2);
  animation: pulse 1.5s ease-in-out infinite;
}
.status-card strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.status-card span { font-size: 0.8rem; color: var(--muted); }

/* Profile lower grid */
.profile-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.profile-lower .profile-section:nth-child(5) { grid-column: 1 / -1; }

.profile-section {
  padding: 26px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.profile-lower .profile-section:nth-child(4) { overflow: hidden; padding-bottom: 0; }

/* Stream section */
.profile-stream-section {
  aspect-ratio: 16/9;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  grid-column: 1 / -1;
}
.stream-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stream-message-card {
  padding: 32px;
  text-align: center;
  max-width: 500px;
  z-index: 1;
}
.stream-message-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
  border: none;
  padding-bottom: 0;
}
.stream-message-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 0.95rem;
}
.stream-message-card .empty-note {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.profile-section h2 {
  font-size: 0.92rem; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 16px; color: var(--ink);
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

/* Model group label inside credits */
.model-group-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 8px;
}

/* Social links */
.social-grid { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; list-style: none; }
.social-link {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 34px; padding: 0 11px;
  color: var(--ink); font-size: 0.8rem; font-weight: 500;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 999px;
  transition: background 130ms, border-color 130ms, transform 130ms;
}
.social-link svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.social-link:hover { background: var(--surface); border-color: var(--border-2); transform: translateY(-1px); }

/* Credits */
.credit-list { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; list-style: none; }
.credit-pill {
  display: inline-flex; align-items: center;
  min-height: 32px; padding: 0 11px;
  color: var(--ink); font-size: 0.8rem; font-weight: 500;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px;
  transition: background 130ms;
}
.credit-pill[href]:hover { background: var(--surface); border-color: var(--border-2); }

/* Videos */
.video-list { display: grid; gap: 7px; padding: 0; margin: 0; list-style: none; }
.video-card {
  display: grid; grid-template-columns: 90px 1fr; gap: 11px; align-items: center;
  padding: 9px; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); transition: background 130ms, border-color 130ms;
}
.video-card:hover { background: var(--surface); border-color: var(--border-2); }
.video-card img { width: 90px; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-sm); background: var(--bg-2); }
.video-card strong { display: block; font-size: 0.83rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.video-card span { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 4px; }

/* Stream embed */
.stream-embed { 
  display: none;
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden; 
  border-radius: 0;
  background: #000; 
  width: 100%;
  height: 100%;
  z-index: 2;
}
.stream-embed.visible { display: flex; align-items: center; justify-content: center; }
.stream-embed iframe { display: block; width: 100%; height: 100%; aspect-ratio: 16/9; border: 0; }

/* Empty */
.empty-note {
  padding: 13px; color: var(--muted); font-size: 0.875rem;
  background: var(--bg-2); border: 1px dashed var(--border-2); border-radius: var(--r-lg);
}

/* ── Talent page BG tint ─────────────────────────────────────────────────── */
.talent-page-bg { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.talent-page-bg.lychibe {
  background:
    radial-gradient(ellipse at 85% 5%, rgba(234,179,8,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 95%, rgba(234,179,8,0.06) 0%, transparent 45%);
}
.talent-page-bg.mozzikito {
  background:
    radial-gradient(ellipse at 85% 5%, rgba(220,38,38,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 95%, rgba(220,38,38,0.06) 0%, transparent 45%);
}
.talent-page-bg.sayuyoon {
  background:
    radial-gradient(ellipse at 85% 5%, rgba(59,130,246,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 95%, rgba(59,130,246,0.06) 0%, transparent 45%);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 14px; margin: 72px 0 28px; padding: 18px 22px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
}
.footer-left { display: flex; flex-direction: column; gap: 2px; }
.footer-left strong { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.footer-left span { font-size: 0.78rem; color: var(--muted); }

.footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.footer-link {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 32px; padding: 0 11px;
  color: var(--muted); font-size: 0.8rem; font-weight: 500;
  border-radius: 999px;
  transition: color 130ms, background 130ms;
}
.footer-link:hover { color: var(--ink); background: var(--bg-2); }
.footer-link svg { flex-shrink: 0; }

/* ── Animation ───────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.22); }
}

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

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .site-header { align-items: flex-start; border-radius: var(--r-xl); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; padding: 10px;
    background: color-mix(in srgb, var(--surface) 97%, transparent);
    border: 1px solid var(--border); border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
  }
  .site-nav.open { display: flex; }
  .nav-link { justify-content: center; min-height: 44px; }
  .talent-grid, .about-layout, .feature-grid,
  .profile-hero, .profile-lower { grid-template-columns: 1fr; }
  .events-grid, .legal-grid { grid-template-columns: 1fr; }
  .profile-hero { grid-template-columns: 1fr; }
  .profile-art-main { aspect-ratio: 4/3; max-height: 420px; }
  .section-heading { flex-direction: column; align-items: flex-start; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .announcement-body { white-space: normal; }
  .legal-document { padding: 28px 24px; }
  .profile-stream-section { aspect-ratio: 16/9; }
}

@media (max-width: 560px) {
  .site-shell { width: calc(100% - 24px); }
  .brand img { height: 40px; }
  h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero { padding: 32px 0 20px; }
  .talent-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .social-link span { display: none; }
  .social-link { min-height: 36px; padding: 0 10px; }
  .video-card { grid-template-columns: 1fr; }
  .video-card img { width: 100%; aspect-ratio: 16/9; height: auto; }
  .art-thumbs { gap: 6px; }
  .art-thumb { width: 44px; height: 44px; }
  .stream-message-card { padding: 24px; max-width: none; }
  .stream-message-card h2 { font-size: 1.1rem; }
  .stream-message-card p { font-size: 0.85rem; }
}
