/* ================================================
   JANICE JUNEK — Shared Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg: #FDF6F0;
  --surface: #FAF0E6;
  --surface-2: #F2E4D4;
  --surface-dark: #2C1A2E;
  --surface-dark-2: #3D2240;
  --accent: #C2847A;
  --accent-light: #F0CEC8;
  --accent-hover: #A8685E;
  --gold: #C9A96E;
  --gold-light: #EDD9A3;
  --text: #2C1A2E;
  --text-body: #4A3728;
  --text-muted: #8C7B6B;
  --text-light: #FDF6F0;
  --border: #E8D5C4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
  --container: 1100px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}

.gold-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-divider.center { margin: 1.5rem auto; background: var(--gold); }

/* ================================================
   NAVIGATION
   ================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 32px rgba(44, 26, 46, 0.07);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.footer-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(253,246,240,0.4);
  border: 1px solid transparent;
  background: transparent;
}
.lang-btn:hover { color: rgba(253,246,240,0.7); }
.lang-btn.active {
  background: rgba(253,246,240,0.1);
  border-color: rgba(253,246,240,0.2);
  color: rgba(253,246,240,0.9);
}

.btn-nav {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--text-light);
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-nav:hover { background: var(--accent); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface-dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent-light); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 1.5rem;
  color: rgba(253,246,240,0.5);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--text-light); }

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,132,122,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 999px;
  border: 2px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 999px;
  border: 1.5px solid rgba(253,246,240,0.4);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-ghost-light:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* ================================================
   IMAGE PLACEHOLDERS
   ================================================ */

.img-ph {
  background: linear-gradient(140deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 40%, rgba(201,169,110,0.08), transparent 65%);
}
.img-ph-icon { font-size: 2rem; opacity: 0.25; position: relative; z-index: 1; }
.img-ph-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.7rem;
  color: rgba(240,206,200,0.35);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.video-ph {
  aspect-ratio: 16/9;
  background: linear-gradient(140deg, var(--surface-dark), var(--surface-dark-2));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,169,110,0.07), transparent 70%);
}
.video-play {
  width: 72px; height: 72px;
  background: rgba(194,132,122,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 5px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.video-play:hover { background: var(--accent); transform: scale(1.1); }
.video-ph-label {
  position: absolute;
  bottom: 16px; left: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(240,206,200,0.4);
}

/* ── Episode Cards ── */
.ep-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.ep-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,26,46,0.12); }
.ep-card-thumb {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.ep-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.ep-card:hover .ep-card-thumb img { transform: scale(1.04); }
.ep-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(44,26,46,0.35);
  opacity: 0;
  transition: opacity 0.25s;
}
.ep-card:hover .ep-play { opacity: 1; }
.ep-card-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ep-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.ep-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--text);
}

/* ── Brand Grid ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.brand-tile {
  padding: 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand-tile:hover {
  opacity: 0.8;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-logo {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.brand-logo--sm { max-width: 72px; max-height: 72px; }
.brand-logo--sq { max-width: 100px; max-height: 100px; border-radius: 50%; }

/* Homepage brand strip */
.home-brands-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
}
.home-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}
.home-brand-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Brands carousel dots (hidden on desktop) */
.brands-dots { display: none; }
.brands-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--text-muted, #aaa);
  opacity: 0.4;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.brands-dot.active { opacity: 1; background: var(--accent, #c9a84c); }

@media (max-width: 768px) {
  .brands-carousel-wrap { overflow: hidden; }

  .brands-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }
  .brands-grid::-webkit-scrollbar { display: none; }

  .brand-tile {
    flex: 0 0 33.333%;
    scroll-snap-align: start;
    padding: 12px 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
  }
  .brand-logo { max-width: 80px; max-height: 48px; width: auto; height: auto; }
  .brand-logo--sq { max-width: 60px; max-height: 60px; width: auto; height: auto; }
  .brand-name { font-size: 0.7rem; text-align: center; }

  .brands-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
}

/* ================================================
   PAGE LAYOUT — Sections
   ================================================ */

.section { padding: 96px 0; }
.section-alt { background: var(--surface); }
.section-dark {
  background: var(--surface-dark);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--text-light); }
.section-dark p { color: rgba(253,246,240,0.72); }
.section-dark .section-label { color: var(--gold); }
.section-dark .gold-divider { background: var(--gold); }

.section-header { max-width: 580px; margin-bottom: 64px; }
.section-header.center { text-align: center; margin: 0 auto 64px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ================================================
   HOME PAGE — Hero
   ================================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 44% 56%;
  padding-top: var(--nav-height);
}

