/* =============================================
   JAZZY O — WEBSITE STYLES
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ENTRY OVERLAY */
#entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
#entry-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
body.overlay-open {
}
.entry-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.entry-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.entry-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.entry-pre {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.entry-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 14px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 48px;
}
#entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#entry-btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.entry-btn-icon {
  font-size: 14px;
}

/* MUSIC BUTTON */
#music-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(10,10,10,0.75);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.2s;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
#music-btn:hover { background: var(--gold); color: var(--dark); transform: scale(1.08); }

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --light: #f5f0e8;
  --text: #2a2a2a;
  --text-muted: #666;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* UTILITY */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section.dark { background: var(--dark); color: var(--white); }
.centered { text-align: center; }
.centered-content { text-align: center; }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-label.light { color: var(--gold-light); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}
h2.light { color: var(--white); }
h2.centered { text-align: center; }

p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 18px; }
p.light { color: rgba(255,255,255,0.75); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.9;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all var(--transition);
  text-decoration: none;
  margin-top: 16px;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 16px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--white);
  text-decoration: none;
}

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 22px;
}
.nav-links a.nav-cta:hover { background: var(--gold); color: var(--dark); }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.close-menu {
  position: absolute;
  top: 30px; right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  z-index: 2;
  padding: 120px 20px 80px;
}

.hero-pre {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 14px;
  color: var(--white);
  line-height: 1;
  margin: 0;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-btn {
  display: inline-block;
  border: 1px solid rgba(201,169,110,0.6);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 44px;
  text-decoration: none;
  transition: all var(--transition);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.hero-btn-bottom {
  display: block;
  margin: 80px auto 0;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--light); }

.about-image { position: relative; }
.image-frame {
  position: relative;
  padding-bottom: 130%;
  overflow: hidden;
}
.image-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
  transition: transform 0.6s ease;
}
.image-frame:hover .photo { transform: scale(1.04); }

.about-text h2 { color: var(--text); }
.about-text p { color: var(--text-muted); }
.about-text p em { color: var(--text); font-style: normal; font-weight: 500; }

/* =============================================
   STATEMENT
   ============================================= */
.statement {
  background: var(--dark);
  padding: 120px 0;
  border-bottom: 1px solid rgba(201,169,110,0.4);
}
.statement-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.statement-inner::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 12rem;
  line-height: 0;
  color: rgba(201,169,110,0.12);
  position: absolute;
  top: 60px;
  left: -40px;
  pointer-events: none;
}
.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 40px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}
.statement-author {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}
.statement-author::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}
.statement-author::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 14px;
}

/* =============================================
   SOUND
   ============================================= */
.sound { background: var(--dark-2); }

.genres {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 50px 0 80px;
}
.genre-card {
  border: 1px solid rgba(201,169,110,0.25);
  padding: 32px 28px;
  text-align: center;
  min-width: 160px;
  flex: 1;
  transition: all var(--transition);
  cursor: default;
}
.genre-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
  transform: translateY(-4px);
}
.genre-icon { font-size: 1.8rem; margin-bottom: 12px; color: var(--gold); }
.genre-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
}

.sax-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.sax-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 16px;
  position: relative;
}
.sax-features li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--gold);
  line-height: 1;
}
.btn-outline.light-btn {
  border-color: rgba(201,169,110,0.6);
  color: var(--gold);
}
.btn-outline.light-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.live-experience {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 80px;
  margin-top: 20px;
}
.sax-photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.3);
}
.sax-photo {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.sax-photo-frame:hover .sax-photo { transform: scale(1.04); }
.sax-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 30px 20px 16px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* =============================================
   WHAT I OFFER
   ============================================= */
.offerings { background: var(--white); }
.offerings h2 { text-align: center; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: #e0d8cc;
}
.offering-card {
  background: var(--white);
  padding: 48px 36px;
  transition: all var(--transition);
}
.offering-card:hover { background: var(--dark); }
.offering-card:hover h3,
.offering-card:hover p { color: var(--white); }
.offering-card:hover .offering-icon { color: var(--gold); }

.offering-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
  transition: color var(--transition);
}
.offering-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
}
.offering-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  transition: color var(--transition);
}

/* =============================================
   RESIDENCIES
   ============================================= */
.residencies { background: var(--light); }
.residencies h2 { margin-bottom: 50px; }

.residency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.residency-card {
  background: var(--white);
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
}
.residency-card.featured { border-bottom-color: var(--gold); }
.residency-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.residency-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.residency-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.residency-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* RESIDENCIES — NEW LAYOUT */
.res-block { margin-bottom: 36px; }

.res-list { margin-top: 24px; }

.res-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e8e0d0;
  gap: 20px;
}
.res-item:first-child { border-top: 1px solid #e8e0d0; }

.res-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.res-venue {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}
.res-location {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.res-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  flex-shrink: 0;
}

/* THREE COLUMNS */
.res-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
  margin-bottom: 36px;
}
.res-col .section-label { margin-bottom: 14px; }
.res-col-list {
  list-style: none;
  padding: 0; margin: 0;
}
.res-col-list li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid #f0ebe0;
  letter-spacing: 0.2px;
}
.res-col-list li:last-child { border-bottom: none; }

/* BRAND */
.res-brand { text-align: center; }
.res-brand .section-label { justify-content: center; display: block; margin-bottom: 20px; }
.res-brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}
.res-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  display: inline-block;
  transition: color var(--transition);
}
.res-brand-name:hover { color: var(--gold); }

/* =============================================
   MUSIC PRODUCTION
   ============================================= */
.production { background: var(--dark-3); }

