/* ============================================
   CHRIS WARUNKI — Main Stylesheet
   Yin & Yang: Real Estate + Music
   ============================================ */

:root {
  /* Real Estate palette — navy + silver to match Drum Roll logo */
  --re-dark: #101c46;
  --re-mid: #16265a;
  --re-gold: #c8ccd4;
  --re-gold-light: #e0e4ea;
  --re-ivory: #f0f3f8;
  --re-text: #d8dde8;
  --re-accent: #8a92a8;

  /* Music palette — punchy yellow-orange */
  --mu-dark: #2a1500;
  --mu-mid: #5a2a05;
  --mu-accent: #ffd060;
  --mu-accent2: #ffe080;
  --mu-cream: #ffffff;
  --mu-text: #fff5dc;

  /* Shared */
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-mono: 'DM Mono', monospace;
  --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  background: #0a0a0a;
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  background: transparent;
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  opacity: 0.95;
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-link.re-link:hover { color: var(--re-gold); }
.nav-link.re-link:hover::after { background: var(--re-gold); }
.nav-link.music-link:hover { color: #ffd060; }
.nav-link.music-link:hover::after { background: #ffd060; }

/* ============ HERO SPLIT — HOME ============ */
.home-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-split {
  display: flex;
  flex: 1;
  min-height: 100vh;
  position: relative;
}

.side {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex var(--transition);
  cursor: pointer;
}

.hero-split:hover .side { flex: 0.85; }
.hero-split .side:hover { flex: 1.3; }

.side-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 7rem 4rem 4rem;
  position: relative;
  z-index: 2;
}

.side-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.re-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(138,146,168,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #101c46 0%, #16265a 40%, #0d1a3a 100%);
}

.music-bg {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,192,64,0.25) 0%, transparent 70%),
    linear-gradient(135deg, #d96a08 0%, #c25a05 50%, #a04500 100%);
}

.side:hover .side-bg { transform: scale(1.03); }

/* Grain texture overlay */
.side::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.side-content {
  position: relative;
  z-index: 3;
}

.side-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.2rem;
}

.re-heading {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--re-ivory);
  margin-bottom: 1.5rem;
}

.music-heading {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--mu-cream);
  margin-bottom: 1.5rem;
}

.side-re .side-heading span,
.music-heading span {
  display: block;
}

.side-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.65;
  margin-bottom: 2.2rem;
  max-width: 280px;
}

.side-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid;
  transition: all 0.3s;
}

.side-re .side-cta {
  border-color: var(--re-gold);
  color: var(--re-gold);
}

.side-re .side-cta:hover {
  background: var(--re-gold);
  color: var(--re-dark);
}

.side-music .side-cta {
  border-color: #fff;
  color: #fff;
}

.side-music .side-cta:hover {
  background: #fff;
  color: #b85008;
}

.arrow { transition: transform 0.3s; }
.side-cta:hover .arrow { transform: translateX(4px); }

.side-label {
  position: absolute;
  bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  opacity: 0.2;
  z-index: 3;
}

.re-label { left: 4rem; }
.music-label { right: 4rem; }

/* ============ YIN YANG DIVIDER ============ */
.yinyang-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
}

.yy-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(0,0,0,0.6), 0 0 0 2px rgba(255,255,255,0.1);
  overflow: hidden;
}

.yy-circle svg { width: 96px; height: 96px; display: block; }

.yy-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  dominant-baseline: middle;
}

