
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #C9A84C; --gold-light: #E8C97A; --gold-dark: #8B6914;
    --black: #080808; --dark: #0E0E0E; --dark-2: #141414; --dark-3: #1C1C1C; --dark-4: #242424;
    --gray: #888; --gray-light: #BBBBBB; --white: #F5F3EE;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif; --font-mono: 'DM Mono', monospace;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
  body::before {
    content: ''; position: fixed; inset: 0;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.4;
  }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 3rem; display: flex; justify-content: space-between; align-items: center;
    background: rgba(8,8,8,0.92);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.02em; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-edit-btn { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.6); padding: 0.4rem 0.9rem; transition: all 0.3s; display: none; background: none; cursor: pointer; }
  .nav-edit-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
  .nav-edit-btn.visible { display: inline; }

  /* ── HERO v3 — 2-col: photo | tight right stack ── */
  .hero { display: grid; grid-template-columns: 44% 1fr; position: relative; overflow: hidden; background: #080808; }
  .hero-image-panel { position: relative; overflow: hidden; min-height: 600px; z-index: 1; }
  .hero-image-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 40%, #080808 100%), linear-gradient(to bottom, transparent 60%, #080808 100%); }
  .hero-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
  .hero-placeholder { width: 100%; min-height: 600px; background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); display: flex; align-items: center; justify-content: center; }
  .hero-placeholder-icon { font-size: 5rem; opacity: 0.2; }
  .hero-content { display: flex; flex-direction: column; justify-content: flex-start; padding: 8rem 3rem 1rem 2.5rem; gap: 0; }
  .hero-name { font-family: var(--font-display); font-size: clamp(3.5rem, 5.5vw, 6rem); font-weight: 900; line-height: 0.88; letter-spacing: -0.02em; color: var(--white); margin: 0 0 1.25rem; }
  .hero-name em { font-style: italic; color: var(--gold-light); display: block; }

  /* Role row */
  .hero-roles-row { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .hero-role-item { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 64px; padding: 10px 12px; background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.15); }
  .hero-role-item span { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,243,238,0.85); text-align: center; line-height: 1.5; }
  .hero-role-icon { fill: var(--gold); width: 20px; height: 20px; flex-shrink: 0; }

  /* Stats row */
  .hero-stats-row { display: flex; gap: 0; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .hero-stat-item { display: flex; flex-direction: column; gap: 2px; padding-right: 1.25rem; margin-right: 1.25rem; border-right: 1px solid rgba(255,255,255,0.06); }
  .hero-stat-item:last-child { border-right: none; }
  .hero-stat-item--gold .hero-stat-n { color: var(--gold); }
  .hero-stat-n { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1; }
  .hero-stat-l { font-family: var(--font-mono); font-size: 0.44rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }

  /* Digital Presence bar */
  /* ── Hero Digital Presence — editorial weight matching Connect header ── */
  .hero-presence-bar { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .hero-presence-top-row { display: flex; justify-content: flex-start; align-items: center; gap: 0.75rem; margin-bottom: 4px; }
  .hero-presence-explore { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--gold); border: 1px solid var(--gold); padding: 0.4rem 0.9rem; vertical-align: middle; transition: all 0.3s ease; box-shadow: 0 0 0 rgba(201,168,76,0); animation: explore-pulse 2.5s ease-in-out infinite; }
  .hero-presence-bar:hover .hero-presence-explore { background: rgba(201,168,76,0.15); box-shadow: 0 0 12px rgba(201,168,76,0.4); animation: none; }
  @keyframes explore-pulse { 0% { box-shadow: 0 0 4px 1px rgba(201,168,76,0.6); border-color: rgba(201,168,76,0.6); } 50% { box-shadow: 0 0 14px 4px rgba(201,168,76,0.9); border-color: rgba(201,168,76,1); color: #fff; } 100% { box-shadow: 0 0 4px 1px rgba(201,168,76,0.6); border-color: rgba(201,168,76,0.6); } }
  .hero-connect-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.45s ease, opacity 0.3s ease; }
  .hero-connect-body.open { max-height: 600px; opacity: 1; }
  .hero-connect-inner { padding-top: 0.75rem; }
  .hcl-grid { display: flex; flex-direction: column; gap: 0; }
  .hcl-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); text-decoration: none; transition: background 0.15s; }
  .hcl-item:last-child { border-bottom: none; }
  .hcl-item:hover .hcl-label { color: var(--white); }
  .hcl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .hcl-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: rgba(245,243,238,0.7); flex: 1; }
  .hcl-arrow { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gold); opacity: 0.5; }
  .hero-connect-body.open { max-height: 3000px; opacity: 1; }
  .hero-connect-inner { padding-top: 1rem; }
  .hero-presence-eyebrow { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
  .hero-presence-eyebrow svg { flex-shrink: 0; }
  .hero-presence-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: var(--white); font-weight: 400; line-height: 1.1; margin: 0 0 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem; }
  .hero-presence-meta { font-family: var(--font-mono); font-size: 0.52rem; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
  .hero-presence-dots { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
  .hero-presence-dot { width: 9px; height: 9px; border-radius: 50%; opacity: 0.75; flex-shrink: 0; }
  .hero-presence-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
  .hero-presence-icon { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color 0.18s, transform 0.18s; }
  .hero-presence-icon:hover { border-color: var(--hpi-c, var(--gold)); transform: translateY(-2px); }

  /* Bio */
  .hero-bio { margin-bottom: 1.5rem; }
  .hero-bio p { font-family: var(--font-body); font-size: 0.88rem; color: rgba(245,241,232,0.72); line-height: 1.75; margin: 0 0 0.6rem; max-width: 560px; }
  .hero-bio p:last-child { margin: 0; }

  /* CTA */
  .hero-cta-row { display: flex; gap: 0.75rem; }
  .hero-cta-primary { display: inline-flex; align-items: center; gap: 10px; padding: 0.85rem 1.75rem; border: 1px solid var(--gold); color: var(--white); background: rgba(201,168,76,0.08); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; text-decoration: none; transition: background 0.2s; box-shadow: 0 0 0 rgba(201,168,76,0); animation: explore-pulse 2.5s ease-in-out infinite; }
  .hero-cta-primary:hover { background: rgba(201,168,76,0.18); animation: none; box-shadow: 0 0 12px rgba(201,168,76,0.4); }
  .hero-cta-primary svg { fill: var(--gold); }

  /* Responsive */
  .section-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 0.75rem; }
  @media (max-width: 960px) { .hero { grid-template-columns: 1fr; } .hero-image-panel { min-height: 55vw; } .hero-content { padding: 2rem 1.5rem; } }
  @media (max-width: 640px) { .hero-stats-row { flex-wrap: wrap; gap: 0.75rem; } .hero-stat-item { border-right: none; padding-right: 0; margin-right: 0; } }

  /* ── CAREER HIGHLIGHTS v3 — image top, text bottom ── */
  .career-profile-section { background: var(--black); margin-top: -1px; }
  .ch3-wrap { max-width: 1200px; margin: -1.5rem auto 0; padding: 0 2rem 1.5rem; }
  .ch3-header { display: flex; flex-direction: column; justify-content: flex-start; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .ch3-title-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .ch3-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
  .ch3-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(201,168,76,0.08); }
  .ch3-card { background: #0c0c0c; cursor: pointer; transition: transform 0.2s; display: flex; flex-direction: column; }
  .ch3-card:hover { transform: translateY(-3px); z-index: 1; }
  .ch3-img { aspect-ratio: 2/3; overflow: hidden; position: relative; }
  .ch3-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; display: block; }
  .ch3-card:hover .ch3-img img { transform: scale(1.06); }
  .ch3-body { padding: 0.85rem 0.75rem 0.85rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
  .ch3-icon { width: 24px; height: 24px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; }
  .ch3-title { font-family: var(--font-display); font-size: 0.88rem; color: var(--white); font-weight: 400; margin: 0; line-height: 1.2; }
  .ch3-desc { font-family: var(--font-mono); font-size: 0.42rem; color: rgba(255,255,255,0.5); line-height: 1.55; margin: 0; flex: 1; }
  .ch3-viewcomplete { display: inline-flex; align-items: center; gap: 10px; padding: 0.85rem 1.75rem; border: 1px solid var(--gold); color: var(--white); background: rgba(201,168,76,0.08); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; text-decoration: none; transition: background 0.2s; }
  .ch3-viewcomplete:hover { background: rgba(201,168,76,0.18); }
  @media (max-width: 960px) { .ch3-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 580px) { .ch3-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ── CREATIVE WORKS — premium editorial two-up feature ── */
  .works-section { background: var(--black); }
  .works-wrap { max-width: 920px; margin: 0 auto; padding: 3rem 2rem 4rem; }
  .works-header { text-align: left; margin-bottom: 2rem; }
  .works-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
  .works-title-row { margin: 0.35rem 0 0.45rem; }
  .works-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: rgba(245,243,238,0.65); margin: 0; }
  .works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .work-card { background: var(--dark-2); display: flex; flex-direction: column; border: 1px solid rgba(201,168,76,0.12); box-shadow: 0 8px 24px rgba(0,0,0,0.32); transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), box-shadow 0.55s ease, border-color 0.55s ease; }
  .work-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.4); box-shadow: 0 22px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15), 0 0 40px rgba(201,168,76,0.16); }
  .work-card-cover { position: relative; aspect-ratio: 1/1.02; overflow: hidden; max-width: 380px; margin: 0 auto; width: 100%; }
  .work-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(0.16,1,0.3,1); }
  .work-card:hover .work-card-cover img { transform: scale(1.035); }
  .work-card-status { display: inline-flex; align-self: flex-start; width: fit-content; align-items: center; position: relative; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(8,8,8,0.85); color: var(--gold-light); padding: 0.3rem 0.65rem; border: 1px solid rgba(201,168,76,0.4); border-radius: 4px; box-shadow: 0 0 12px rgba(201,168,76,0.18); overflow: hidden; margin-bottom: 0.6rem; transition: box-shadow 0.4s ease, border-color 0.4s ease; }
  .work-card:hover .work-card-status { border-color: rgba(201,168,76,0.65); box-shadow: 0 0 20px rgba(201,168,76,0.32); animation: wp-badge-pulse 1.8s ease-in-out infinite; }
  @keyframes wp-badge-pulse { 0%, 100% { box-shadow: 0 0 16px rgba(201,168,76,0.24); } 50% { box-shadow: 0 0 26px rgba(201,168,76,0.4); } }
  .work-card-status::after { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(110deg, transparent, rgba(232,201,122,0.45), transparent); animation: wp-badge-shimmer 5s ease-in-out infinite; }
  @keyframes wp-badge-shimmer { 0%, 70% { left: -60%; } 90%, 100% { left: 130%; } }
  .work-card-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
  .work-card-meta { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(201,168,76,0.42); margin-bottom: 0.45rem; }
  .work-card-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--warm-white); margin: 0 0 0.55rem; line-height: 1.15; }
  .work-card-desc { font-family: var(--font-mono); font-size: 0.58rem; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; }
  .work-card-cta-row { margin-top: 1.2rem; }
  .work-card-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.01em; cursor: pointer; opacity: 0.8; transition: opacity 0.25s ease; text-decoration: none; }
  .work-card:hover .work-card-cta { opacity: 1; }
  .work-card-cta-arrow { display: inline-block; transition: transform 0.3s ease; }
  .work-card:hover .work-card-cta-arrow { transform: translateX(5px); }
  @media (max-width: 700px) { .works-grid { grid-template-columns: 1fr; gap: 1.75rem; } .work-card-cover { max-width: 100%; } }

  /* ── Custom premium audio player (replaces native <audio controls>) ── */
  .work-player { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.5rem; padding: 0.55rem 0.7rem; background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.18); }
  .wp-playbtn { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gold); background: rgba(201,168,76,0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; }
  .wp-playbtn:hover { background: rgba(201,168,76,0.22); transform: scale(1.08); box-shadow: 0 0 14px rgba(201,168,76,0.25); }
  .wp-playbtn:active { transform: scale(0.94); }
  .wp-playbtn svg { width: 11px; height: 11px; fill: var(--gold-light); transition: opacity 0.2s ease; }
  .work-player.is-playing .wp-icon-play { display: none; }
  .work-player.is-playing .wp-icon-pause { display: block !important; }
  .wp-main { flex: 1; min-width: 0; }
  .wp-waveform { position: relative; height: 16px; cursor: pointer; display: flex; align-items: center; transition: opacity 0.25s ease; }
  .wp-waveform:hover { opacity: 0.85; }
  .wp-waveform-bars { position: absolute; inset: 0; display: flex; align-items: center; gap: 1.5px; }
  .wp-bar { flex: 1; background: rgba(201,168,76,0.26); border-radius: 1px; min-width: 1px; transition: background 0.3s ease, transform 0.3s ease; }
  .wp-waveform:hover .wp-bar { background: rgba(201,168,76,0.4); }
  .wp-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: linear-gradient(to right, rgba(201,168,76,0) 0%, rgba(201,168,76,0.18) 100%); pointer-events: none; overflow: hidden; }
  .wp-progress-fill::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(to right, var(--gold-light) 0, var(--gold-light) 1.5px, transparent 1.5px, transparent 3px); mix-blend-mode: screen; }
  .work-player.is-playing .wp-waveform-bars .wp-bar { animation: wp-pulse 1.1s ease-in-out infinite; }
  .work-player.is-playing .wp-waveform-bars .wp-bar:nth-child(odd) { animation-delay: 0.15s; }
  .work-player.is-playing .wp-waveform-bars .wp-bar:nth-child(3n) { animation-delay: 0.3s; }
  @keyframes wp-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.95; } }
  .wp-time-row { display: flex; justify-content: space-between; margin-top: 0.3rem; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.4); }
  .wp-volume { flex-shrink: 0; display: flex; align-items: center; gap: 0.4rem; }
  .wp-vol-icon { width: 14px; height: 14px; fill: rgba(201,168,76,0.6); cursor: pointer; transition: fill 0.2s ease; }
  .wp-vol-icon:hover { fill: var(--gold-light); }
  .work-player.is-muted .wp-vol-icon { fill: rgba(255,255,255,0.25); }
  .wp-vol-slider { width: 46px; height: 2px; accent-color: var(--gold); cursor: pointer; background: rgba(201,168,76,0.25); }
  @media (max-width: 700px) { .wp-volume { display: none; } }

  .collapsible-section { border-top: 1px solid rgba(255,255,255,0.06); background: var(--black); position: relative; z-index: 2; }
  .collapsible-header { display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 3rem; cursor: pointer; user-select: none; width: 100%; box-sizing: border-box; transition: background 0.2s; }
  .collapsible-header:hover { background: rgba(255,255,255,0.02); }
  .collapsible-header-left { display: flex; align-items: center; gap: 1.75rem; }
  .collapsible-header-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
  .collapsible-header-title { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--white); font-weight: 400; line-height: 1.1; margin-bottom: 8px; }
  .collapsible-header-meta { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
  .ch-preview-icons { display: flex; align-items: center; gap: 7px; margin-top: 2px; }
  .ch-preview-dot { width: 9px; height: 9px; border-radius: 50%; opacity: 0.75; flex-shrink: 0; transition: opacity 0.2s; }
  .collapsible-header:hover .ch-preview-dot { opacity: 1; }
  .collapsible-icon { width: 52px; height: 52px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; background: rgba(201,168,76,0.04); transition: all 0.3s; }
  .collapsible-header:hover .collapsible-icon { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.08); }
  .collapsible-toggle { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); opacity: 0.6; transition: all 0.3s; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
  .collapsible-header:hover .collapsible-toggle { opacity: 1; }
  .collapsible-body { overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; max-height: 0; opacity: 0; }
  .collapsible-body.open { max-height: 2000px; opacity: 1; }
  .collapsible-body-inner { padding: 0 0 2rem; }

  /* BOOKING */
  .booking-section { background: linear-gradient(to bottom, var(--dark-2), var(--black)); padding: 8rem 3rem; text-align: center; }
  .booking-inner { max-width: 700px; margin: 0 auto; }
  .booking-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.75rem; }
  .booking-title em { font-style: italic; color: var(--gold-light); }
  .booking-sub { font-size: 1rem; color: var(--gray-light); margin-bottom: 0.5rem; }
  .booking-note { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; }
  .booking-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* IDENTITY BLOCKS */
  .identity-blocks { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .identity-block { border-left: 2px solid rgba(201,168,76,0.3); padding-left: 1rem; }
  .identity-block-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; opacity: 0.8; }
  .identity-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .identity-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); color: var(--gray-light); padding: 0.3rem 0.75rem; }
  .identity-featured-credit { display: flex; flex-direction: column; gap: 0.15rem; }
  .identity-featured-artist { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
  .identity-featured-role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .identity-verified { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); }
  .identity-langs { font-size: 0.85rem; color: var(--gray-light); letter-spacing: 0.05em; }
  .identity-rep { display: flex; flex-direction: column; gap: 0.15rem; }
  .identity-rep-name { font-size: 0.9rem; color: var(--white); font-weight: 400; }
  .identity-rep-role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .identity-rep-contact { font-size: 0.8rem; color: var(--gray); }
  .identity-timeline { display: flex; flex-direction: column; gap: 0.5rem; }
  .timeline-item { display: flex; gap: 1rem; align-items: baseline; }
  .timeline-year { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); min-width: 36px; }
  .timeline-milestone { font-size: 0.85rem; color: var(--gray-light); }

  /* ── CONNECT HUB v13 — executive premium ── */
  .connect-hub {
    background:
      radial-gradient(circle at 80% 0%, rgba(201,168,76,0.07), transparent 28%),
      #050505;
    padding: 28px 48px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .ch-eyebrow { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.24em; text-transform: uppercase; color: #d7b84f; font-weight: 700; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
  .ch-eyebrow-line { display: inline-block; width: 40px; height: 1px; background: rgba(201,168,76,0.5); flex-shrink: 0; }
  .ch-section-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d7b84f; font-weight: 700; margin: 0 0 10px; padding-bottom: 7px; border-bottom: 1px solid rgba(201,168,76,0.12); display: flex; align-items: center; gap: 8px; }
  .ch-section-label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,168,76,0.12), transparent); }
  .ch-metric { font-family: var(--font-mono); font-size: 0.42rem; color: #555; display: inline; }

  /* ── Hero ── */
  .ch-hero { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; padding: 24px 0 24px; margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.15); background: linear-gradient(135deg, rgba(15,15,15,0.9), rgba(8,8,8,0.95)); }
  .ch-hero-left { padding: 20px 28px; }
  .ch-hero-divider { width: 1px; height: 70%; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25) 30%, rgba(201,168,76,0.25) 70%, transparent); align-self: center; }
  .ch-hero-right { padding: 20px 28px; display: flex; flex-direction: column; }
  .ch-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 0.9; letter-spacing: -0.02em; color: #f5f1e8; margin: 0; font-weight: 400; }
  .ch-hero-title em { font-style: italic; color: #d7b84f; }
  .ch-hero-sub { font-size: 0.8rem; color: #777; line-height: 1.6; margin: 0 0 16px; font-family: var(--font-body); }
  .ch-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
  .ch-btn-gold { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 22px; color: var(--white); border: 1px solid var(--gold); background: rgba(201,168,76,0.08); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.01em; text-transform: none; text-decoration: none; transition: background 0.2s; box-shadow: 0 0 0 rgba(201,168,76,0); animation: explore-pulse 2.5s ease-in-out infinite; }
  .ch-btn-gold:hover { background: rgba(201,168,76,0.18); animation: none; box-shadow: 0 0 12px rgba(201,168,76,0.4); }
  .ch-btn-outline { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 0 16px; color: #d7b84f; border: 1px solid rgba(201,168,76,0.45); background: transparent; font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.18s; }
  .ch-btn-outline:hover { background: rgba(201,168,76,0.06); }

  /* ── Primary Featured Cards — 5 col ── */
  .ch-feat-wrap { margin-bottom: 20px; }
  .ch-pcards-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 8px; }
  .ch-pcard { display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; gap: 0 12px; align-items: start; padding: 14px 14px 12px; background: #0c0c0c; border: 1px solid rgba(255,255,255,0.06); color: #f5f1e8; text-decoration: none; position: relative; transition: all 0.2s ease; overflow: hidden; min-height: 100px; }
  .ch-pcard::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(201,168,76,0.06), transparent 50%); opacity: 0; transition: opacity 0.2s; }
  .ch-pcard--primary::before, .ch-pcard:hover::before { opacity: 1; }
  .ch-pcard--primary, .ch-pcard:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201,168,76,0.1); }
  .ch-pcard--empty { pointer-events: none; }
  .ch-pcard-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; grid-row: 1 / 3; position: relative; z-index: 1; }
  .ch-pcard-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; position: relative; z-index: 1; }
  .ch-pcard-cat { font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.18em; text-transform: uppercase; color: #d7b84f; }
  .ch-pcard-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: #f5f1e8; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ch-pcard-desc { font-family: var(--font-mono); font-size: 0.42rem; color: #666; line-height: 1.4; }
  .ch-pcard-cta { grid-column: 2; font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.1em; text-transform: uppercase; color: #d7b84f; margin-top: 6px; opacity: 0.6; transition: opacity 0.2s; position: relative; z-index: 1; }
  .ch-pcard:hover .ch-pcard-cta { opacity: 1; }

  /* ── Amazon secondary banner ── */
  .ch-amazon-banner { display: grid; grid-template-columns: 60px minmax(200px, auto) 1fr auto; align-items: center; gap: 20px; padding: 18px 24px; background: #0c0c0c; border: 1px solid rgba(201,168,76,0.15); color: #f5f1e8; text-decoration: none; transition: all 0.2s; margin-bottom: 0; }
  .ch-amazon-banner:hover { border-color: rgba(201,168,76,0.45); background: #0f0f0f; }
  .ch-amazon-icon { width: 52px; height: 52px; border-radius: 50%; background: #232F3E; border: 1px solid rgba(255,153,0,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
  .ch-amazon-left { display: flex; flex-direction: column; gap: 2px; }
  .ch-amazon-cat { font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.18em; text-transform: uppercase; color: #d7b84f; }
  .ch-amazon-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 400; color: #f5f1e8; }
  .ch-amazon-desc { font-family: var(--font-mono); font-size: 0.42rem; color: #555; }
  .ch-amazon-mid { font-family: var(--font-mono); font-size: 0.52rem; color: #666; line-height: 1.6; max-width: 360px; }
  .ch-amazon-cta { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: #d7b84f; white-space: nowrap; transition: opacity 0.2s; }
  .ch-amazon-banner:hover .ch-amazon-cta { opacity: 0.7; }

  /* ── Bottom 3-column layout ── */
  .ch-bottom-cols { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 24px; margin-bottom: 0; }
  .ch-col { display: flex; flex-direction: column; }
  .ch-rows { display: flex; flex-direction: column; gap: 4px; }
  .ch-row { display: grid; grid-template-columns: 40px auto 1fr 14px; align-items: center; gap: 10px; min-height: 52px; padding: 8px 12px; background: #0c0c0c; border: 1px solid rgba(255,255,255,0.05); color: #f5f1e8; text-decoration: none; transition: all 0.18s; position: relative; overflow: hidden; }
  .ch-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--ch-pc,#C9A84C); opacity: 0; transition: opacity 0.18s; }
  .ch-row:hover { border-color: rgba(201,168,76,0.35); transform: translateX(2px); }
  .ch-row:hover::before { opacity: 1; }
  .ch-row-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .ch-row-name { font-size: 0.85rem; color: #f5f1e8; font-family: var(--font-body); line-height: 1; white-space: nowrap; }
  .ch-row-desc { font-family: var(--font-mono); font-size: 0.42rem; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ch-row-arrow { font-size: 0.48rem; color: #d7b84f; opacity: 0; transition: opacity 0.18s; }
  .ch-row:hover .ch-row-arrow { opacity: 0.7; }

  /* ── Follow Everywhere column ── */
  .ch-follow-col { display: flex; flex-direction: column; }
  .ch-follow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
  .ch-follow-sq { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; background: #0c0c0c; border: 1px solid rgba(255,255,255,0.06); text-decoration: none; transition: all 0.18s; }
  .ch-follow-sq:hover { border-color: rgba(201,168,76,0.4); background: #111; transform: translateY(-2px); }
  .ch-follow-tagline { font-family: var(--font-mono); font-size: 0.48rem; color: #555; line-height: 1.7; }

  /* ── Footer note ── */
  .ch-footer-note { font-family: var(--font-mono); font-size: 0.42rem; color: #333; margin: 16px 0 0; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 5px; }

  /* ── Responsive ── */
  .credits-section { background: var(--dark-2); padding: 3rem 0 1.5rem; margin: 0; max-width: 100%; }
  .credits-inner { max-width: 1400px; margin: 0 auto; padding: 0 3rem; }
  .credits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 1px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.1); }
  .credits-grid .credit-card:nth-child(n+7) { display: none; }
  .credits-grid.credits-expanded .credit-card:not([style*="display: none"]):not([style*="display:none"]) { display: block !important; }
  .credits-grid .credit-card:last-child:nth-child(odd) { grid-column: 1 / -1; background: var(--dark-2); }
  .credits-grid .credit-card:last-child:nth-child(3n+1) { grid-column: 1 / -1; background: var(--dark-2); }
  .credits-grid .credit-card:last-child:nth-child(3n+2) { grid-column: span 2; background: var(--dark-2); }
  .credit-card { background: var(--dark-2); padding: 2rem; transition: background 0.3s; cursor: pointer; }
  .credit-card:hover { background: var(--dark-3); }
  .credit-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
  .credit-artist { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
  .credit-years { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 0.25rem 0.6rem; white-space: nowrap; }
  .credit-role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .credit-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.65; white-space: pre-line; }
  .credit-expand-hint { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--gold); margin-top: 0.75rem; text-decoration: underline; text-underline-offset: 3px; }
  /* Credit detail modal */
  .credit-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
  .credit-modal-overlay.open { opacity: 1; pointer-events: all; }
  .credit-modal { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.2); max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2.5rem; position: relative; }
  .credit-modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: 1px solid rgba(255,255,255,0.1); color: var(--gray); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; padding: 0.4rem 0.75rem; cursor: pointer; }
  .credit-modal-close:hover { border-color: var(--gold); color: var(--white); }
  .credit-modal-artist { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
  .credit-modal-meta { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .credit-modal-desc { font-size: 1rem; color: var(--warm-white); line-height: 1.9; margin-bottom: 1.5rem; transition: font-size 0.2s; }
  .credit-modal-desc strong { color: var(--gold); font-weight: 700; display: block; margin-top: 1.5rem; }
  .credit-modal-desc a { color: inherit; }
  .modal-font-controls { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
  .modal-font-btn { font-family: var(--font-mono); background: none; border: 1px solid rgba(255,255,255,0.12); color: var(--gray); cursor: pointer; padding: 0.25rem 0.65rem; font-size: 0.7rem; letter-spacing: 0.08em; transition: all 0.2s; }
  .modal-font-btn:hover { border-color: var(--gold); color: var(--gold); }
  .modal-font-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.25); text-transform: uppercase; }
  .credit-modal-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.5rem; margin-top: 1.5rem; padding-bottom: 1rem; }
  .credit-modal-photo { width: 100%; object-fit: contain; background: var(--dark-3); cursor: pointer; border: 1px solid rgba(201,168,76,0.1); transition: opacity 0.2s; max-height: 280px; }
  .credit-modal-photo:hover { opacity: 0.85; }

  /* MUSIC */
  .music-tracks { border-top: 1px solid rgba(201,168,76,0.1); }
  .track-item { display: flex; align-items: center; gap: 2rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(201,168,76,0.06); transition: background 0.2s; }
  .track-item:hover { background: rgba(201,168,76,0.02); }
  .track-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray); width: 2rem; text-align: right; flex-shrink: 0; }
  .track-info { flex: 1; }
  .track-title { font-size: 0.95rem; color: var(--white); font-weight: 400; margin-bottom: 0.2rem; display: flex; align-items: center; gap: 0.75rem; }
  .track-tag { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; background: rgba(201,168,76,0.12); color: var(--gold); padding: 0.2rem 0.5rem; }
  .track-artist { font-size: 0.8rem; color: var(--gray); }
  .track-meta { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray); margin-top: 0.15rem; letter-spacing: 0.05em; }
  .track-meta span { color: var(--gold); }
  .track-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.6; margin-top: 0.4rem; font-style: italic; }
  .track-role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-align: right; flex-shrink: 0; }

  /* VIDEOS */
  .videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .videos-spotlight-player { width:100%; max-height:480px; aspect-ratio:16/9; background:#000; margin-bottom:1.5rem; position:relative; overflow:hidden; }
  .videos-spotlight-player video, .videos-spotlight-player iframe { width:100%; height:100%; display:block; border:none; }
  .videos-spotlight-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0.75rem; }
  .videos-spotlight-thumb { cursor:pointer; position:relative; opacity:0.65; transition:opacity 0.2s,border-color 0.2s; border:2px solid transparent; }
  .videos-spotlight-thumb:hover { opacity:1; }
  .videos-spotlight-thumb.active { opacity:1; border-color:var(--gold); }
  .videos-spotlight-thumb img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
  .videos-spotlight-thumb .spot-title { font-family:var(--font-mono); font-size:0.55rem; letter-spacing:0.05em; color:var(--gray); padding:0.3rem 0.4rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .video-card { background: var(--dark-3); overflow: hidden; cursor: pointer; position: relative; }
  .video-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--dark-4); }
  .video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; background: rgba(0,0,0,0.5); transition: all 0.3s; }
  .video-card:hover .video-play { background: var(--gold); color: var(--black); }
  .video-caption { padding: 0.75rem 1rem 0.4rem; font-size: 0.85rem; color: var(--white); font-weight: 400; }
  .video-meta { padding: 0 1rem 0.4rem; font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray); letter-spacing: 0.05em; }
  .video-meta span { color: var(--gold); }
  .video-desc { padding: 0 1rem 0.75rem; font-size: 0.78rem; color: var(--gray); line-height: 1.6; font-style: italic; }

  /* PHOTOS */
  .gallery-section { background: var(--dark-2); padding: 3rem 0; max-width: 100%; }
  .gallery-inner { max-width: 1400px; margin: 0 auto; padding: 0 3rem; }
  .gallery-slideshows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; height: 500px; margin-top: 2rem; }
  .gallery-col { position: relative; overflow: hidden; background: var(--dark-3); }
  .gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
  .gallery-slide.active { opacity: 1; }
  .gallery-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1rem 0.75rem; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); }
  .gallery-nav { position: absolute; bottom: 0.5rem; right: 0.75rem; display: flex; gap: 4px; z-index: 2; }
  .gallery-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s; }
  .gallery-dot.active { background: var(--gold); }
  .gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); border: 1px solid rgba(201,168,76,0.2); color: var(--gold); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; font-size: 1rem; transition: all 0.3s; }
  .gallery-arrow:hover { background: rgba(201,168,76,0.2); }
  .gallery-arrow.prev { left: 0.5rem; }
  .gallery-arrow.next { right: 0.5rem; }

  /* GALLERY */
  .gallery-4col { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
  .gallery-col {
    position: relative; overflow: hidden; background: var(--dark-3); height: 360px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.05), 0 4px 24px rgba(0,0,0,0.4);
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  }
  .gallery-col::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent);
    z-index: 3; opacity: 0.7;
  }
  .gallery-col::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.3) 100%);
    z-index: 2; pointer-events: none;
  }
  .gallery-col:hover {
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.08);
    transform: translateY(-3px);
  }
  .gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 1; }
  .gallery-slide.active { opacity: 1; }
  .gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; transition: transform 0.6s ease; }
  .gallery-col:hover .gallery-slide.active img { transform: scale(1.03); }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem 0.85rem 0.65rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75); z-index: 4; line-height: 1.5;
  }
  @media (max-width: 900px) { .hero { grid-template-columns: 1fr 1fr; } .hero-stats-col { display: none; } }
  @media (max-width: 640px) { .ch-highlights-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 768px) { .gallery-4col { grid-template-columns: repeat(2, 1fr); } .gallery-col { height: 260px; } }

  /* VIDEO LAYOUTS */
  /* Cinematic — first video large, rest below */
  .video-cinematic-featured { margin-bottom: 1.5rem; position: relative; }
  .video-cinematic-featured video, .video-cinematic-featured iframe { width: 100%; aspect-ratio: 16/9; display: block; background: #000; border: 1px solid rgba(201,168,76,0.15); }
  .video-cinematic-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 0.75rem 0 0.25rem; }
  .video-cinematic-meta { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
  .video-cinematic-desc { font-size: 0.85rem; color: var(--gray); font-style: italic; }
  .video-cinematic-rest { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
  /* List layout */
  .video-list-item { display: flex; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(201,168,76,0.06); align-items: flex-start; }
  .video-list-thumb { width: 160px; flex-shrink: 0; position: relative; cursor: pointer; }
  .video-list-thumb img, .video-list-thumb video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border: 1px solid rgba(201,168,76,0.15); }
  .video-list-thumb .video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(0,0,0,0.5); font-size: 0.8rem; }
  .video-list-info { flex: 1; }
  .video-list-title { font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 0.3rem; }
  .video-list-meta { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 0.4rem; }
  .video-list-desc { font-size: 0.82rem; color: var(--gray); font-style: italic; line-height: 1.6; }
  @media (max-width: 768px) { .video-list-item { flex-direction: column; } .video-list-thumb { width: 100%; } }

  /* GALLERY MARQUEE */
  .gallery-marquee-wrap {
    overflow: hidden; margin-top: 1.5rem; position: relative;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.04) 15%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.04) 85%, transparent 100%);
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .gallery-marquee-wrap::before, .gallery-marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
  }
  .gallery-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
  .gallery-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
  .gallery-marquee { display: flex; gap: 0.75rem; width: max-content; animation: marqueeScroll 55s linear infinite; }
  .gallery-marquee:hover { animation-play-state: paused; }
  @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .gallery-marquee-item {
    flex-shrink: 0; width: 260px; height: 380px; position: relative; overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 6px 12px rgba(0,0,0,0.6), 0 12px 30px rgba(0,0,0,0.5), 0 -1px 0 rgba(255,255,255,0.05), 0 1px 0 rgba(201,168,76,0.25);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }
  .gallery-marquee-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent);
    z-index: 3;
  }
  .gallery-marquee-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 25%, transparent 70%, rgba(0,0,0,0.5) 100%);
    z-index: 2; pointer-events: none;
  }
  .gallery-marquee-item:hover { border-color: rgba(201,168,76,0.8); transform: translateY(-22px) scale(1.04); box-shadow: 0 25px 40px rgba(0,0,0,0.9), 0 40px 80px rgba(0,0,0,0.6), 0 50px 100px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.12); filter: brightness(1.08); }
  .gallery-marquee-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; }
  .gallery-marquee-item:hover img { transform: scale(1.05); }
  .gallery-marquee-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem 0.85rem 0.65rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--text); z-index: 4; line-height: 1.2; letter-spacing: 0.01em;
  }

  /* GALLERY WALL */
  .gallery-wall { columns: 4; gap: 0.6rem; margin-top: 1.5rem; }
  .gallery-wall-item { break-inside: avoid; margin-bottom: 0.6rem; position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.15); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
  .gallery-wall-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.5), transparent); z-index: 2; }
  .gallery-wall-item img { width: 100%; display: block; transition: transform 0.4s; }
  .gallery-wall-item:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2); }
  .gallery-wall-item:hover img { transform: scale(1.03); }
  .gallery-wall-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 0.75rem 0.5rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1.2; z-index: 3; opacity: 0; transition: opacity 0.3s; }
  .gallery-wall-item:hover .gallery-wall-caption { opacity: 1; }
  @media (max-width: 768px) { .gallery-wall { columns: 2; } }

  /* GALLERY SCROLL STRIP */
  .gallery-scroll-wrap { position: relative; margin-top: 1.5rem; }
  .gallery-scroll { display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; cursor: grab; }
  .gallery-scroll:active { cursor: grabbing; }
  .gallery-scroll::-webkit-scrollbar { height: 3px; }
  .gallery-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
  .gallery-scroll::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.4); border-radius: 3px; }
  .gallery-scroll-item {
    flex-shrink: 0; scroll-snap-align: start;
    position: relative; overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
    transition: border-color 0.3s, transform 0.3s;
  }
  .gallery-scroll-item img { width: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; }
  .gallery-scroll-item:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); }
  .gallery-scroll-item:hover img { transform: scale(1.04); }
  .gallery-scroll-caption { display: none; }
  @media (max-width: 768px) { .gallery-scroll-item { min-width: 200px; } }

  /* CAREER PROFILE SECTION */
  /* ── CAREER HIGHLIGHTS ── */
  .career-profile-section { background: var(--black); margin-top: -1px; }
  .ch-highlights-wrap { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; }
  .ch-highlights-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .ch-highlights-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
  .ch-highlights-viewall { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; opacity: 0.65; transition: opacity 0.2s; }
  .ch-highlights-viewall:hover { opacity: 1; }
  .ch-highlights-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(201,168,76,0.06); }
  .ch-hl-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: #0c0c0c; }
  .ch-hl-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
  .ch-hl-card:hover .ch-hl-bg { transform: scale(1.07); }
  .ch-hl-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%); }
  .ch-hl-icon { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; background: rgba(0,0,0,0.65); border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; z-index: 2; }
  .ch-hl-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 0.85rem 0.85rem; z-index: 2; }
  .ch-hl-title { font-family: var(--font-display); font-size: 0.92rem; color: var(--white); font-weight: 400; margin: 0 0 0.35rem; line-height: 1.2; }
  .ch-hl-desc { font-family: var(--font-mono); font-size: 0.42rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0 0 0.5rem; }
  .ch-hl-link { font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }

  .career-profile-section { padding: 3rem 0 0; }
  .career-profile-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

  /* Stacked layout */
  .career-stacked-bio { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .career-stacked-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Side by side layout */
  .career-sidebyside { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
  .career-sidebyside-left { display: flex; flex-direction: column; gap: 1.5rem; }
  .career-sidebyside-right { display: flex; flex-direction: column; gap: 1.5rem; }

  /* 3-column layout */
  .career-threecol { display: grid; grid-template-columns: 1fr 2fr; gap: 1.5rem; align-items: start; }
  .career-threecol-bio { display: flex; flex-direction: column; gap: 0; align-self: start; }
  .career-threecol-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
  .career-threecol-cards .resume-card { height: 100%; box-sizing: border-box; display: flex; flex-direction: column; }
  @media (max-width: 900px) { .career-threecol { grid-template-columns: 1fr; } }

  /* Shared bio styles in career profile */
  .career-portrait { width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: top; filter: grayscale(20%) contrast(1.05); display: block; }
  .career-bio-text { margin-top: 1.5rem; }
  .career-bio-text p { font-size: 0.95rem; color: var(--white); margin-bottom: 1em; line-height: 1.8; font-weight: 400; }
  .career-bio-text p:first-child { font-size: 0.95rem; color: var(--white); font-weight: 400; }

  @media (max-width: 768px) {
    .career-stacked-bio { grid-template-columns: 1fr; }
    .career-stacked-cards { grid-template-columns: 1fr; }
    .career-sidebyside { grid-template-columns: 1fr; }
  }

  /* RESUME SECTION */
  .resume-section { padding: 3rem 0; }
  .resume-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
  .resume-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
  .resume-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.15); padding: 1.25rem 1.5rem 1.5rem; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
  .resume-card::before { display: none; }
  .resume-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-2px); }
  .resume-card-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .resume-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; line-height: 1.3; }
  .resume-card-subtitle { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
  .resume-card-skills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
  .resume-skill-tag { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15); color: var(--gray); padding: 0.2rem 0.6rem; }
  .resume-card-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; font-style: italic; margin-bottom: 0.75rem; }
  .resume-card-btn { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.3); padding: 0.6rem 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s; }
  .resume-card-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
  @media (max-width: 768px) { .resume-cards { grid-template-columns: 1fr; } }

  /* AWARDS */
  .awards-section { padding: 3rem 0; background: var(--dark-2); }
  .awards-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
  .awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
  .award-card { background: var(--dark-3); border: 1px solid rgba(201,168,76,0.1); padding: 1.5rem; position: relative; transition: border-color 0.3s; }
  .award-card:hover { border-color: rgba(201,168,76,0.3); }
  .award-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
  .award-card-type { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .award-card-title { font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 0.25rem; line-height: 1.4; }
  .award-card-org { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 0.5rem; }
  .award-card-desc { font-size: 0.82rem; color: var(--gray); font-style: italic; line-height: 1.6; margin-top: 0.5rem; }
  .award-card-badges { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
  .award-badge { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; }
  .award-badge-verified { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
  .award-badge-category { background: rgba(255,255,255,0.05); color: var(--gray); border: 1px solid rgba(255,255,255,0.08); }
  .award-card-clickable { cursor: pointer; }
  .award-card-clickable:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-2px); }
  .award-proof-link { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.1em; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.75rem; opacity: 0.8; transition: opacity 0.2s; }
  .award-proof-link:hover { opacity: 1; }
  .award-cert-link { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.1em; color: var(--gray); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.5rem; transition: color 0.2s; }
  .award-cert-link:hover { color: var(--gold); }

  /* ASSETS */
  .assets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
  .asset-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.08); padding: 2rem; transition: border-color 0.3s; }
  .asset-card:hover { border-color: rgba(201,168,76,0.25); }
  .asset-icon { font-size: 1.5rem; margin-bottom: 1rem; }
  .asset-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
  .asset-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 0.75rem; }
  .asset-btn { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: opacity 0.3s; }
  .asset-btn:hover { opacity: 0.7; }

  /* COLLAPSIBLE SECTIONS */
  .collapsible-section { border-top: 1px solid rgba(255,255,255,0.06); background: var(--black); position: relative; z-index: 2; }
  .collapsible-header { display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 3rem; cursor: pointer; user-select: none; width: 100%; box-sizing: border-box; transition: background 0.2s; }
  .collapsible-header:hover { background: rgba(255,255,255,0.02); }
  .collapsible-header-left { display: flex; align-items: center; gap: 1.75rem; }
  .collapsible-header-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
  .collapsible-header-title { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--white); font-weight: 400; line-height: 1.1; margin-bottom: 8px; }
  .collapsible-header-meta { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
  .ch-preview-icons { display: flex; align-items: center; gap: 7px; margin-top: 2px; }
  .ch-preview-dot { width: 9px; height: 9px; border-radius: 50%; opacity: 0.75; flex-shrink: 0; transition: opacity 0.2s; }
  .collapsible-header:hover .ch-preview-dot { opacity: 1; }
  .collapsible-icon { width: 52px; height: 52px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; background: rgba(201,168,76,0.04); transition: all 0.3s; }
  .collapsible-header:hover .collapsible-icon { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.08); }
  .collapsible-toggle { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); opacity: 0.6; transition: all 0.3s; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
  .collapsible-header:hover .collapsible-toggle { opacity: 1; }
  .collapsible-body { overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; max-height: 0; opacity: 0; }
  .collapsible-body.open { max-height: 2000px; opacity: 1; }
  .collapsible-body-inner { padding: 0 0 2rem; }

  /* BOOKING */
  .booking-section { background: linear-gradient(to bottom, var(--dark-2), var(--black)); padding: 8rem 3rem; text-align: center; }
  .booking-inner { max-width: 700px; margin: 0 auto; }
  .booking-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.75rem; }
  .booking-title em { font-style: italic; color: var(--gold-light); }
  .booking-sub { font-size: 1rem; color: var(--gray-light); margin-bottom: 0.5rem; }
  .booking-note { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; }
  .booking-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* IDENTITY BLOCKS */
  .identity-blocks { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .identity-block { border-left: 2px solid rgba(201,168,76,0.3); padding-left: 1rem; }
  .identity-block-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; opacity: 0.8; }
  .identity-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .identity-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); color: var(--gray-light); padding: 0.3rem 0.75rem; }
  .identity-featured-credit { display: flex; flex-direction: column; gap: 0.15rem; }
  .identity-featured-artist { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
  .identity-featured-role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .identity-verified { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); }
  .identity-langs { font-size: 0.85rem; color: var(--gray-light); letter-spacing: 0.05em; }
  .identity-rep { display: flex; flex-direction: column; gap: 0.15rem; }
  .identity-rep-name { font-size: 0.9rem; color: var(--white); font-weight: 400; }
  .identity-rep-role { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .identity-rep-contact { font-size: 0.8rem; color: var(--gray); }
  .identity-timeline { display: flex; flex-direction: column; gap: 0.5rem; }
  .timeline-item { display: flex; gap: 1rem; align-items: baseline; }
  .timeline-year { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); min-width: 36px; }
  .timeline-milestone { font-size: 0.85rem; color: var(--gray-light); }


  @media (max-width: 1200px) { .ch-bottom-cols { grid-template-columns: 1fr 1fr; } .ch-follow-col { display: none; } }
  @media (max-width: 1000px) { .ch-pcards-grid { grid-template-columns: repeat(3, 1fr); } .ch-hero { grid-template-columns: 1fr; } .ch-hero-divider { display: none; } .ch-hero-left, .ch-hero-right { padding: 14px 20px; } .ch-amazon-banner { grid-template-columns: 44px auto; } .ch-amazon-mid, .ch-amazon-cta { display: none; } }
  @media (max-width: 768px) { .ch-pcards-grid { grid-template-columns: 1fr 1fr; } .ch-bottom-cols { grid-template-columns: 1fr; } .connect-hub { padding: 22px 20px 0; } .ch-hero-title { font-size: 2rem; } }

  footer { border-top: 1px solid rgba(201,168,76,0.08); padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-logo { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gray); }
  .footer-copy { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray); letter-spacing: 0.1em; }

  /* OWNER CONTROLS */
  .owner-controls { display: none; }
  .is-owner .owner-controls { display: flex; }
  .owner-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(8,8,8,0.95); border-top: 1px solid rgba(201,168,76,0.2); padding: 0.6rem 2rem; display: none; align-items: center; justify-content: space-between; z-index: 500; backdrop-filter: blur(8px); }
  .is-owner .owner-bar { display: flex; }
  .owner-bar-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
  .owner-move-btn { font-family: var(--font-mono); font-size: 0.6rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.25rem 0.5rem; cursor: pointer; transition: all 0.2s; margin: 0 1px; }
  .owner-move-btn:hover { background: rgba(201,168,76,0.2); }
  .owner-move-btn:disabled { opacity: 0.3; cursor: default; }
  .owner-item-wrap { position: relative; }
  .owner-item-wrap .owner-overlay { position: absolute; top: 0.5rem; right: 0.5rem; display: none; gap: 0.25rem; z-index: 10; flex-direction: row; }
  .is-owner .owner-item-wrap:hover .owner-overlay { display: flex; }
  .owner-action-btn { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.6rem; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
  .owner-up { background: rgba(201,168,76,0.8); color: var(--black); }
  .owner-down { background: rgba(201,168,76,0.6); color: var(--black); }
  .owner-up:hover { background: var(--gold); }
  .owner-down:hover { background: var(--gold); }

  @media (max-width: 768px) {
    /* Credits collapse — show 4 by default, expand on tap */
    .credits-grid .credit-card:nth-child(n+5) { display: none; }
    .credits-grid.credits-expanded .credit-card { display: block; }

    /* NAV */
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-edit-btn { display: flex; }

    /* HERO */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image-panel { height: 90vw; min-height: 340px; max-height: 520px; }
    .hero-img { object-position: center 35%; }
    .hero-content { padding: 2.5rem 1.25rem 2rem; }
    .hero-name { font-size: clamp(2.6rem, 11vw, 4.5rem); }
    .hero-tagline { font-size: 0.75rem; }
    .hero-ctas { flex-direction: column; gap: 0.75rem; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

    /* SECTIONS */
    section { padding: 2.5rem 1.25rem; }
    .credits-inner { padding: 0 1.25rem; }
    .gallery-inner { padding: 0 1.25rem; }

    /* SECTION TITLE */
    .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 0.75rem; }

    /* BIO */
    .bio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .bio-portrait { max-height: 260px; aspect-ratio: 3/2; object-position: top; }

    /* CAREER / PROFILE */
    .career-threecol { grid-template-columns: 1fr !important; }
    .career-stacked-bio { grid-template-columns: 1fr; }
    .career-stacked-cards { grid-template-columns: 1fr; }
    .career-sidebyside { grid-template-columns: 1fr; }

    /* CREDITS */
    .credits-grid { grid-template-columns: 1fr !important; }
    .credits-grid .credit-card:last-child:nth-child(odd) { grid-column: 1; }
    .credits-grid .credit-card:last-child:nth-child(3n+1) { grid-column: 1; }
    .credits-grid .credit-card:last-child:nth-child(3n+2) { grid-column: 1; }
    .credit-card { padding: 1.25rem; }
    .credit-modal { padding: 1.5rem 1.25rem; max-height: 85vh; }

    /* VIDEOS */
    .videos-grid { grid-template-columns: 1fr; }
    .video-list-item { flex-direction: column; }
    .video-list-thumb { width: 100%; }

    /* PHOTOS */
    .gallery-slideshows { grid-template-columns: 1fr; height: auto; }
    .gallery-col { height: 280px; }
    .gallery-4col { grid-template-columns: repeat(2, 1fr); }
    .gallery-wall { columns: 2; }
    .gallery-scroll-item { width: 220px; height: 280px; }

    /* RESUME CARDS */
    .resume-cards { grid-template-columns: 1fr; }

    /* AWARDS */
    .awards-grid { grid-template-columns: 1fr; }

    /* CONNECT / BOOKING */
    .connect-grid { grid-template-columns: 1fr; }

    /* OWNER BAR */
    .owner-bar { font-size: 0.55rem; padding: 0.75rem 1rem; gap: 0.75rem; }
    .owner-bar-right { gap: 0.5rem; }
  }

  /* Extra small phones */
  @media (max-width: 390px) {
    nav { padding: 0.85rem 1rem; }
    section { padding: 2rem 1rem; }
    .credits-inner, .gallery-inner { padding: 0 1rem; }
    .hero-name { font-size: clamp(2.2rem, 10vw, 3rem); }
    .credit-modal { padding: 1.25rem 1rem; }
  }

  /* ── INLINE EDIT MODE ── */
  body.edit-mode { padding-top: 48px; }
  body.edit-mode .nav-edit-btn { background: var(--gold) !important; color: #000 !important; }

  /* Editable elements — subtle glow on hover in edit mode */
  body.edit-mode [data-editable]:hover {
    outline: 1.5px dashed rgba(201,168,76,0.5);
    outline-offset: 3px;
    cursor: text;
    background: rgba(201,168,76,0.03);
    border-radius: 2px;
  }
  body.edit-mode [data-editable]:focus {
    outline: 2px solid rgba(201,168,76,0.7);
    outline-offset: 3px;
    background: rgba(201,168,76,0.05);
  }
  body.edit-mode [data-editable] { transition: outline 0.15s, background 0.15s; }

  /* Edit mode label badge */
  .section-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 1rem; }
  .section-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,168,76,0.3), transparent); max-width: 200px; }

  .edit-field-label {
    position: absolute;
    top: -18px; left: 0;
    font-family: var(--font-mono);
    font-size: 0.45rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0,0,0,0.8);
    padding: 0.1rem 0.35rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    white-space: nowrap;
  }
  body.edit-mode [data-editable]:hover .edit-field-label,
  body.edit-mode [data-editable]:focus .edit-field-label { opacity: 1; }

  /* Unsaved changes dot */
  .unsaved-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  @media (max-width: 768px) {
    body.edit-mode { padding-top: 56px; }
    #inlineEditBar { gap: 0.6rem; padding: 0.5rem 1rem; }
  }

  /* Full bio flows full width below the 3-col grid */
  .career-bio-full-width {
    margin-top: -0.5rem;
    padding-top: 0;
    padding-bottom: 3rem;
  }
  .career-bio-full-width p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1em;
  }

  /* Drop cap — elegant gold L */
  #bioShort p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--gold);
    float: left;
    line-height: 0.75;
    margin-right: 0.08em;
    margin-top: 0.06em;
    text-shadow: 0 0 40px rgba(201,168,76,0.3);
  }