.production-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.production-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
}
.waveform-bar {
  flex: 1;
  background: var(--gold);
  opacity: 0.6;
  border-radius: 2px 2px 0 0;
  animation: wave 1.5s ease-in-out infinite alternate;
}
.waveform-bar:nth-child(2n) { opacity: 0.3; animation-delay: 0.2s; }
.waveform-bar:nth-child(3n) { opacity: 0.5; animation-delay: 0.4s; }
.waveform-bar:nth-child(4n) { opacity: 0.7; animation-delay: 0.1s; }
.waveform-bar:nth-child(5n) { opacity: 0.4; animation-delay: 0.6s; }

.bandcamp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,169,110,0.4);
  padding: 16px 28px;
  color: var(--gold);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all var(--transition);
  width: fit-content;
}
.bandcamp-link:hover { background: var(--gold); color: var(--dark); }
.bandcamp-link::before { content: '♫'; font-size: 1.1rem; }

.philosophy-quote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-top: 32px;
}
.philosophy-quote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

/* PARTICLE CANVAS */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* PRODUCTION PHOTO */
.production-photo {
  width: 100%;
  border: 1px solid rgba(201,169,110,0.2);
  display: block;
  transition: transform 0.6s ease;
}
.production-visual:hover .production-photo { transform: scale(1.03); }
.production-visual { overflow: hidden; }

/* PLAYERS */
.player-section { margin-top: 70px; }
.player-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}
.player-wrap {
  border: 1px solid rgba(201,169,110,0.2);
  overflow: hidden;
}
.spotify-cta {
  border: 1px solid rgba(201,169,110,0.2);
  padding: 50px 40px;
  text-align: center;
}
.spotify-cta p { max-width: 480px; margin: 0 auto 28px; }

/* STREAM LINKS */
.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.stream-link {
  border: 1px solid rgba(201,169,110,0.3);
  padding: 10px 20px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.stream-link:hover { border-color: var(--gold); color: var(--gold); }

/* PERF BLOCKS */
.perf-block { margin-top: 50px; }

/* =============================================
   VIDEOS
   ============================================= */
.videos { background: var(--dark-3); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.video-wrap {
  position: relative;
  border: 1px solid rgba(201,169,110,0.25);
  overflow: hidden;
  padding-bottom: 177.78%;
  transition: border-color var(--transition);
}
.video-wrap:hover { border-color: var(--gold); }

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

@media (max-width: 700px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* =============================================
   PRESS & MEDIA GALLERY
   ============================================= */
.press { background: var(--dark-2); }
.press h2 { color: var(--white); }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.press-frame {
  position: relative;
  overflow: hidden;
  /* Gold border frame */
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 4px var(--dark-2),
    0 0 0 6px rgba(201,169,110,0.25);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.press-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s ease;
}

.press-frame:hover img { transform: scale(1.06); }

.press-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.press-frame:hover .press-overlay { opacity: 1; }

.download-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.download-btn:hover { background: var(--gold); color: var(--dark); }

.press-caption {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

/* FOOTER SOCIAL ICONS */
.footer-social a {
  width: 44px; height: 44px;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   GIVING BACK
   ============================================= */
.giving { background: #0d0d0d; }

.causes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.cause {
  border: 1px solid rgba(201,169,110,0.3);
  padding: 14px 28px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.cause:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--white); }

/* CONTACT CHANNELS */
.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d4c9b0;
  padding: 14px 28px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.contact-channel:hover { border-color: var(--gold); color: var(--gold); }
.channel-icon { font-size: 1.1rem; }

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #d4c9b0;
  background: #faf8f4;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }

.contact-form .btn-primary { width: 100%; text-align: center; font-size: 11px; padding: 18px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 60px 0 40px;
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 10px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 160px;
  width: 160px;
  object-fit: contain;
  border-radius: 50%;
  margin: 28px auto 0;
  display: block;
  opacity: 0.9;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 20px; justify-content: center; margin-bottom: 32px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); letter-spacing: 1px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}
@keyframes wave {
  from { height: 20%; }
  to   { height: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CURSOR GLOW */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
}

/* OFFERING CARD STAGGER */
.offering-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, background var(--transition);
}
.offering-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse { direction: ltr; }
  .residency-grid { grid-template-columns: 1fr 1fr; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .production-inner { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .res-columns { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  /* NAV */
  #navbar { padding: 18px 20px; }
  #navbar.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .burger { display: block; }

  /* HERO — keep JAZZY O on one line */
  .hero-title {
    font-size: clamp(3rem, 18vw, 5rem);
    letter-spacing: 8px;
    white-space: nowrap;
  }
  .hero-pre { font-size: 9px; letter-spacing: 3px; }
  .hero-sub { font-size: 9px; letter-spacing: 3px; }

  /* STATEMENT */
  .statement { padding: 70px 0; }
  .statement-inner::before { font-size: 7rem; top: 30px; left: -10px; }
  .statement-quote { font-size: 1.3rem; }

  /* ABOUT */
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .image-frame { padding-bottom: 100%; }

  /* GENRES */
  .genres { gap: 10px; }
  .genre-card { min-width: 120px; padding: 20px 14px; }

  /* OFFERINGS */
  .offerings-grid { grid-template-columns: 1fr; }

  /* RESIDENCIES */
  .residency-grid { grid-template-columns: 1fr; }
  .res-left { flex-direction: column; gap: 2px; }
  .res-location { display: none; }
  .res-columns { grid-template-columns: 1fr; gap: 24px; }

  /* PRODUCTION */
  .production-inner { grid-template-columns: 1fr; }
  .stream-links { flex-wrap: wrap; }

  /* VIDEOS */
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* PRESS */
  .press-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* CONTACT */
  .form-row { grid-template-columns: 1fr; }
  .contact-channels { flex-direction: column; align-items: center; }

  /* FOOTER */
  .footer-social { gap: 12px; flex-wrap: wrap; justify-content: center; }
}