.yy-letter-c { fill: #fff8ee; }
.yy-letter-w { fill: #fff8ee; }

.yy-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  fill: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  dominant-baseline: middle;
}

/* ============ HOME FOOTER ============ */
.home-footer {
  text-align: center;
  padding: 1.4rem;
  background: rgba(10,10,10,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  opacity: 0.45;
  letter-spacing: 0.05em;
}

.tagline em { font-style: italic; opacity: 0.8; }

/* ============ INNER PAGES — SHARED ============ */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-content { position: relative; z-index: 2; }

.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.page-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  opacity: 0.6;
  margin-top: 1.2rem;
  max-width: 500px;
  line-height: 1.55;
}

/* ============ REAL ESTATE PAGE ============ */
.re-page { background: var(--re-dark); color: var(--re-text); }

.re-hero-bg {
  background:
    radial-gradient(ellipse at 10% 60%, rgba(138,146,168,0.2) 0%, transparent 50%),
    linear-gradient(160deg, #101c46 0%, #16265a 60%, #0d1a3a 100%);
}

.re-page .page-title { color: var(--re-ivory); }

.re-section {
  padding: 5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--re-gold);
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.re-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.re-about-text h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.3rem;
  line-height: 1.35;
  color: var(--re-ivory);
  margin-bottom: 1.5rem;
}

.re-about-text p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.re-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.stat-item {
  border-left: 2px solid var(--re-gold);
  padding-left: 1.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--re-gold);
  line-height: 1;
}

.stat-desc {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 0.3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}

.service-card {
  background: var(--re-dark);
  padding: 2.2rem;
  transition: background 0.3s;
}

.service-card:hover { background: var(--re-mid); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--re-ivory);
  margin-bottom: 0.7rem;
}

.service-desc {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.55;
}

.re-cta-section {
  padding: 5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.cta-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--re-ivory);
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  margin-top: 1.5rem;
  border: 1px solid var(--re-gold);
  color: var(--re-gold);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--re-gold);
  color: var(--re-dark);
}

.btn-music {
  border-color: #fff;
  color: #fff;
}

.btn-music:hover {
  background: #fff;
  color: #b85008;
}

/* ============ MUSIC PAGE ============ */
.music-page { background: #b85008; color: var(--mu-text); }

.music-hero-bg {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,192,64,0.3) 0%, transparent 70%),
    linear-gradient(135deg, #d96a08 0%, #c25a05 50%, #a04500 100%);
}

.music-page .page-title { color: var(--mu-cream); }

.mu-section {
  padding: 5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.mu-section .section-label { color: #fff; opacity: 0.9; }

.mu-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.mu-about-text h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.3rem;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 1.5rem;
}

.mu-about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.9;
  color: #fff;
  margin-bottom: 1.2rem;
}

.genres-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.genre-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 2px;
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
}

.lesson-card {
  background: #b85008;
  padding: 2.5rem;
  transition: background 0.3s;
}

.lesson-card:hover { background: #d05a08; }

.lesson-level {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.lesson-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.7rem;
}

.lesson-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.8;
  color: #fff;
}

.mu-cta-section {
  padding: 5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.18);
}