/* Asset card hover effects */
.asset-card-hover { transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s !important; }
.asset-card-hover:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4) !important; }

/* ── GALLERY: COLLECTIONS ── */
.gallery-collections { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.gallery-collection-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.15); cursor: pointer; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; overflow: hidden; }
.gallery-collection-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.7); }
.gallery-collection-collage { display: grid; width: 100%; aspect-ratio: 4/3; overflow: hidden; gap: 2px; background: var(--dark-3); }
.gallery-collection-collage-1 { grid-template-columns: 1fr; }
.gallery-collection-collage-2 { grid-template-columns: 1fr 1fr; }
.gallery-collection-collage-3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-collection-collage-3 img:first-child { grid-row: 1 / 3; }
.gallery-collection-collage-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-collection-collage img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.gallery-collection-card:hover .gallery-collection-collage img { transform: scale(1.04); }
.gallery-collection-meta { padding: 0.75rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.gallery-collection-name { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.gallery-collection-count { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gold); opacity: 0.75; }
/* Collections lightbox */
.gallery-collection-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; display: flex; align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.gallery-collection-lb-inner { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.2); max-width: 1100px; width: 100%; padding: 2rem; position: relative; }
.gallery-collection-lb-close { position: absolute; top: 1rem; right: 1rem; background: none; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); width: 32px; height: 32px; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.gallery-collection-lb-close:hover { background: rgba(201,168,76,0.15); }
.gallery-collection-lb-title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
.gallery-collection-lb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.gallery-collection-lb-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; border: 1px solid rgba(201,168,76,0.1); }
.gallery-collection-lb-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.gallery-collection-lb-item:hover img { transform: scale(1.05); }
.gallery-collection-lb-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 0.5rem 0.4rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); font-family: var(--font-mono); font-size: 0.5rem; color: rgba(255,255,255,0.75); }
@media (max-width: 768px) { .gallery-collections { grid-template-columns: 1fr 1fr; } }