.hero-img-wrap {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}
.hero-img-wrap .img-ph {
  width: 100%;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 68px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-style: italic;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-bio {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-body);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 2.8rem;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Section Nav Cards ── */

.section-nav { padding: 80px 0; background: var(--surface); }
.section-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.section-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  transition: all 0.3s;
  display: block;
  position: relative;
  overflow: hidden;
}
.section-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--accent-light);
  opacity: 0;
  transition: opacity 0.3s;
}
.section-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,26,46,0.1); }
.section-card:hover .section-card-arrow { transform: translate(2px, -2px); }
.section-card:hover::after { opacity: 1; }
.section-card-icon { font-size: 0; line-height: 0; margin-bottom: 0.75rem; display: block; }
.section-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.section-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; }
.section-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}

/* ================================================
   PAGE HERO — Inner Pages
   ================================================ */

.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--surface-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 60%, rgba(201,169,110,0.09), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--text-light); font-style: italic; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(253,246,240,0.65); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* ================================================
   ABOUT PAGE
   ================================================ */

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-img .img-ph { width: 100%; height: 100%; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
}

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-top: 2rem;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}
.training-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.training-item .t-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.training-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.training-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ================================================
   ACTRESS PAGE
   ================================================ */

.productions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.production-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.production-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(44,26,46,0.1);
}
.production-card-img {
  aspect-ratio: 4/3;
}
.production-card-img .img-ph { width: 100%; height: 100%; }
.production-card-body { padding: 24px; }
.production-card .prod-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.35rem;
}
.production-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.production-card .prod-venue { font-size: 0.78rem; color: var(--text-muted); }

.production-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.production-featured:hover {
  box-shadow: 0 20px 56px rgba(44,26,46,0.1);
}
.production-featured .production-card-img {
  aspect-ratio: auto;
  min-height: 320px;
}
.production-featured .production-card-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.production-featured h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.production-featured .prod-desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── Actress Gallery ── */
.actress-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 2.5rem;
}
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,26,46,0);
  transition: background 0.25s;
}
.gallery-item:hover::after { background: rgba(44,26,46,0.15); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,10,22,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}
.lightbox-caption {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(253,246,240,0.5);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(253,246,240,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(253,246,240,0.1);
  border: 1px solid rgba(253,246,240,0.15);
  border-radius: 50%;
  color: rgba(253,246,240,0.8);
  font-size: 1.8rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(253,246,240,0.2); }

@media (max-width: 768px) {
  .actress-gallery { grid-template-columns: repeat(2, 1fr); }
}

.video-section { margin-top: 80px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

/* ================================================
   VOICE PAGE
   ================================================ */

.voice-reel-box {
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.voice-reel-box::before {
  content: '🎙️';
  position: absolute;
  top: -20px; right: 40px;
  font-size: 9rem;
  opacity: 0.04;
  line-height: 1;
}
.voice-reel-box h3 { color: var(--text-light); margin-bottom: 0.5rem; font-size: 1.8rem; }
.voice-reel-box .reel-sub { color: rgba(253,246,240,0.5); font-size: 0.9rem; margin-bottom: 2.5rem; }

.audio-player {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.audio-play {
  width: 50px; height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
  padding-left: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.audio-play:hover { background: var(--accent-hover); transform: scale(1.05); }
.audio-info { flex: 1; text-align: left; }
.audio-title { font-family: var(--font-display); color: var(--text-light); font-size: 0.95rem; display: block; }
.audio-coming { font-size: 0.72rem; color: rgba(253,246,240,0.35); display: block; margin-top: 2px; }
.audio-bar {
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  flex-shrink: 0;
}

.voice-range {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.voice-range-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.voice-range-card .vr-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.voice-range-card h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.voice-range-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

.voice-cta-strip {
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 80px;
}
.voice-cta-strip h3 { color: var(--text); margin-bottom: 0.4rem; }
.voice-cta-strip p { color: var(--text-body); font-size: 0.9rem; max-width: 420px; }

/* ================================================
   MUSIC PAGE
   ================================================ */

.of-callout {
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}
.of-callout::before {
  content: '★';
  position: absolute;
  top: -30px; right: 40px;
  font-size: 12rem;
  color: rgba(201,169,110,0.06);
  line-height: 1;
}
.of-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--surface-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.of-callout h2 { color: var(--text-light); margin-bottom: 1rem; font-size: 2.2rem; }
.of-callout .of-body { color: rgba(253,246,240,0.72); margin-bottom: 1.5rem; }
.of-callout blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0 1rem;
  line-height: 1.5;
}
.of-callout .of-attr { font-size: 0.78rem; color: rgba(253,246,240,0.35); letter-spacing: 0.05em; }

.coming-soon-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
}
.cs-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.coming-soon-box h3 { font-style: italic; margin-bottom: 0.5rem; }
.coming-soon-box p { color: var(--text-muted); max-width: 380px; margin: 0 auto 2rem; }

/* ================================================
   PRESS PAGE
   ================================================ */

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}
.press-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.press-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(44,26,46,0.09);
}
.press-card-img {
  aspect-ratio: 16/9;
  position: relative;
}
.press-card-img .img-ph { width: 100%; height: 100%; }
.press-card-channel {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(44,26,46,0.82);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.press-card-body { padding: 28px; }
.press-card-show {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}
.press-card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.press-card-body p { font-size: 0.88rem; color: var(--text-body); }

.press-quote-block {
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 36px;
  margin: 2.5rem 0;
}
.press-quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.press-quote-block .attr { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }

.of-press-strip {
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.of-star-block { text-align: center; }
.of-star { font-size: 2.8rem; color: var(--gold); display: block; }
.gold-pass {
  background: var(--gold);
  color: var(--surface-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 0.4rem;
  white-space: nowrap;
}
.of-press-strip h3 { color: var(--text-light); font-size: 1.4rem; margin-bottom: 0.4rem; }
.of-press-strip p { color: rgba(253,246,240,0.65); font-size: 0.9rem; margin: 0; }

/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(44,26,46,0.06);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,132,122,0.12);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,132,122,0.3);
}

.contact-aside { padding-top: 8px; }
.contact-aside h3 { margin-bottom: 0.4rem; }
.contact-aside .aside-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; }

.social-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 3rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text);
}
.social-link:hover { border-color: var(--accent); transform: translateX(4px); }
.social-link-icon { font-size: 1.1rem; }
.social-link-name { font-weight: 700; font-size: 0.88rem; }
.social-link-handle { font-size: 0.78rem; color: var(--text-muted); margin-left: auto; }