/* ============ CONTACT PAGE ============ */
.contact-page { background: #0a0a0f; color: rgba(255,255,255,0.8); }

.contact-hero-bg {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(138,146,168,0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 100%, rgba(255,122,26,0.25) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
}

.contact-page .page-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
}

.contact-re {
  padding: 5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-music {
  padding: 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-re .contact-section-title { color: var(--re-gold); }
.contact-music .contact-section-title { color: #ffd060; }

.contact-section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  opacity: 0.45;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  width: 100%;
  appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(255,255,255,0.35);
}

.contact-re .form-input:focus,
.contact-re .form-textarea:focus,
.contact-re .form-select:focus { border-color: var(--re-gold); }

.contact-music .form-input:focus,
.contact-music .form-textarea:focus { border-color: #ffd060; }

.form-textarea { resize: vertical; min-height: 120px; }

.form-select option { background: #1a1a1a; }

.form-submit {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.contact-re .form-submit {
  background: var(--re-gold);
  color: var(--re-dark);
}

.contact-re .form-submit:hover { background: var(--re-gold-light); }

.contact-music .form-submit {
  background: #ff9020;
  color: #2a1500;
}

.contact-music .form-submit:hover { background: #ffb050; }

/* ============ SITE FOOTER ============ */
.site-footer {
  padding: 2.5rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  opacity: 0.4;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  opacity: 0.25;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover { color: rgba(255,255,255,0.7); }

.contact-detail-link {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--re-gold);
  text-decoration: none;
  margin-top: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.contact-detail-link:hover { opacity: 1; }

.contact-detail-link {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--re-gold);
  text-decoration: none;
  margin-top: 0.7rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.contact-detail-link:hover { opacity: 1; }

.nav-logo-img {
  height: 32px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.4rem;
  opacity: 0.9;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(200,204,212,0.25));
}

/* Homepage side photos */
.side-photo {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.side-photo-re {
  right: 8%;
  bottom: 15%;
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(200, 204, 212, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0.92;
}

.side-photo-music {
  left: 8%;
  bottom: 15%;
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0.85;
  filter: saturate(1.1) contrast(1.05);
}

.side:hover .side-photo { opacity: 1; }
.side:hover .side-photo-music { transform: scale(1.02); }

/* Push content over so it doesn't overlap photos */
.side-re .side-content { max-width: 50%; }
.side-music .side-content {
  max-width: 55%;
  margin-left: auto;
  text-align: right;
}
.side-music .side-sub { margin-left: auto; }

@media (max-width: 1100px) {
  .side-photo-re { width: 200px; height: 200px; right: 5%; }
  .side-photo-music { width: 200px; height: 200px; left: 5%; }
}

@media (max-width: 900px) {
  .side-photo-re,
  .side-photo-music { display: none; }
  .side-re .side-content,
  .side-music .side-content { max-width: 100%; }
  .side-music .side-content { text-align: left; }
}

/* ============ MUSIC SUB-SECTIONS ============ */
.music-anchor-nav {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.anchor-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.anchor-link:hover {
  color: #fff;
  border-bottom-color: #ffd060;
}

/* Bio facts */
.bio-facts {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.bio-fact {
  border-left: 2px solid rgba(255,255,255,0.5);
  padding-left: 1.2rem;
}

.bio-fact-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd060;
  margin-bottom: 0.3rem;
  opacity: 0.95;
}

.bio-fact-value {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.45;
  color: #fff;
  opacity: 0.95;
}

/* Media feature */
.media-feature,
.videos-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.media-text h2,
.videos-text h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.media-text p,
.videos-text p {
  color: #fff;
  opacity: 0.9;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.media-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3rem 2.5rem;
  text-align: center;
  border-radius: 4px;
}

.media-card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffd060;
  margin-bottom: 1.2rem;
}

.media-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.media-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.media-card-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 1.8rem;
}

.media-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.media-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  opacity: 0.85;
}

/* YouTube card */
.youtube-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

.youtube-card:hover {
  transform: translateY(-4px);
}

.youtube-card-link {
  display: block;
  padding: 3rem 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.youtube-play {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 16px rgba(255,0,0,0.3));
  transition: transform 0.3s;
}

.youtube-card:hover .youtube-play {
  transform: scale(1.08);
}

.youtube-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.youtube-card-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .media-feature,
  .videos-feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .music-anchor-nav { gap: 1.2rem; }
}

/* Agent & drums photos */
.agent-photo-wrap {
  margin-bottom: 2rem;
}

.agent-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--re-gold);
  display: block;
}

.drums-photo-wrap {
  margin-bottom: 2rem;
  overflow: hidden;
  border-left: 3px solid var(--mu-accent);
}

.drums-photo {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.4s;
}

.drums-photo:hover { filter: saturate(1.1); }

/* Drum Roll section */
.drum-roll-section {
  background: rgba(201,168,76,0.04);
}

.drum-roll-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.drum-roll-text h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--re-ivory);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.drum-roll-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.68;
  margin-bottom: 1rem;
}

.instrument-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.instrument-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--re-gold);
}

.drum-roll-callout {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  text-align: center;
}

.callout-small {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--re-gold);
  opacity: 0.7;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.callout-big {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--re-gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.callout-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.callout-note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.35;
}

@media (max-width: 900px) {
  .drum-roll-feature { grid-template-columns: 1fr; }
  .agent-photo { width: 140px; height: 140px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-split { flex-direction: column; }
  .side { min-height: 50vh; }
  .side-link { padding: 6rem 2.5rem 3rem; }
  .yinyang-divider { top: 50%; }
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .re-about-grid, .mu-about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .lessons-grid { grid-template-columns: 1fr; }
  .re-section, .mu-section, .re-cta-section, .mu-cta-section,
  .contact-re, .contact-music, .page-hero { padding: 3rem 2rem; }
  .site-footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  .contact-re { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