/* ── GALLERY: GRID ── */
.gallery-grid-wrap { margin-top: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.gallery-grid-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; border: 1px solid rgba(201,168,76,0.1); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; background: var(--dark-3); }
.gallery-grid-item:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.7); }
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.gallery-grid-item:hover img { transform: scale(1.06); }
.gallery-grid-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 0.75rem 0.65rem; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: #F5F5F5; letter-spacing: 0.01em; line-height: 1.2; opacity: 1; transition: opacity 0.3s; }
.gallery-grid-item:hover .gallery-grid-caption { opacity: 1; }
.gallery-grid-pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.25rem; flex-wrap: wrap; }
.gallery-grid-pag-btn { background: none; border: 1px solid rgba(201,168,76,0.25); color: var(--gray); font-family: var(--font-mono); font-size: 0.6rem; width: 30px; height: 30px; cursor: pointer; transition: all 0.2s; }
.gallery-grid-pag-btn:hover, .gallery-grid-pag-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── GALLERY: MAGAZINE ── */
.gallery-magazine { margin-top: 1.5rem; }
.gallery-magazine-hero { position: relative; width: 100%; aspect-ratio: 16/8; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.2); margin-bottom: 0.75rem; transition: border-color 0.3s; }
.gallery-magazine-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; }
.gallery-magazine-hero:hover img { transform: scale(1.03); }
.gallery-magazine-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 1.5rem 1.25rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); display: flex; flex-direction: column; gap: 0.25rem; }
.gallery-magazine-hero-caption { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1.2; margin-bottom: 0.25rem; }
.gallery-magazine-hero-meta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.85); }
.gallery-magazine-row1 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }
.gallery-magazine-right-col { display: flex; flex-direction: column; gap: 0.6rem; }
.gallery-magazine-right-col .gallery-magazine-item { flex: 1; aspect-ratio: unset; min-height: 0; }
.gallery-magazine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
@media (max-width: 900px) { .gallery-magazine-row1 { grid-template-columns: 1fr; } .gallery-magazine-right-col { flex-direction: row; } }
@media (max-width: 600px) { .gallery-magazine-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-magazine-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; border: 1px solid rgba(201,168,76,0.1); transition: border-color 0.3s, transform 0.3s; background: var(--dark-3); }
.gallery-magazine-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s; }
.gallery-magazine-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.gallery-magazine-item:hover img { transform: scale(1.05); }
.gallery-magazine-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 0.6rem 0.5rem; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); opacity: 0; transition: opacity 0.3s; }
.gallery-magazine-item:hover .gallery-magazine-caption { opacity: 1; }
@media (max-width: 768px) { .gallery-magazine-hero { aspect-ratio: 4/3; } .gallery-magazine-grid { grid-template-columns: 1fr 1fr; } }

