@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&family=Assistant:wght@300;400;600&display=swap');

:root {
  --obsidian: #070707;
  --gold: #00f6ff;
  --sky: #4FC3F7;
  --charcoal: #121212;
  --surface: #1a1a1a;
  --font-heading: 'Heebo', sans-serif;
  --font-body: 'Assistant', sans-serif;
}

html { direction: rtl; scroll-behavior: smooth; }

body.jap-site,
body {
  background: var(--obsidian) !important;
  color: #fff !important;
  font-family: var(--font-body);
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.gold-text {
  background: linear-gradient(135deg, #00f6ff, #00f6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gold {
  background: #00f6ff;
  color: #000 !important;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.8s ease, box-shadow 0.8s ease;
}
.btn-gold:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 246, 255, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: #00f6ff !important;
  border: 1px solid #00f6ff;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.8s ease;
}
.btn-outline-gold:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}

#scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(to bottom, #00f6ff, #4FC3F7);
  z-index: 9999;
}

/* Header */
.jap-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0,0,0,0) 100%);
  transition: padding 0.4s ease;
}
.jap-header.is-scrolled { padding: 0.4rem 0; }
.jap-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.jap-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.jap-topbar a:hover { color: #00f6ff; }
.jap-social {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}
.jap-social a {
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.jap-social a:hover { color: #00f6ff; }
.jap-social--header a svg { width: 18px; height: 18px; display: block; }
.jap-social--circles {
  margin-top: 1.5rem;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.jap-social--circles a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0,246,255,0.4);
  color: rgba(0,246,255,0.7);
}
.jap-social--circles a:hover {
  color: #4FC3F7;
  border-color: #4FC3F7;
  background: rgba(79,195,247,0.1);
}

.jap-navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.jap-logo img { height: 56px; width: auto; }
.jap-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.jap-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.jap-menu a:hover,
.jap-menu .current-menu-item > a,
.jap-menu .current_page_item > a { color: #00f6ff; }

.jap-has-sub { position: relative; }
.jap-caret { font-size: 0.7em; margin-right: 0.25rem; opacity: 0.8; }
.jap-submenu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
  background: #0a0a0a;
  border: 1px solid rgba(0,246,255,0.35);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.jap-has-sub:hover > .jap-submenu,
.jap-has-sub:focus-within > .jap-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.jap-submenu li a {
  display: block;
  padding: 0.7rem 1.1rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.jap-submenu li:last-child a { border-bottom: none; }
.jap-submenu li a:hover {
  color: #00f6ff;
  background: rgba(0,246,255,0.06);
}

.jap-mobile-sub-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  text-align: right;
  padding: 0.75rem 0;
  font-size: 1rem;
  cursor: pointer;
}
.jap-mobile-sub {
  display: none;
  padding-right: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.jap-mobile-sub.open { display: block; }
.jap-mobile-sub a {
  display: block;
  padding: 0.55rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.jap-mobile-sub a:hover { color: #00f6ff; }

.jap-artist-page { background: #070707; }
.jap-artist-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #0a0a0a;
}
.jap-artist-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  display: block;
}
.jap-artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 45%, rgba(0,0,0,0.3));
  pointer-events: none;
}
.jap-artist-hero-text {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  z-index: 2;
  text-align: right;
  max-width: min(90vw, 40rem);
}
@media (min-width: 768px) {
  .jap-artist-hero-text { right: 3rem; bottom: 2.75rem; }
}
.jap-artist-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  justify-content: flex-end;
}
.jap-artist-cats span {
  color: #4FC3F7;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.jap-artist-hero-text h1 {
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 900;
}
.jap-artist-role {
  color: #00f6ff;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}
.jap-artist-bio { padding: 3.5rem 1.5rem 1rem; }
.jap-artist-bio-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: right;
}
.jap-artist-bio-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 300;
  margin: 0 0 1rem;
}
.jap-bio-spacer { height: 0.5rem; }
.jap-artist-body { padding: 4rem 1.5rem 4rem; }
.jap-artist-body-inner {
  max-width: 56rem;
  margin: 0 auto;
}
.jap-artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .jap-artist-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .jap-artist-media { grid-column: 1 / -1; }
}
.jap-artist-follow h3,
.jap-artist-media h3 {
  color: #00f6ff;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  text-align: right;
  font-weight: 700;
}
.jap-artist-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.jap-artist-icons a {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid #00f6ff;
  color: #00f6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.jap-artist-icons a:hover {
  color: #4FC3F7;
  border-color: #4FC3F7;
  background: rgba(79,195,247,0.1);
}
.jap-artist-media { margin-top: 1rem; }
.jap-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(0,246,255,0.3);
  background: #121212;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
}
.jap-video-thumb:hover { border-color: #00f6ff; }
.jap-video-thumb-media {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #121212;
}
.jap-video-thumb-media img,
.jap-video-thumb-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jap-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.jap-video-play > svg,
.jap-video-play {
  pointer-events: none;
}
.jap-video-play::before {
  content: '';
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: #00f6ff;
  box-shadow: 0 0 25px rgba(0,246,255,0.35);
  position: absolute;
}
.jap-video-play svg {
  position: relative;
  z-index: 1;
}
.jap-media-image {
  width: 100%;
  margin-top: 1.5rem;
  border: 1px solid rgba(0,246,255,0.3);
  border-radius: 2px;
  display: block;
}
.jap-artist-book {
  margin-top: 4rem;
  padding: 2rem;
  background: #121212;
  border: 1px solid rgba(0,246,255,0.3);
  text-align: center;
}
.jap-artist-book h3 {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  margin: 0 0 0.5rem;
}
.jap-artist-book p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}
.jap-video-modal[hidden] { display: none !important; }
.jap-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.jap-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
}
.jap-video-modal-dialog {
  position: relative;
  width: min(56rem, 100%);
  z-index: 1;
}
.jap-video-modal-close {
  position: absolute;
  top: -2.2rem;
  left: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 0.9rem;
}
.jap-video-modal-frame { aspect-ratio: 16 / 9; background: #000; }
.jap-video-modal-frame iframe,
.jap-video-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.jap-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.jap-mobile-panel {
  display: none;
  background: #0a0a0a;
  border-top: 1px solid rgba(0,246,255,0.2);
  padding: 1rem 1.5rem 1.5rem;
}
.jap-mobile-panel.open { display: block; }
.jap-mobile-panel a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

/* Hero */
.jap-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0a0a0a;
}
.jap-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.jap-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2), #070707);
  z-index: 2;
}
.jap-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
  max-width: 48rem;
}
.jap-eyebrow {
  color: #00f6ff;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.jap-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  margin: 0 0 1.5rem;
}
.jap-divider {
  height: 1px;
  width: 8rem;
  background: #00f6ff;
  margin: 0 auto 1rem;
}
.jap-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 0 2rem;
}

