/* ============================================
   SUSU PORTFOLIO — Design System
   Accent: Electric Teal (#0d9488 / teal-600)
   Font: Geist (display) + system sans (body)
   Base: Zinc-950 (#09090b) deep dark
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #09090b;
  --bg-secondary: #111113;
  --bg-elevated: #18181b;
  --bg-card: #1c1c1f;
  --fg-primary: #f4f4f5;
  --fg-secondary: #d4d4d8;
  --fg-muted: #a1a1aa;
  --accent: #0d9488;
  --accent-light: #14b8a6;
  --accent-dim: rgba(13, 148, 136, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-display: 'PingFang SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-body: 'PingFang SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --section-pad-y: clamp(5rem, 10vh, 8rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

html, body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--fg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: #fff; }

/* --- Typography --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg-primary);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--fg-primary);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.label-tag {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.body-lg {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: var(--fg-secondary);
  font-weight: 400;
}

.body-sm {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-secondary);
}

/* --- Layout Utilities --- */
.section-full {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

.section-pad {
  padding: var(--section-pad-y) clamp(1.25rem, 4vw, 4rem);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Navigation --- */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem clamp(1.25rem, 3vw, 3rem);
  transition: background 0.4s var(--ease-out-expo), backdrop-filter 0.4s;
}

.nav-wrapper.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active { color: var(--fg-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.lang-toggle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--fg-secondary);
  transition: all 0.3s var(--ease-out-expo);
  text-transform: uppercase;
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-nav-overlay.visible {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-secondary);
  transition: color 0.3s;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active { color: var(--accent); }

/* --- Hero Section --- */
.hero {
  min-height: 100dvh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.hero-name {
  margin-bottom: 0.5rem;
}

.hero-name-en {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--fg-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-sub {
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-secondary);
  transition: all 0.3s var(--ease-out-expo);
}

.hero-tag:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-dim);
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: transparent;
  color: var(--fg-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-outline:hover {
  border-color: var(--fg-primary);
  background: rgba(255,255,255,0.05);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Grain overlay for hero */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Section Shared --- */
.section-header {
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  display: block;
  margin-bottom: 1rem;
}

.section-desc {
  display: block;
  max-width: 560px;
}

.divider-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-bottom: 1.5rem;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-text-col { }

.about-image-col {
  position: relative;
}

/* Card stack → click-to-cycle (visual stack, click interaction) */
.about-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.stack-img {
  position: absolute;
  width: 72%;
  height: 80%;
  left: 14%;
  top: 10%;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.25s ease, z-index 0s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* Active card — centered front */
.stack-img.active {
  opacity: 1;
  transform: translate(0, 0) rotate(0) scale(0.96);
  z-index: 5;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* Cards behind the active one — fanned out */
.stack-img.behind-1 { opacity: 0.85; transform: translate(-44px, 2px) rotate(-8deg) scale(0.86); z-index: 1; }
.stack-img.behind-2 { opacity: 0.75; transform: translate(-22px, 1px) rotate(-4deg) scale(0.90); z-index: 2; }
.stack-img.behind-3 { opacity: 0.75; transform: translate(20px, 1px) rotate(4deg) scale(0.90); z-index: 3; }
.stack-img.behind-4 { opacity: 0.85; transform: translate(40px, 2px) rotate(7deg) scale(0.86); z-index: 4; }
.stack-img.behind-5 { opacity: 0.7; transform: translate(56px, 3px) rotate(10deg) scale(0.82); z-index: 0; }

/* Dot indicators */
.about-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.about-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-dot.active {
  background: var(--accent-light);
  transform: scale(1.25);
}

.about-image-col::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* --- Credentials Section --- */
.credentials-section {
  background: var(--bg-secondary);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.cred-card {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.cred-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.35s;
}

.cred-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.cred-card:hover::before { opacity: 1; }

.cred-icon {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.cred-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-secondary);
  line-height: 1.5;
}

/* --- Experience Section --- */
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.exp-highlights { }

.exp-highlight-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.exp-highlight-item:last-child { border-bottom: none; }

.exp-hl-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--fg-primary);
}

.exp-hl-role {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 500;
}

.artists-cloud {
  position: relative;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
}

.artists-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.artist-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.artist-name {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.25s;
  white-space: nowrap;
  line-height: 1.4;
}

.artist-name:hover {
  color: var(--fg-primary);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.exp-counter {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.artists-cloud .exp-counter {
  margin-top: 1.25rem;
  justify-content: center;
}

.exp-counter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.exp-counter-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* --- Choreography Section --- */
.choreography-section {
  background: var(--bg-secondary);
}

.choreo-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.choreo-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  transition: all 0.35s var(--ease-out-expo);
  align-items: center;
  box-sizing: border-box;
  max-width: 100%;
}

.choreo-card:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.choreo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.choreo-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.choreo-client {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.choreo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.choreo-desc {
  font-size: 0.84rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-top: 0.2rem;
}

/* --- Video Works Section --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: var(--bg-elevated);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s;
}

.video-card:hover .video-thumb {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out-expo);
  pointer-events: none;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1);
  background: var(--accent);
  border-color: var(--accent);
}

.video-play-btn svg {
  width: 20px; height: 20px;
  fill: #fff;
  margin-left: 3px;
}

/* ---- Video Modal (lightbox player) ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.video-modal-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
  line-height: 1;
  padding: 4px 8px;
}

.video-modal-close:hover { opacity: 1; }

.video-modal-content video {
  width: 100%;
  height: calc(100% - 44px);
  object-fit: contain;
  display: block;
  cursor: pointer;
}

/* Custom controls bar */
.video-modal-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  user-select: none;
}

.vctrl-play-pause {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vctrl-play-pause svg {
  width: 18px; height: 18px;
  fill: #fff;
  display: block;
}

.vctrl-progress-wrap {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.vctrl-buffered {
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}

.vctrl-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: transparent;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.vctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent-light);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}

.vctrl-progress:hover::-webkit-slider-thumb { opacity: 1; }
.vctrl-progress:hover { height: 5px; }

.vctrl-progress::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--accent) var(--progress-value, 0%), rgba(255,255,255,0.2) var(--progress-value, 0%));
  border-radius: 2px;
}

.vctrl-time {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 85px;
  text-align: right;
  flex-shrink: 0;
}

.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.85rem;
  font-weight: 500;
  pointer-events: none;
}

/* --- Awards Section --- */
.awards-section {
  background: var(--bg-secondary);
}

.awards-timeline {
  position: relative;
  padding-left: 2rem;
}

.awards-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.award-year-group {
  margin-bottom: 2.5rem;
}

.award-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1rem;
  position: relative;
}