/* ── GALLERY: TIMELINE ── */
.gallery-timeline { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
.gallery-timeline-year { border-left: 2px solid rgba(201,168,76,0.25); padding-left: 1.5rem; position: relative; }
.gallery-timeline-year::before { content: ''; position: absolute; left: -5px; top: 0.6rem; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(201,168,76,0.5); }
.gallery-timeline-year-header { display: flex; align-items: center; gap: 1rem; cursor: pointer; margin-bottom: 1rem; user-select: none; }
.gallery-timeline-year-header:hover .gallery-timeline-year-label { color: var(--gold); }
.gallery-timeline-year-label { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); letter-spacing: 0.02em; transition: color 0.2s; }
.gallery-timeline-year-count { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(201,168,76,0.6); }
.gallery-timeline-toggle { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(201,168,76,0.5); margin-left: auto; }
.gallery-timeline-row { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.75rem; scroll-snap-type: x mandatory; }
.gallery-timeline-row::-webkit-scrollbar { height: 3px; }
.gallery-timeline-row::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.35); border-radius: 3px; }
.gallery-timeline-item { flex: 0 0 auto; min-width: 160px; max-width: 400px; position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); scroll-snap-align: start; transition: border-color 0.3s, transform 0.3s; background: var(--dark-3); }
.gallery-timeline-item img { width: 240px; height: auto; display: block; transition: transform 0.4s; object-position: center top; min-height: 280px; object-fit: cover; }
.gallery-timeline-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.gallery-timeline-item:hover img { transform: scale(1.05); }
.gallery-timeline-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 0.75rem 0.5rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1.2; opacity: 0; transition: opacity 0.3s; }
.gallery-timeline-item:hover .gallery-timeline-cap { opacity: 1; }
@media (max-width: 768px) { .gallery-timeline-item { flex: 0 0 160px; } }