/* Sections */
.jap-section {
  position: relative;
  z-index: 10;
  padding: 4rem 1.5rem;
}
.jap-wrap {
  max-width: 80rem;
  margin: 0 auto;
}
.jap-section-head { text-align: center; margin-bottom: 3rem; }
.jap-section-head h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
}

/* Artists grid */
.jap-artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.artist-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #121212;
  aspect-ratio: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.artist-card:hover { transform: translateY(-8px); }
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s;
}
.artist-card:hover img { filter: brightness(1.05); }
.artist-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
  pointer-events: none;
}
.artist-card:hover::after {
  border-color: #00f6ff;
  box-shadow: 0 0 20px rgba(158, 2, 247, 0.25);
}
.artist-card-info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, #070707, transparent);
  z-index: 2;
}
.artist-card-info h3 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}
.artist-card-info span {
  color: #00f6ff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* Value cards */
.jap-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.jap-value-card {
  position: relative;
  background: #121212;
  border: 1px solid rgba(0,246,255,0.2);
  padding: 2rem;
  overflow: hidden;
  text-align: right;
  transition: border-color 0.3s;
}
.jap-value-card:hover { border-color: rgba(0,246,255,0.5); }
.jap-value-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.jap-value-card > * { position: relative; z-index: 1; }
.jap-value-num {
  color: rgba(0,246,255,0.3);
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.jap-value-card h3 {
  color: #00f6ff;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}
.jap-value-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.jap-cta {
  text-align: center;
  padding: 6rem 1.5rem;
}
.jap-cta > .jap-eyebrow,
.jap-cta > h2,
.jap-cta > p {
  text-align: center;
}
.jap-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1.5rem;
}
.jap-cta > p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }

.jap-form,
.jap-form .wpcf7,
.jap-form .wpcf7-form,
.wpcf7 {
  text-align: right !important;
  direction: rtl;
}
.jap-form {
  display: block;
  max-width: 28rem;
  margin: 0 auto;
}
.jap-form .wpcf7-form p {
  margin: 0 0 0.85rem;
  text-align: right !important;
  color: #fff;
}
.jap-form label,
.wpcf7 label {
  display: block;
  text-align: right !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.jap-form input[type="text"],
.jap-form input[type="email"],
.jap-form input[type="tel"],
.jap-form textarea,
.jap-form select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100% !important;
  background: transparent !important;
  border: 1px solid rgba(0,246,255,0.4) !important;
  color: #fff !important;
  padding: 0.85rem 1rem !important;
  border-radius: 2px !important;
  outline: none;
  text-align: right !important;
  box-sizing: border-box;
  margin-top: 0.35rem;
}
.jap-form input:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #00f6ff !important;
}
.jap-form input::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.jap-form input[type="submit"],
.jap-form .wpcf7-submit,
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  margin-top: 0.75rem !important;
  background: #00f6ff !important;
  background-color: #00f6ff !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  border: none !important;
  padding: 0.95rem 2rem !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  text-align: center !important;
  line-height: 1.3 !important;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.jap-form input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: #ffffff !important;
  box-shadow: 0 0 25px rgba(0, 246, 255, 0.3);
}