.collab-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}
.collab-list { display: flex; flex-direction: column; gap: 10px; }
.collab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.collab-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--surface-dark);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(253,246,240,0.4);
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,246,240,0.42);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(253,246,240,0.25); }
.footer-sig { font-family: var(--font-display); font-style: italic; color: rgba(201,169,110,0.5); font-size: 0.85rem; }

/* ================================================
   REAL IMAGES
   ================================================ */

.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.production-card-img img,
.production-featured .production-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.press-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ================================================
   EVA ICONS
   ================================================ */

/* Reset font-size on icon containers since EVA renders SVGs */
.vr-icon,
.cs-icon {
  font-size: 0;
  line-height: 0;
}
/* Spacing is preserved via margin-bottom already on these classes */

/* ================================================
   ANIMATIONS
   ================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
.fade-up.d5 { transition-delay: 0.40s; }

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
  .productions-grid { grid-template-columns: repeat(2, 1fr); }
  .production-featured { grid-column: span 2; }
  .voice-range { grid-template-columns: repeat(2, 1fr); }
  .voice-cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; display: block; padding-top: var(--nav-height); background: var(--bg); }
  .hero-img-wrap { position: relative; top: auto; height: auto; max-height: none; }
  .hero-img-wrap img { width: 100%; height: auto; display: block; }
  .hero-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to bottom, transparent 0%, var(--bg) 80%); pointer-events: none; }
  .hero-content { position: relative; margin-top: -160px; z-index: 1; padding: 0 24px 56px; background: transparent; }
  .hero-title { font-size: 2.8rem; }
  .hero-eyebrow { display: none; }

  .media-appearances-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .section-nav-grid { grid-template-columns: 1fr 1fr; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }

  .productions-grid { grid-template-columns: 1fr; }
  .production-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .production-featured .production-card-img { min-height: 220px; }

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

  .voice-range { grid-template-columns: 1fr; }
  .voice-reel-box { padding: 40px 28px; }
  .audio-player { flex-wrap: wrap; justify-content: center; text-align: center; }

  .press-grid { grid-template-columns: 1fr; }
  .of-press-strip { grid-template-columns: 1fr; text-align: center; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-box { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

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

  .of-callout { padding: 40px 28px; }
  .of-callout blockquote { font-size: 1.1rem; }

  .section { padding: 64px 0; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 0 52px; }
}

@media (max-width: 520px) {
  .section-nav-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .voice-cta-strip { padding: 36px 28px; }
}