/* ── GALLERY: TABLE ── */
.gallery-table-wrap { margin-top: 1.5rem; overflow-x: auto; }
.gallery-table-search-bar { margin-bottom: 1.25rem; }
.gallery-table-search { background: var(--dark-3); border: 1px solid rgba(201,168,76,0.2); color: var(--text); font-family: var(--font-display); font-size: 1rem; padding: 0.6rem 1rem; width: 100%; max-width: 400px; outline: none; transition: border-color 0.2s; }
.gallery-table-search:focus { border-color: rgba(201,168,76,0.5); }
.gallery-table { width: 100%; border-collapse: collapse; }
.gallery-table thead th { background: var(--dark-3); color: var(--gold); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.75rem 1rem; border-bottom: 1px solid rgba(201,168,76,0.2); text-align: left; white-space: nowrap; }
.gallery-table-sort-icon { color: rgba(201,168,76,0.5); margin-left: 0.3em; }
.gallery-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.gallery-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.gallery-table td { padding: 1rem 1rem; color: var(--text); vertical-align: middle; font-family: var(--font-display); font-size: 1rem; }
.gallery-table td:not(:first-child) { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.08em; color: rgba(201,168,76,0.85); }
.gallery-table-thumb { width: 110px; }
.gallery-table-thumb img { width: 120px; height: 90px; object-fit: cover; object-position: center top; display: block; cursor: pointer; border: 1px solid rgba(201,168,76,0.15); transition: border-color 0.2s, transform 0.2s; }
.gallery-table-thumb img:hover { border-color: rgba(201,168,76,0.5); transform: scale(1.04); }
.gallery-table-empty { font-family: var(--font-display); font-size: 1rem; color: var(--gray); text-align: center; padding: 2rem; opacity: 0.5; }

/* ── CREDIT MODAL: UNIFIED MEDIA GRID ── */
.credit-media-toggle { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.credit-media-toggle-btn { background: none; border: 1px solid rgba(201,168,76,0.2); color: var(--gray); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.75rem; cursor: pointer; transition: all 0.2s; }
.credit-media-toggle-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--text); }
.credit-media-toggle-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.credit-media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem; margin-top: 0.25rem; align-items: start; }
.credit-media-cell { position: relative; border: 1px solid rgba(201,168,76,0.12); background: var(--dark-3); width: 100%; }
.credit-media-cell video { width: 100%; display: block; background: #000; }
.credit-media-cell iframe { width: 100%; aspect-ratio: 16/9; display: block; }
.credit-media-cell-photo { cursor: pointer; transition: border-color 0.2s; }
.credit-media-cell-photo:hover { border-color: rgba(201,168,76,0.45); }
.credit-media-cell-photo img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.credit-media-cell-photo:hover img { transform: scale(1.02); }
.credit-media-cell-video { cursor: pointer; }
.credit-media-cell-video img { width: 100%; height: auto; display: block; }
.credit-media-cell-video:hover { border-color: rgba(201,168,76,0.45); }
.credit-media-cell-video:hover .credit-media-play { background: rgba(201,168,76,0.9); color: #000; }
.credit-media-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,0.65); border: 2px solid rgba(201,168,76,0.7); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s, color 0.2s; pointer-events: none; padding-left: 3px; }
.credit-media-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 0.5rem 0.35rem; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); pointer-events: none; }
.credit-media-cell-doc { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 2rem 1rem; }
.credit-media-cell-doc a { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--gold); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.2s; }
.credit-media-cell-doc a:hover { opacity: 0.75; }
.credit-media-cell-link { display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.credit-media-cell-link a { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.3); padding: 0.5rem 1rem; transition: background 0.2s; }
.credit-media-cell-link a:hover { background: rgba(201,168,76,0.08); }
@media (max-width: 600px) { .credit-media-grid { grid-template-columns: 1fr 1fr; } }

/* ── GALLERY: LAYOUT SWITCHER DROPDOWN ── */
#galleryLayoutSelect { color-scheme: dark; background: var(--dark-3); border: 1px solid rgba(201,168,76,0.25); color: var(--text); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; padding: 0.5rem 2rem 0.5rem 0.85rem; cursor: pointer; outline: none; transition: border-color 0.2s; }
#galleryLayoutSelect:hover { border-color: rgba(201,168,76,0.5); }

/* ── GALLERY: CATEGORY BAR ── */
.gallery-cat-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
.gallery-cat-btn { display: flex; align-items: center; gap: 0.4rem; background: none; border: 1px solid rgba(255,255,255,0.07); color: var(--gray); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; cursor: pointer; transition: all 0.25s; white-space: nowrap; border-radius: 1px; }
.gallery-cat-btn:hover { border-color: rgba(201,168,76,0.35); color: var(--text); }
.gallery-cat-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.gallery-cat-icon { font-size: 0.8rem; }
.gallery-cat-count { font-family: var(--font-mono); font-size: 0.5rem; color: var(--gold); margin-left: 0.25rem; opacity: 0.8; }

/* ── GALLERY: COLLECTIONS UPGRADE ── */
.gallery-collection-info { padding: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.gallery-collection-header { display: flex; align-items: center; gap: 0.5rem; }
.gallery-collection-icon { font-size: 1rem; }
.gallery-collection-name { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.gallery-collection-desc { font-family: var(--font-body); font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.gallery-collection-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 0.25rem; padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.gallery-collection-count { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.12em; color: var(--gold); }
.gallery-collection-cta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; }
.gallery-collection-card:hover .gallery-collection-cta { text-decoration: underline; }
.gallery-collections-footer { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; padding: 2rem; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.1); text-align: center; justify-content: center; }

/* ── GALLERY: GRID UPGRADE ── */
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.gallery-grid-pagbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.gallery-grid-count { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gray); letter-spacing: 0.05em; }
.gallery-grid-perpage { display: flex; align-items: center; gap: 0.5rem; }
.gallery-grid-pag-btn.disabled { opacity: 0.3; cursor: default; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── GALLERY: MAGAZINE UPGRADE ── */
.gallery-magazine-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-magazine-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 0.75rem 0.65rem; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%); }
.gallery-magazine-item-caption { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 0.2rem; letter-spacing: 0.01em; }
.gallery-magazine-item-meta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.85); }
.gallery-magazine-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); background: var(--dark-3); transition: border-color 0.3s, transform 0.3s; }
.gallery-magazine-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-magazine-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.gallery-magazine-item:hover img { transform: scale(1.05); }

/* ── GALLERY: SCROLL UPGRADE ── */
.gallery-scroll-header { display: flex; justify-content: flex-end; margin-bottom: 0.75rem; }
.gallery-scroll-drag { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--gold); letter-spacing: 0.02em; opacity: 0.9; }
.gallery-scroll-star { position: absolute; top: 0.75rem; right: 0.75rem; color: var(--gold); font-size: 1.2rem; z-index: 2; text-shadow: 0 0 8px rgba(201,168,76,0.5); }
.gallery-scroll-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 1.25rem 1.25rem; background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 50%, transparent 100%); }
.gallery-scroll-category { display: inline-block; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.gallery-scroll-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #F5F5F5; line-height: 1.2; margin-bottom: 0.3rem; letter-spacing: 0.01em; }
.gallery-scroll-meta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.85); }
.gallery-scroll-bottom { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid rgba(201,168,76,0.15); }
.gallery-scroll-arrows { display: flex; gap: 0.5rem; }
.gallery-scroll-arrow-btn { background: none; border: 1px solid rgba(201,168,76,0.35); color: var(--gold); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.gallery-scroll-arrow-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.gallery-scroll-counter { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }
.gallery-scroll-collection-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.gallery-scroll-item { flex: 0 0 auto; position: relative; height: 480px; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); scroll-snap-align: start; transition: border-color 0.3s; background: var(--dark-3); overflow: hidden; min-width: 280px; max-width: 700px; }
.gallery-scroll-item:first-child { border-color: var(--gold); }
.gallery-scroll-item:hover { border-color: rgba(201,168,76,0.45); }
.gallery-scroll-item img { height: 100%; width: auto; object-fit: contain; object-position: center top; display: block; transition: transform 0.6s; }
.gallery-scroll-item:hover img { transform: scale(1.03); }
@media (max-width: 768px) { .gallery-scroll-item { height: 360px; min-width: 200px; max-width: 500px; } }