/* Logo strip */
.jap-logos {
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 246, 255, 0.06) 0%,
    rgba(0, 246, 255, 0.12) 50%,
    rgba(0, 246, 255, 0.06) 100%
  );
  border-top: 3px solid #00f6ff;
  border-bottom: 3px solid #00f6ff;
}
.jap-logos::before,
.jap-logos::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #00f6ff;
  opacity: 0.45;
  pointer-events: none;
}
.jap-logos::before { top: 8px; }
.jap-logos::after { bottom: 8px; }
.jap-logos-track {
  display: flex;
  gap: 4.5rem;
  width: max-content;
  animation: jap-marquee 32s linear infinite;
  align-items: center;
  padding: 1.25rem 2rem;
}
.jap-logos-track img {
  height: 88px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.jap-logos-track img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 246, 255, 0.45));
}
@media (max-width: 768px) {
  .jap-logos-track img { height: 64px; max-width: 160px; }
  .jap-logos-track { gap: 2.75rem; }
}
@keyframes jap-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Page header (inner pages) */
.jap-page-hero {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
}
.jap-page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin: 0.5rem 0 1.5rem;
}

/* Footer */
.jap-footer {
  background: #070707;
  border-top: 1px solid rgba(0,246,255,0.2);
  padding: 4rem 1.5rem 2rem;
}
.jap-footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.jap-footer h3 {
  color: #00f6ff;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.jap-footer p,
.jap-footer a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
}
.jap-footer a:hover { color: #00f6ff; }
.jap-footer ul { list-style: none; margin: 0; padding: 0; }
.jap-footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* Events page */
.jap-events-page { background: #070707; }
.jap-events-text { padding: 0 1.5rem 4rem; }
.jap-events-text-inner { max-width: 56rem; margin: 0 auto; }
.jap-events-text-block { text-align: center; margin-bottom: 2rem; }
.jap-events-text-block h2 {
  color: #00f6ff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.jap-events-body p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 300;
  margin: 0 0 0.75rem;
}
.jap-events-media { padding: 0 1.5rem 6rem; }
.jap-events-media-inner { max-width: 72rem; margin: 0 auto; }
.jap-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .jap-events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .jap-events-grid { grid-template-columns: repeat(3, 1fr); }
}
.jap-events-card {
  position: relative;
  background: #121212;
  border: 1px solid rgba(0,246,255,0.2);
  overflow: hidden;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
.jap-events-card:hover { border-color: rgba(0,246,255,0.5); }
.jap-events-card > img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}
.jap-events-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.jap-events-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.jap-events-card-info { padding: 1rem; text-align: right; }
.jap-events-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}
.jap-events-card-body {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin: 0.35rem 0 0;
}
.jap-events-empty {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 1.125rem;
  padding: 4rem 0;
}

/* About page */
.jap-about-page { background: #070707; }
.jap-about-title-wrap {
  position: relative;
  z-index: 3;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .jap-about-title-wrap { margin-top: -6rem; padding-top: 0; }
}
.jap-about-title-wrap h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
.jap-about-main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.jap-about-main-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.jap-about-main-inner.has-image {
  max-width: none;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .jap-about-main-inner.has-image { grid-template-columns: 1fr 1fr; }
}
.jap-about-side-image {
  position: relative;
  border: 1px solid rgba(0,246,255,0.3);
}
.jap-about-side-image img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
}
.jap-about-blocks { text-align: right; }
.jap-about-block { margin-bottom: 2.5rem; }
.jap-about-block h2 {
  color: #00f6ff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 0 0 0.85rem;
}
.jap-about-body p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 300;
  margin: 0 0 0.5rem;
}
.jap-about-body .jap-about-li {
  padding-right: 1rem;
  position: relative;
}
.jap-about-body .jap-about-li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: #00f6ff;
}
.jap-about-values { margin-top: 4rem; }

.jap-about-content { text-align: right; }

/* Elementor overrides */
.elementor-page .site-header,
.elementor-page .site-footer { display: none; }
.elementor-kit-1 { --e-global-color-primary: #00f6ff; }
.elementor-section { background: transparent; }

/* Hide Hello theme chrome when our header is present */
body.jap-site header.site-header,
body.jap-site footer.site-footer { display: none !important; }

@media (max-width: 900px) {
  .jap-menu { display: none; }
  .jap-burger { display: block; }
  .jap-artists-grid { grid-template-columns: repeat(2, 1fr); }
  .jap-values { grid-template-columns: 1fr; }
  .jap-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .jap-topbar { justify-content: center; flex-wrap: wrap; }
  .jap-logo img { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .jap-logos-track { animation: none !important; }
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #070707; }
::-webkit-scrollbar-thumb { background: #00f6ff; border-radius: 2px; }