.award-year::before {
  content: '';
  position: absolute;
  left: -2.35rem; top: 0.35rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid var(--bg-secondary);
}

.award-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.award-item {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}

.award-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fg-muted);
}

/* --- Contact Section --- */
.contact-section {
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.35s var(--ease-out-expo);
  min-width: 180px;
}

.contact-method:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-3px);
}

.contact-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method--copy {
  cursor: pointer;
}

.contact-method--copy:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-3px);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-type {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-cta {
  margin-top: 3.5rem;
}

.cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
}

.footer-note {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* --- Scroll Reveal Helpers --- */
/* Default visible for no-JS fallback; GSAP animations.js overrides via inline style */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 50vh;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
  }

  .hero-content { padding: 3rem 1.5rem; }

  .about-grid { grid-template-columns: 1fr; }

  .about-image-col {
    max-width: 360px;
    margin: 0 auto;
  }

  /* Mobile: stack gallery same as desktop */

  .experience-layout { grid-template-columns: 1fr; }

  .choreo-card {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 4rem;
  }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-content { padding: 2.5rem 1.25rem; }

  .hero-tags { gap: 0.4rem; }
  .hero-tag { font-size: 0.72rem; padding: 0.3rem 0.65rem; }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-outline {
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .choreo-card {
    grid-template-columns: 1fr;
  }

  .choreo-card img {
    aspect-ratio: 16/9;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    width: 100%;
    max-width: 300px;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .credentials-grid { grid-template-columns: 1fr; }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .artist-names { gap: 0.35rem; }
  .artist-name { font-size: 0.74rem; padding: 0.25rem 0.55rem; }
}

/* Language toggle is handled entirely via JS textContent switching — no CSS display hacks needed */

/* --- Copy Toast --- */
.copy-toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--bg-elevated);
  color: var(--fg-primary);
  border: 1px solid var(--border-hover);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(13,148,136,0.15);
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