/* ── GALLERY: TIMELINE UPGRADE ── */
.gallery-timeline { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.gallery-timeline-year { padding-left: 2rem; position: relative; margin-bottom: 1.5rem; }
.gallery-timeline-year::before { content: ''; position: absolute; left: 9px; top: 1.5rem; bottom: -1.5rem; width: 1px; background: rgba(201,168,76,0.2); }
.gallery-timeline-year:last-child::before { display: none; }
.gallery-timeline-dot { position: absolute; left: 3px; top: 0.6rem; width: 13px; height: 13px; border-radius: 50%; background: var(--dark-3); border: 2px solid rgba(201,168,76,0.4); transition: all 0.2s; }
.gallery-timeline-dot.active { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px rgba(201,168,76,0.5); }
.gallery-timeline-year-header:hover .gallery-timeline-dot { border-color: var(--gold); }
.gallery-timeline-year-header { display: flex; align-items: center; gap: 0.85rem; cursor: pointer; margin-bottom: 0.85rem; user-select: none; }
.gallery-timeline-year-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 0.01em; }
.gallery-timeline-year-count { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.gallery-timeline-toggle { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(201,168,76,0.5); margin-left: auto; }

/* ── CREDIT MODAL: SPOTLIGHT LAYOUT ── */
.credit-spotlight-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.5rem; margin-top: 0.25rem; align-items: start; }
.credit-spotlight-featured { position: relative; overflow: hidden; cursor: pointer; border: 2px solid rgba(201,168,76,0.5); transition: border-color 0.3s; }
.credit-spotlight-featured:hover { border-color: var(--gold); }
.credit-spotlight-featured img { width: 100%; height: auto; display: block; transition: transform 0.4s; }
.credit-spotlight-featured:hover img { transform: scale(1.03); }
.credit-spotlight-badge { position: absolute; top: 0.6rem; left: 0.6rem; background: rgba(201,168,76,0.9); color: #000; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; font-weight: 700; }
.credit-spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; align-content: start; }
.credit-spotlight-item { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); transition: border-color 0.3s, transform 0.3s; }
.credit-spotlight-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-2px); }
.credit-spotlight-item img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.credit-spotlight-item:hover img { transform: scale(1.04); }
.credit-spotlight-solo { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.2); }
.credit-spotlight-solo img { width: 100%; height: auto; display: block; }
@media (max-width: 600px) { .credit-spotlight-wrap { grid-template-columns: 1fr; } .credit-spotlight-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════
   EDITORIAL WALL — PREMIUM LAYOUT
   ═══════════════════════════════════════════ */

.ew-outer { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; margin-top: 1.5rem; align-items: start; }
@media (max-width: 900px) { .ew-outer { grid-template-columns: 1fr; } }

/* SIDEBAR */
.ew-sidebar { display: flex; flex-direction: column; gap: 0.15rem; position: sticky; top: 1rem; }
@media (max-width: 900px) { .ew-sidebar { display: none; } }
.ew-sidebar-section-label { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.7; padding: 0.75rem 0 0.35rem; border-top: 1px solid rgba(201,168,76,0.12); margin-top: 0.25rem; }
.ew-sidebar-section-label:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.ew-sidebar-btn { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; border-left: 2px solid transparent; color: var(--gray); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.03em; padding: 0.35rem 0.5rem; cursor: pointer; width: 100%; text-align: left; transition: all 0.2s; }
.ew-sidebar-btn:hover { color: var(--text); background: rgba(201,168,76,0.04); border-left-color: rgba(201,168,76,0.3); }
.ew-sidebar-btn.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.07); }
.ew-sidebar-icon { font-size: 0.75rem; flex-shrink: 0; width: 14px; text-align: center; }
.ew-sidebar-label { flex: 1; }
.ew-sidebar-count { font-family: var(--font-mono); font-size: 0.48rem; color: var(--gold); background: rgba(201,168,76,0.1); padding: 0.1rem 0.35rem; }
.ew-quote-card { margin-top: 1rem; padding: 1rem; border: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.04); }
.ew-quote-mark { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.ew-quote-text { font-family: var(--font-display); font-size: 0.8rem; color: var(--text); line-height: 1.6; font-style: italic; margin-bottom: 0.4rem; }
.ew-quote-sig { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.8; }
.ew-add-btn { margin-top: 1rem; width: 100%; background: none; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; padding: 0.5rem; cursor: pointer; transition: all 0.2s; }
.ew-add-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* SHARED OVERLAY */
.ew-card { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.15); background: #0A0A0A; transition: border-color 0.3s, box-shadow 0.3s; }
.ew-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s ease; }
.ew-card:hover img { transform: scale(1.04); }
.ew-card:hover { border-color: rgba(201,168,76,0.5); box-shadow: 0 0 24px rgba(201,168,76,0.12); }
.ew-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 1rem 0.85rem; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s; }
.ew-card-overlay.always { opacity: 1; }
.ew-card:hover .ew-card-overlay { opacity: 1; }
.ew-overlay-category { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.ew-overlay-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #F5F5F5; line-height: 1.2; margin-bottom: 0.2rem; }
.ew-overlay-meta { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.08em; color: #A0A0A0; margin-bottom: 0.4rem; }
.ew-overlay-bar { width: 2rem; height: 2px; background: var(--gold); }

/* ROW 1: HERO + RIGHT COL */
.ew-row1 { display: grid; grid-template-columns: 1.8fr 1fr; gap: 0.5rem; margin-bottom: 0.5rem; }
@media (max-width: 768px) { .ew-row1 { grid-template-columns: 1fr; } }
.ew-hero-card { aspect-ratio: 3/2; }
.ew-hero-card .ew-overlay-title { font-size: 1.5rem; }
.ew-right-col { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.5rem; min-height: 0; }
.ew-right-col > * { min-height: 0; min-width: 0; }
.ew-sec-card { aspect-ratio: unset; }
.ew-sec-card { }

/* Quote in grid */
.ew-grid-quote { background: #0E0E0E; border: 1px solid rgba(201,168,76,0.2); padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.ew-gq-mark { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.ew-gq-text { font-family: var(--font-display); font-size: 0.8rem; font-style: italic; color: #F5F5F5; line-height: 1.5; }
.ew-gq-sig { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.8; }

/* Milestone in grid */
.ew-grid-milestone { background: linear-gradient(135deg, #0E0E0E, #141414); border: 1px solid rgba(201,168,76,0.2); padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; gap: 0.35rem; }
.ew-ms-icon { font-size: 1.25rem; }
.ew-ms-label { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ew-ms-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #F5F5F5; line-height: 1.2; }
.ew-ms-sub { font-family: var(--font-mono); font-size: 0.48rem; color: #A0A0A0; line-height: 1.5; }

/* ROW 2: MOSAIC */
.ew-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 0.5rem; margin-bottom: 0.5rem; }
.ew-mosaic-large  { grid-column: span 5; grid-row: span 2; }
.ew-mosaic-medium { grid-column: span 4; grid-row: span 2; }
.ew-mosaic-small  { grid-column: span 3; grid-row: span 1; }
@media (max-width: 768px) {
  .ew-mosaic { grid-template-columns: repeat(4,1fr); grid-auto-rows: 120px; }
  .ew-mosaic-large { grid-column: span 4; grid-row: span 2; }
  .ew-mosaic-medium { grid-column: span 2; grid-row: span 2; }
  .ew-mosaic-small { grid-column: span 2; grid-row: span 1; }
}

/* ROW 3: STRIP */
.ew-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.5rem; }
.ew-strip-card { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); background: #0A0A0A; aspect-ratio: 1; transition: border-color 0.3s, transform 0.2s; }
.ew-strip-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.ew-strip-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }
.ew-strip-card:hover img { transform: scale(1.06); }

.ew-empty { font-family: var(--font-display); font-size: 1rem; color: var(--gray); text-align: center; padding: 3rem; opacity: 0.5; }

  /* ── CONNECT HUB v13 — executive premium ── */
  .connect-hub {
    background:
      radial-gradient(circle at 80% 0%, rgba(201,168,76,0.07), transparent 28%),
      #050505;
    padding: 28px 48px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .ch-eyebrow { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.24em; text-transform: uppercase; color: #d7b84f; font-weight: 700; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
  .ch-eyebrow-line { display: inline-block; width: 40px; height: 1px; background: rgba(201,168,76,0.5); flex-shrink: 0; }
  .ch-section-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d7b84f; font-weight: 700; margin: 0 0 10px; padding-bottom: 7px; border-bottom: 1px solid rgba(201,168,76,0.12); display: flex; align-items: center; gap: 8px; }
  .ch-section-label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,168,76,0.12), transparent); }
  .ch-metric { font-family: var(--font-mono); font-size: 0.42rem; color: #555; display: inline; }

  /* ── Hero ── */
  .ch-hero { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; padding: 24px 0 24px; margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.15); background: linear-gradient(135deg, rgba(15,15,15,0.9), rgba(8,8,8,0.95)); }
  .ch-hero-left { padding: 20px 28px; }
  .ch-hero-divider { width: 1px; height: 70%; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25) 30%, rgba(201,168,76,0.25) 70%, transparent); align-self: center; }
  .ch-hero-right { padding: 20px 28px; display: flex; flex-direction: column; }
  .ch-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 0.9; letter-spacing: -0.02em; color: #f5f1e8; margin: 0; font-weight: 400; }
  .ch-hero-title em { font-style: italic; color: #d7b84f; }
  .ch-hero-sub { font-size: 0.8rem; color: #777; line-height: 1.6; margin: 0 0 16px; font-family: var(--font-body); }
  .ch-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
  .ch-btn-gold { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 22px; color: var(--white); border: 1px solid var(--gold); background: rgba(201,168,76,0.08); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.01em; text-transform: none; text-decoration: none; transition: background 0.2s; box-shadow: 0 0 0 rgba(201,168,76,0); animation: explore-pulse 2.5s ease-in-out infinite; }
  .ch-btn-gold:hover { background: rgba(201,168,76,0.18); animation: none; box-shadow: 0 0 12px rgba(201,168,76,0.4); }
  .ch-btn-outline { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 0 16px; color: #d7b84f; border: 1px solid rgba(201,168,76,0.45); background: transparent; font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.18s; }
  .ch-btn-outline:hover { background: rgba(201,168,76,0.06); }

  /* ── Primary Featured Cards — 5 col ── */
  .ch-feat-wrap { margin-bottom: 20px; }
  .ch-pcards-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 8px; }
  .ch-pcard { display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; gap: 0 12px; align-items: start; padding: 14px 14px 12px; background: #0c0c0c; border: 1px solid rgba(255,255,255,0.06); color: #f5f1e8; text-decoration: none; position: relative; transition: all 0.2s ease; overflow: hidden; min-height: 100px; }
  .ch-pcard::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(201,168,76,0.06), transparent 50%); opacity: 0; transition: opacity 0.2s; }
  .ch-pcard--primary::before, .ch-pcard:hover::before { opacity: 1; }
  .ch-pcard--primary, .ch-pcard:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201,168,76,0.1); }
  .ch-pcard--empty { pointer-events: none; }
  .ch-pcard-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; grid-row: 1 / 3; position: relative; z-index: 1; }
  .ch-pcard-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; position: relative; z-index: 1; }
  .ch-pcard-cat { font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.18em; text-transform: uppercase; color: #d7b84f; }
  .ch-pcard-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: #f5f1e8; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ch-pcard-desc { font-family: var(--font-mono); font-size: 0.42rem; color: #666; line-height: 1.4; }
  .ch-pcard-cta { grid-column: 2; font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.1em; text-transform: uppercase; color: #d7b84f; margin-top: 6px; opacity: 0.6; transition: opacity 0.2s; position: relative; z-index: 1; }
  .ch-pcard:hover .ch-pcard-cta { opacity: 1; }

  /* ── Amazon secondary banner ── */
  .ch-amazon-banner { display: grid; grid-template-columns: 60px minmax(200px, auto) 1fr auto; align-items: center; gap: 20px; padding: 18px 24px; background: #0c0c0c; border: 1px solid rgba(201,168,76,0.15); color: #f5f1e8; text-decoration: none; transition: all 0.2s; margin-bottom: 0; }
  .ch-amazon-banner:hover { border-color: rgba(201,168,76,0.45); background: #0f0f0f; }
  .ch-amazon-icon { width: 52px; height: 52px; border-radius: 50%; background: #232F3E; border: 1px solid rgba(255,153,0,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
  .ch-amazon-left { display: flex; flex-direction: column; gap: 2px; }
  .ch-amazon-cat { font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.18em; text-transform: uppercase; color: #d7b84f; }
  .ch-amazon-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 400; color: #f5f1e8; }
  .ch-amazon-desc { font-family: var(--font-mono); font-size: 0.42rem; color: #555; }
  .ch-amazon-mid { font-family: var(--font-mono); font-size: 0.52rem; color: #666; line-height: 1.6; max-width: 360px; }
  .ch-amazon-cta { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: #d7b84f; white-space: nowrap; transition: opacity 0.2s; }
  .ch-amazon-banner:hover .ch-amazon-cta { opacity: 0.7; }

  /* ── Bottom 3-column layout ── */
  .ch-bottom-cols { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 24px; margin-bottom: 0; }
  .ch-col { display: flex; flex-direction: column; }
  .ch-rows { display: flex; flex-direction: column; gap: 4px; }
  .ch-row { display: grid; grid-template-columns: 40px auto 1fr 14px; align-items: center; gap: 10px; min-height: 52px; padding: 8px 12px; background: #0c0c0c; border: 1px solid rgba(255,255,255,0.05); color: #f5f1e8; text-decoration: none; transition: all 0.18s; position: relative; overflow: hidden; }
  .ch-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--ch-pc,#C9A84C); opacity: 0; transition: opacity 0.18s; }
  .ch-row:hover { border-color: rgba(201,168,76,0.35); transform: translateX(2px); }
  .ch-row:hover::before { opacity: 1; }
  .ch-row-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .ch-row-name { font-size: 0.85rem; color: #f5f1e8; font-family: var(--font-body); line-height: 1; white-space: nowrap; }
  .ch-row-desc { font-family: var(--font-mono); font-size: 0.42rem; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ch-row-arrow { font-size: 0.48rem; color: #d7b84f; opacity: 0; transition: opacity 0.18s; }
  .ch-row:hover .ch-row-arrow { opacity: 0.7; }

  /* ── Follow Everywhere column ── */
  .ch-follow-col { display: flex; flex-direction: column; }
  .ch-follow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
  .ch-follow-sq { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; background: #0c0c0c; border: 1px solid rgba(255,255,255,0.06); text-decoration: none; transition: all 0.18s; }
  .ch-follow-sq:hover { border-color: rgba(201,168,76,0.4); background: #111; transform: translateY(-2px); }
  .ch-follow-tagline { font-family: var(--font-mono); font-size: 0.48rem; color: #555; line-height: 1.7; }

  /* ── Footer note ── */
  .ch-footer-note { font-family: var(--font-mono); font-size: 0.42rem; color: #333; margin: 16px 0 0; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 5px; }

  /* ── Responsive ── */
  @media (max-width: 1200px) { .ch-bottom-cols { grid-template-columns: 1fr 1fr; } .ch-follow-col { display: none; } }
  @media (max-width: 1000px) { .ch-pcards-grid { grid-template-columns: repeat(3, 1fr); } .ch-hero { grid-template-columns: 1fr; } .ch-hero-divider { display: none; } .ch-hero-left, .ch-hero-right { padding: 14px 20px; } .ch-amazon-banner { grid-template-columns: 44px auto; } .ch-amazon-mid, .ch-amazon-cta { display: none; } }
  @media (max-width: 768px) { .ch-pcards-grid { grid-template-columns: 1fr 1fr; } .ch-bottom-cols { grid-template-columns: 1fr; } .connect-hub { padding: 22px 20px 0; } .ch-hero-title { font-size: 2rem; } }

  footer { border-top: 1px solid rgba(201,168,76,0.08); padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-logo { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gray); }
  .footer-copy { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray); letter-spacing: 0.1em; }

  /* OWNER CONTROLS */
  .owner-controls { display: none; }
  .is-owner .owner-controls { display: flex; }
  .owner-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(8,8,8,0.95); border-top: 1px solid rgba(201,168,76,0.2); padding: 0.6rem 2rem; display: none; align-items: center; justify-content: space-between; z-index: 500; backdrop-filter: blur(8px); }
  .is-owner .owner-bar { display: flex; }
  .owner-bar-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
  .owner-move-btn { font-family: var(--font-mono); font-size: 0.6rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.25rem 0.5rem; cursor: pointer; transition: all 0.2s; margin: 0 1px; }
  .owner-move-btn:hover { background: rgba(201,168,76,0.2); }
  .owner-move-btn:disabled { opacity: 0.3; cursor: default; }
  .owner-item-wrap { position: relative; }
  .owner-item-wrap .owner-overlay { position: absolute; top: 0.5rem; right: 0.5rem; display: none; gap: 0.25rem; z-index: 10; flex-direction: row; }
  .is-owner .owner-item-wrap:hover .owner-overlay { display: flex; }
  .owner-action-btn { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.6rem; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
  .owner-up { background: rgba(201,168,76,0.8); color: var(--black); }
  .owner-down { background: rgba(201,168,76,0.6); color: var(--black); }
  .owner-up:hover { background: var(--gold); }
  .owner-down:hover { background: var(--gold); }

  @media (max-width: 768px) {
    /* Credits collapse — show 4 by default, expand on tap */
    .credits-grid .credit-card:nth-child(n+5) { display: none; }
    .credits-grid.credits-expanded .credit-card { display: block; }

    /* NAV */
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-edit-btn { display: flex; }

    /* HERO */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image-panel { height: 90vw; min-height: 340px; max-height: 520px; }
    .hero-img { object-position: center 35%; }
    .hero-content { padding: 2.5rem 1.25rem 2rem; }
    .hero-name { font-size: clamp(2.6rem, 11vw, 4.5rem); }
    .hero-tagline { font-size: 0.75rem; }
    .hero-ctas { flex-direction: column; gap: 0.75rem; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

    /* SECTIONS */
    section { padding: 2.5rem 1.25rem; }
    .credits-inner { padding: 0 1.25rem; }
    .gallery-inner { padding: 0 1.25rem; }

    /* SECTION TITLE */
    .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 0.75rem; }

    /* BIO */
    .bio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .bio-portrait { max-height: 260px; aspect-ratio: 3/2; object-position: top; }

    /* CAREER / PROFILE */
    .career-threecol { grid-template-columns: 1fr !important; }
    .career-stacked-bio { grid-template-columns: 1fr; }
    .career-stacked-cards { grid-template-columns: 1fr; }
    .career-sidebyside { grid-template-columns: 1fr; }

    /* CREDITS */
    .credits-grid { grid-template-columns: 1fr !important; }
    .credits-grid .credit-card:last-child:nth-child(odd) { grid-column: 1; }
    .credits-grid .credit-card:last-child:nth-child(3n+1) { grid-column: 1; }
    .credits-grid .credit-card:last-child:nth-child(3n+2) { grid-column: 1; }
    .credit-card { padding: 1.25rem; }
    .credit-modal { padding: 1.5rem 1.25rem; max-height: 85vh; }

    /* VIDEOS */
    .videos-grid { grid-template-columns: 1fr; }
    .video-list-item { flex-direction: column; }
    .video-list-thumb { width: 100%; }

    /* PHOTOS */
    .gallery-slideshows { grid-template-columns: 1fr; height: auto; }
    .gallery-col { height: 280px; }
    .gallery-4col { grid-template-columns: repeat(2, 1fr); }
    .gallery-wall { columns: 2; }
    .gallery-scroll-item { width: 220px; height: 280px; }

    /* RESUME CARDS */
    .resume-cards { grid-template-columns: 1fr; }

    /* AWARDS */
    .awards-grid { grid-template-columns: 1fr; }

    /* CONNECT / BOOKING */
    .connect-grid { grid-template-columns: 1fr; }

    /* OWNER BAR */
    .owner-bar { font-size: 0.55rem; padding: 0.75rem 1rem; gap: 0.75rem; }
    .owner-bar-right { gap: 0.5rem; }
  }

  /* Extra small phones */
  @media (max-width: 390px) {
    nav { padding: 0.85rem 1rem; }
    section { padding: 2rem 1rem; }
    .credits-inner, .gallery-inner { padding: 0 1rem; }
    .hero-name { font-size: clamp(2.2rem, 10vw, 3rem); }
    .credit-modal { padding: 1.25rem 1rem; }
  }

  /* ── INLINE EDIT MODE ── */
  body.edit-mode { padding-top: 48px; }
  body.edit-mode .nav-edit-btn { background: var(--gold) !important; color: #000 !important; }

  /* Editable elements — subtle glow on hover in edit mode */
  body.edit-mode [data-editable]:hover {
    outline: 1.5px dashed rgba(201,168,76,0.5);
    outline-offset: 3px;
    cursor: text;
    background: rgba(201,168,76,0.03);
    border-radius: 2px;
  }
  body.edit-mode [data-editable]:focus {
    outline: 2px solid rgba(201,168,76,0.7);
    outline-offset: 3px;
    background: rgba(201,168,76,0.05);
  }
  body.edit-mode [data-editable] { transition: outline 0.15s, background 0.15s; }

  /* Edit mode label badge */
  .edit-field-label {
    position: absolute;
    top: -18px; left: 0;
    font-family: var(--font-mono);
    font-size: 0.45rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0,0,0,0.8);
    padding: 0.1rem 0.35rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    white-space: nowrap;
  }
  body.edit-mode [data-editable]:hover .edit-field-label,
  body.edit-mode [data-editable]:focus .edit-field-label { opacity: 1; }

  /* Unsaved changes dot */
  .unsaved-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  @media (max-width: 768px) {
    body.edit-mode { padding-top: 56px; }
    #inlineEditBar { gap: 0.6rem; padding: 0.5rem 1rem; }
  }

  /* Full bio flows full width below the 3-col grid */
  .career-bio-full-width {
    margin-top: -0.5rem;
    padding-top: 0;
    padding-bottom: 3rem;
  }
  .career-bio-full-width p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1em;
  }

  /* Drop cap — elegant gold L */
  #bioShort p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--gold);
    float: left;
    line-height: 0.75;
    margin-right: 0.08em;
    margin-top: 0.06em;
    text-shadow: 0 0 40px rgba(201,168,76,0.3);
  }

/* Asset card hover effects */
.asset-card-hover { transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s !important; }
.asset-card-hover:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4) !important; }

/* ── GALLERY: COLLECTIONS ── */
.gallery-collections { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.gallery-collection-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.15); cursor: pointer; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; overflow: hidden; }
.gallery-collection-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.7); }
.gallery-collection-collage { display: grid; width: 100%; aspect-ratio: 4/3; overflow: hidden; gap: 2px; background: var(--dark-3); }
.gallery-collection-collage-1 { grid-template-columns: 1fr; }
.gallery-collection-collage-2 { grid-template-columns: 1fr 1fr; }
.gallery-collection-collage-3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-collection-collage-3 img:first-child { grid-row: 1 / 3; }
.gallery-collection-collage-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-collection-collage img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.gallery-collection-card:hover .gallery-collection-collage img { transform: scale(1.04); }
.gallery-collection-meta { padding: 0.75rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.gallery-collection-name { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.gallery-collection-count { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gold); opacity: 0.75; }
/* Collections lightbox */
.gallery-collection-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; display: flex; align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.gallery-collection-lb-inner { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.2); max-width: 1100px; width: 100%; padding: 2rem; position: relative; }
.gallery-collection-lb-close { position: absolute; top: 1rem; right: 1rem; background: none; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); width: 32px; height: 32px; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.gallery-collection-lb-close:hover { background: rgba(201,168,76,0.15); }
.gallery-collection-lb-title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
.gallery-collection-lb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.gallery-collection-lb-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; border: 1px solid rgba(201,168,76,0.1); }
.gallery-collection-lb-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.gallery-collection-lb-item:hover img { transform: scale(1.05); }
.gallery-collection-lb-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 0.5rem 0.4rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); font-family: var(--font-mono); font-size: 0.5rem; color: rgba(255,255,255,0.75); }
@media (max-width: 768px) { .gallery-collections { grid-template-columns: 1fr 1fr; } }

/* ── GALLERY: GRID ── */
.gallery-grid-wrap { margin-top: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.gallery-grid-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; border: 1px solid rgba(201,168,76,0.1); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; background: var(--dark-3); }
.gallery-grid-item:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.7); }
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.gallery-grid-item:hover img { transform: scale(1.06); }
.gallery-grid-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 0.75rem 0.65rem; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: #F5F5F5; letter-spacing: 0.01em; line-height: 1.2; opacity: 1; transition: opacity 0.3s; }
.gallery-grid-item:hover .gallery-grid-caption { opacity: 1; }
.gallery-grid-pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.25rem; flex-wrap: wrap; }
.gallery-grid-pag-btn { background: none; border: 1px solid rgba(201,168,76,0.25); color: var(--gray); font-family: var(--font-mono); font-size: 0.6rem; width: 30px; height: 30px; cursor: pointer; transition: all 0.2s; }
.gallery-grid-pag-btn:hover, .gallery-grid-pag-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── GALLERY: MAGAZINE ── */
.gallery-magazine { margin-top: 1.5rem; }
.gallery-magazine-hero { position: relative; width: 100%; aspect-ratio: 16/8; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.2); margin-bottom: 0.75rem; transition: border-color 0.3s; }
.gallery-magazine-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; }
.gallery-magazine-hero:hover img { transform: scale(1.03); }
.gallery-magazine-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 1.5rem 1.25rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); display: flex; flex-direction: column; gap: 0.25rem; }
.gallery-magazine-hero-caption { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1.2; margin-bottom: 0.25rem; }
.gallery-magazine-hero-meta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.85); }
.gallery-magazine-row1 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }
.gallery-magazine-right-col { display: flex; flex-direction: column; gap: 0.6rem; }
.gallery-magazine-right-col .gallery-magazine-item { flex: 1; aspect-ratio: unset; min-height: 0; }
.gallery-magazine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
@media (max-width: 900px) { .gallery-magazine-row1 { grid-template-columns: 1fr; } .gallery-magazine-right-col { flex-direction: row; } }
@media (max-width: 600px) { .gallery-magazine-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-magazine-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; border: 1px solid rgba(201,168,76,0.1); transition: border-color 0.3s, transform 0.3s; background: var(--dark-3); }
.gallery-magazine-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s; }
.gallery-magazine-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.gallery-magazine-item:hover img { transform: scale(1.05); }
.gallery-magazine-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 0.6rem 0.5rem; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); opacity: 0; transition: opacity 0.3s; }
.gallery-magazine-item:hover .gallery-magazine-caption { opacity: 1; }
@media (max-width: 768px) { .gallery-magazine-hero { aspect-ratio: 4/3; } .gallery-magazine-grid { grid-template-columns: 1fr 1fr; } }

/* ── GALLERY: TIMELINE ── */
.gallery-timeline { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
.gallery-timeline-year { border-left: 2px solid rgba(201,168,76,0.25); padding-left: 1.5rem; position: relative; }
.gallery-timeline-year::before { content: ''; position: absolute; left: -5px; top: 0.6rem; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(201,168,76,0.5); }
.gallery-timeline-year-header { display: flex; align-items: center; gap: 1rem; cursor: pointer; margin-bottom: 1rem; user-select: none; }
.gallery-timeline-year-header:hover .gallery-timeline-year-label { color: var(--gold); }
.gallery-timeline-year-label { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); letter-spacing: 0.02em; transition: color 0.2s; }
.gallery-timeline-year-count { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(201,168,76,0.6); }
.gallery-timeline-toggle { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(201,168,76,0.5); margin-left: auto; }
.gallery-timeline-row { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.75rem; scroll-snap-type: x mandatory; }
.gallery-timeline-row::-webkit-scrollbar { height: 3px; }
.gallery-timeline-row::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.35); border-radius: 3px; }
.gallery-timeline-item { flex: 0 0 auto; min-width: 160px; max-width: 400px; position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); scroll-snap-align: start; transition: border-color 0.3s, transform 0.3s; background: var(--dark-3); }
.gallery-timeline-item img { width: 240px; height: auto; display: block; transition: transform 0.4s; object-position: center top; min-height: 280px; object-fit: cover; }
.gallery-timeline-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.gallery-timeline-item:hover img { transform: scale(1.05); }
.gallery-timeline-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 0.75rem 0.5rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1.2; opacity: 0; transition: opacity 0.3s; }
.gallery-timeline-item:hover .gallery-timeline-cap { opacity: 1; }
@media (max-width: 768px) { .gallery-timeline-item { flex: 0 0 160px; } }

/* ── GALLERY: TABLE ── */
.gallery-table-wrap { margin-top: 1.5rem; overflow-x: auto; }
.gallery-table-search-bar { margin-bottom: 1.25rem; }
.gallery-table-search { background: var(--dark-3); border: 1px solid rgba(201,168,76,0.2); color: var(--text); font-family: var(--font-display); font-size: 1rem; padding: 0.6rem 1rem; width: 100%; max-width: 400px; outline: none; transition: border-color 0.2s; }
.gallery-table-search:focus { border-color: rgba(201,168,76,0.5); }
.gallery-table { width: 100%; border-collapse: collapse; }
.gallery-table thead th { background: var(--dark-3); color: var(--gold); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.75rem 1rem; border-bottom: 1px solid rgba(201,168,76,0.2); text-align: left; white-space: nowrap; }
.gallery-table-sort-icon { color: rgba(201,168,76,0.5); margin-left: 0.3em; }
.gallery-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.gallery-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.gallery-table td { padding: 1rem 1rem; color: var(--text); vertical-align: middle; font-family: var(--font-display); font-size: 1rem; }
.gallery-table td:not(:first-child) { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.08em; color: rgba(201,168,76,0.85); }
.gallery-table-thumb { width: 110px; }
.gallery-table-thumb img { width: 120px; height: 90px; object-fit: cover; object-position: center top; display: block; cursor: pointer; border: 1px solid rgba(201,168,76,0.15); transition: border-color 0.2s, transform 0.2s; }
.gallery-table-thumb img:hover { border-color: rgba(201,168,76,0.5); transform: scale(1.04); }
.gallery-table-empty { font-family: var(--font-display); font-size: 1rem; color: var(--gray); text-align: center; padding: 2rem; opacity: 0.5; }

/* ── CREDIT MODAL: UNIFIED MEDIA GRID ── */
.credit-media-toggle { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.credit-media-toggle-btn { background: none; border: 1px solid rgba(201,168,76,0.2); color: var(--gray); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.75rem; cursor: pointer; transition: all 0.2s; }
.credit-media-toggle-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--text); }
.credit-media-toggle-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.credit-media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem; margin-top: 0.25rem; align-items: start; }
.credit-media-cell { position: relative; border: 1px solid rgba(201,168,76,0.12); background: var(--dark-3); width: 100%; }
.credit-media-cell video { width: 100%; display: block; background: #000; }
.credit-media-cell iframe { width: 100%; aspect-ratio: 16/9; display: block; }
.credit-media-cell-photo { cursor: pointer; transition: border-color 0.2s; }
.credit-media-cell-photo:hover { border-color: rgba(201,168,76,0.45); }
.credit-media-cell-photo img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.credit-media-cell-photo:hover img { transform: scale(1.02); }
.credit-media-cell-video { cursor: pointer; }
.credit-media-cell-video img { width: 100%; height: auto; display: block; }
.credit-media-cell-video:hover { border-color: rgba(201,168,76,0.45); }
.credit-media-cell-video:hover .credit-media-play { background: rgba(201,168,76,0.9); color: #000; }
.credit-media-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,0.65); border: 2px solid rgba(201,168,76,0.7); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s, color 0.2s; pointer-events: none; padding-left: 3px; }
.credit-media-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 0.5rem 0.35rem; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); pointer-events: none; }
.credit-media-cell-doc { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 2rem 1rem; }
.credit-media-cell-doc a { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--gold); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.2s; }
.credit-media-cell-doc a:hover { opacity: 0.75; }
.credit-media-cell-link { display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.credit-media-cell-link a { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.3); padding: 0.5rem 1rem; transition: background 0.2s; }
.credit-media-cell-link a:hover { background: rgba(201,168,76,0.08); }
@media (max-width: 600px) { .credit-media-grid { grid-template-columns: 1fr 1fr; } }

/* ── GALLERY: LAYOUT SWITCHER DROPDOWN ── */
#galleryLayoutSelect { color-scheme: dark; background: var(--dark-3); border: 1px solid rgba(201,168,76,0.25); color: var(--text); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; padding: 0.5rem 2rem 0.5rem 0.85rem; cursor: pointer; outline: none; transition: border-color 0.2s; }
#galleryLayoutSelect:hover { border-color: rgba(201,168,76,0.5); }

/* ── GALLERY: CATEGORY BAR ── */
.gallery-cat-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
.gallery-cat-btn { display: flex; align-items: center; gap: 0.4rem; background: none; border: 1px solid rgba(255,255,255,0.07); color: var(--gray); font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; cursor: pointer; transition: all 0.25s; white-space: nowrap; border-radius: 1px; }
.gallery-cat-btn:hover { border-color: rgba(201,168,76,0.35); color: var(--text); }
.gallery-cat-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.gallery-cat-icon { font-size: 0.8rem; }
.gallery-cat-count { font-family: var(--font-mono); font-size: 0.5rem; color: var(--gold); margin-left: 0.25rem; opacity: 0.8; }

/* ── GALLERY: COLLECTIONS UPGRADE ── */
.gallery-collection-info { padding: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.gallery-collection-header { display: flex; align-items: center; gap: 0.5rem; }
.gallery-collection-icon { font-size: 1rem; }
.gallery-collection-name { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.gallery-collection-desc { font-family: var(--font-body); font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.gallery-collection-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 0.25rem; padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.gallery-collection-count { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.12em; color: var(--gold); }
.gallery-collection-cta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; }
.gallery-collection-card:hover .gallery-collection-cta { text-decoration: underline; }
.gallery-collections-footer { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; padding: 2rem; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.1); text-align: center; justify-content: center; }

/* ── GALLERY: GRID UPGRADE ── */
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.gallery-grid-pagbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.gallery-grid-count { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gray); letter-spacing: 0.05em; }
.gallery-grid-perpage { display: flex; align-items: center; gap: 0.5rem; }
.gallery-grid-pag-btn.disabled { opacity: 0.3; cursor: default; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── GALLERY: MAGAZINE UPGRADE ── */
.gallery-magazine-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-magazine-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 0.75rem 0.65rem; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%); }
.gallery-magazine-item-caption { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 0.2rem; letter-spacing: 0.01em; }
.gallery-magazine-item-meta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.85); }
.gallery-magazine-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); background: var(--dark-3); transition: border-color 0.3s, transform 0.3s; }
.gallery-magazine-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-magazine-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.gallery-magazine-item:hover img { transform: scale(1.05); }

/* ── GALLERY: SCROLL UPGRADE ── */
.gallery-scroll-header { display: flex; justify-content: flex-end; margin-bottom: 0.75rem; }
.gallery-scroll-drag { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--gold); letter-spacing: 0.02em; opacity: 0.9; }
.gallery-scroll-star { position: absolute; top: 0.75rem; right: 0.75rem; color: var(--gold); font-size: 1.2rem; z-index: 2; text-shadow: 0 0 8px rgba(201,168,76,0.5); }
.gallery-scroll-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 1.25rem 1.25rem; background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 50%, transparent 100%); }
.gallery-scroll-category { display: inline-block; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.gallery-scroll-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #F5F5F5; line-height: 1.2; margin-bottom: 0.3rem; letter-spacing: 0.01em; }
.gallery-scroll-meta { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.85); }
.gallery-scroll-bottom { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid rgba(201,168,76,0.15); }
.gallery-scroll-arrows { display: flex; gap: 0.5rem; }
.gallery-scroll-arrow-btn { background: none; border: 1px solid rgba(201,168,76,0.35); color: var(--gold); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.gallery-scroll-arrow-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.gallery-scroll-counter { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }
.gallery-scroll-collection-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.gallery-scroll-item { flex: 0 0 auto; position: relative; height: 480px; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); scroll-snap-align: start; transition: border-color 0.3s; background: var(--dark-3); overflow: hidden; min-width: 280px; max-width: 700px; }
.gallery-scroll-item:first-child { border-color: var(--gold); }
.gallery-scroll-item:hover { border-color: rgba(201,168,76,0.45); }
.gallery-scroll-item img { height: 100%; width: auto; object-fit: contain; object-position: center top; display: block; transition: transform 0.6s; }
.gallery-scroll-item:hover img { transform: scale(1.03); }
@media (max-width: 768px) { .gallery-scroll-item { height: 360px; min-width: 200px; max-width: 500px; } }

/* ── GALLERY: TIMELINE UPGRADE ── */
.gallery-timeline { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.gallery-timeline-year { padding-left: 2rem; position: relative; margin-bottom: 1.5rem; }
.gallery-timeline-year::before { content: ''; position: absolute; left: 9px; top: 1.5rem; bottom: -1.5rem; width: 1px; background: rgba(201,168,76,0.2); }
.gallery-timeline-year:last-child::before { display: none; }
.gallery-timeline-dot { position: absolute; left: 3px; top: 0.6rem; width: 13px; height: 13px; border-radius: 50%; background: var(--dark-3); border: 2px solid rgba(201,168,76,0.4); transition: all 0.2s; }
.gallery-timeline-dot.active { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px rgba(201,168,76,0.5); }
.gallery-timeline-year-header:hover .gallery-timeline-dot { border-color: var(--gold); }
.gallery-timeline-year-header { display: flex; align-items: center; gap: 0.85rem; cursor: pointer; margin-bottom: 0.85rem; user-select: none; }
.gallery-timeline-year-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 0.01em; }
.gallery-timeline-year-count { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.gallery-timeline-toggle { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(201,168,76,0.5); margin-left: auto; }

/* ── CREDIT MODAL: SPOTLIGHT LAYOUT ── */
.credit-spotlight-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.5rem; margin-top: 0.25rem; align-items: start; }
.credit-spotlight-featured { position: relative; overflow: hidden; cursor: pointer; border: 2px solid rgba(201,168,76,0.5); transition: border-color 0.3s; }
.credit-spotlight-featured:hover { border-color: var(--gold); }
.credit-spotlight-featured img { width: 100%; height: auto; display: block; transition: transform 0.4s; }
.credit-spotlight-featured:hover img { transform: scale(1.03); }
.credit-spotlight-badge { position: absolute; top: 0.6rem; left: 0.6rem; background: rgba(201,168,76,0.9); color: #000; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; font-weight: 700; }
.credit-spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; align-content: start; }
.credit-spotlight-item { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); transition: border-color 0.3s, transform 0.3s; }
.credit-spotlight-item:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-2px); }
.credit-spotlight-item img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.credit-spotlight-item:hover img { transform: scale(1.04); }
.credit-spotlight-solo { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.2); }
.credit-spotlight-solo img { width: 100%; height: auto; display: block; }
@media (max-width: 600px) { .credit-spotlight-wrap { grid-template-columns: 1fr; } .credit-spotlight-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════
   EDITORIAL WALL — PREMIUM LAYOUT
   ═══════════════════════════════════════════ */

.ew-outer { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; margin-top: 1.5rem; align-items: start; }
@media (max-width: 900px) { .ew-outer { grid-template-columns: 1fr; } }

/* SIDEBAR */
.ew-sidebar { display: flex; flex-direction: column; gap: 0.15rem; position: sticky; top: 1rem; }
@media (max-width: 900px) { .ew-sidebar { display: none; } }
.ew-sidebar-section-label { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.7; padding: 0.75rem 0 0.35rem; border-top: 1px solid rgba(201,168,76,0.12); margin-top: 0.25rem; }
.ew-sidebar-section-label:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.ew-sidebar-btn { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; border-left: 2px solid transparent; color: var(--gray); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.03em; padding: 0.35rem 0.5rem; cursor: pointer; width: 100%; text-align: left; transition: all 0.2s; }
.ew-sidebar-btn:hover { color: var(--text); background: rgba(201,168,76,0.04); border-left-color: rgba(201,168,76,0.3); }
.ew-sidebar-btn.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.07); }
.ew-sidebar-icon { font-size: 0.75rem; flex-shrink: 0; width: 14px; text-align: center; }
.ew-sidebar-label { flex: 1; }
.ew-sidebar-count { font-family: var(--font-mono); font-size: 0.48rem; color: var(--gold); background: rgba(201,168,76,0.1); padding: 0.1rem 0.35rem; }
.ew-quote-card { margin-top: 1rem; padding: 1rem; border: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.04); }
.ew-quote-mark { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.ew-quote-text { font-family: var(--font-display); font-size: 0.8rem; color: var(--text); line-height: 1.6; font-style: italic; margin-bottom: 0.4rem; }
.ew-quote-sig { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.8; }
.ew-add-btn { margin-top: 1rem; width: 100%; background: none; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; padding: 0.5rem; cursor: pointer; transition: all 0.2s; }
.ew-add-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* SHARED OVERLAY */
.ew-card { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.15); background: #0A0A0A; transition: border-color 0.3s, box-shadow 0.3s; }
.ew-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s ease; }
.ew-card:hover img { transform: scale(1.04); }
.ew-card:hover { border-color: rgba(201,168,76,0.5); box-shadow: 0 0 24px rgba(201,168,76,0.12); }
.ew-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 1rem 0.85rem; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s; }
.ew-card-overlay.always { opacity: 1; }
.ew-card:hover .ew-card-overlay { opacity: 1; }
.ew-overlay-category { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.ew-overlay-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #F5F5F5; line-height: 1.2; margin-bottom: 0.2rem; }
.ew-overlay-meta { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.08em; color: #A0A0A0; margin-bottom: 0.4rem; }
.ew-overlay-bar { width: 2rem; height: 2px; background: var(--gold); }

/* ROW 1: HERO + RIGHT COL */
.ew-row1 { display: grid; grid-template-columns: 1.8fr 1fr; gap: 0.5rem; margin-bottom: 0.5rem; }
@media (max-width: 768px) { .ew-row1 { grid-template-columns: 1fr; } }
.ew-hero-card { aspect-ratio: 3/2; }
.ew-hero-card .ew-overlay-title { font-size: 1.5rem; }
.ew-right-col { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.5rem; min-height: 0; }
.ew-right-col > * { min-height: 0; min-width: 0; }
.ew-sec-card { aspect-ratio: unset; }
.ew-sec-card { }

/* Quote in grid */
.ew-grid-quote { background: #0E0E0E; border: 1px solid rgba(201,168,76,0.2); padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.ew-gq-mark { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.ew-gq-text { font-family: var(--font-display); font-size: 0.8rem; font-style: italic; color: #F5F5F5; line-height: 1.5; }
.ew-gq-sig { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.8; }

/* Milestone in grid */
.ew-grid-milestone { background: linear-gradient(135deg, #0E0E0E, #141414); border: 1px solid rgba(201,168,76,0.2); padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; gap: 0.35rem; }
.ew-ms-icon { font-size: 1.25rem; }
.ew-ms-label { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ew-ms-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #F5F5F5; line-height: 1.2; }
.ew-ms-sub { font-family: var(--font-mono); font-size: 0.48rem; color: #A0A0A0; line-height: 1.5; }

/* ROW 2: MOSAIC */
.ew-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 0.5rem; margin-bottom: 0.5rem; }
.ew-mosaic-large  { grid-column: span 5; grid-row: span 2; }
.ew-mosaic-medium { grid-column: span 4; grid-row: span 2; }
.ew-mosaic-small  { grid-column: span 3; grid-row: span 1; }
@media (max-width: 768px) {
  .ew-mosaic { grid-template-columns: repeat(4,1fr); grid-auto-rows: 120px; }
  .ew-mosaic-large { grid-column: span 4; grid-row: span 2; }
  .ew-mosaic-medium { grid-column: span 2; grid-row: span 2; }
  .ew-mosaic-small { grid-column: span 2; grid-row: span 1; }
}

/* ROW 3: STRIP */
.ew-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.5rem; }
.ew-strip-card { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.12); background: #0A0A0A; aspect-ratio: 1; transition: border-color 0.3s, transform 0.2s; }
.ew-strip-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.ew-strip-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }
.ew-strip-card:hover img { transform: scale(1.06); }

.ew-empty { font-family: var(--font-display); font-size: 1rem; color: var(--gray); text-align: center; padding: 3rem; opacity: 0.5; }
