/* ============================================================
   4360 INTERNATIONAL COMEDY FESTIVAL — THEME STYLESHEET
   ============================================================ */

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C76A;
  --black:      #080808;
  --off-white:  #F4EFE6;
  --charcoal:   #141414;
  --text-muted: rgba(244,239,230,0.55);
  --text-dim:   rgba(244,239,230,0.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* BODY */
body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* HEADER - solid black, no gradient, no blur */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  background: #000000;
  border: none;
  box-shadow: none;
  margin: 0;
}
.site-header.scrolled {
  background: #000000;
  border: none;
  box-shadow: none;
}

/* Logo - 110px, seamless with black background */
.site-header .logo-nav {
  display: flex;
  align-items: center;
  line-height: 0;
  padding: 0;
  margin: 0;
  background: #000000;
}
.site-header .logo-nav img {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-header.scrolled .logo-nav img { height: 110px; }

/* Nav links - Fira Sans Condensed 18px 400, no uppercase */
.main-nav ul {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.main-nav ul li a {
  color: var(--off-white);
  text-decoration: none;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.main-nav ul li a:hover { opacity: 1; color: var(--gold); }
.main-nav ul li a:hover::after { width: 100%; }

/* Get Tickets button - pulsing gold, border-radius 4px */
.nav-cta {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.87rem 2rem;
  text-decoration: none;
  font-weight: 300;
  border: none;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: throb 2s ease-in-out infinite;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
  animation-play-state: paused;
}
.nav-cta::after { display: none !important; }

@keyframes throb {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); transform: scale(1); }
  40%  { box-shadow: 0 0 0 14px rgba(201,168,76,0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); transform: scale(1); }
}
@keyframes throb-outline {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.35); transform: scale(1); }
  45%  { box-shadow: 0 0 0 8px rgba(201,168,76,0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); transform: scale(1); }
}

/* HERO */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.35) contrast(1.25) brightness(0.9);
  transform: scale(1.04);
  transition: transform 12s ease;
}
.hero-video.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.05) 35%, rgba(8,8,8,0.65) 75%, rgba(8,8,8,1) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 0 2rem;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
/* Tagline - Playfair italic */
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: rgba(244,239,230,0.78);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  letter-spacing: 0.02em;
}
/* Dates - Fira Sans Condensed 40px 600 semibold */
.hero-dates {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--off-white);
  opacity: 0;
  animation: fadeUp 0.9s 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-dates span { color: var(--gold); }
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
  color: var(--text-muted);
}
.hero-location::before, .hero-location::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.hero-scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 2.2s forwards;
}
.hero-scroll span {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: extend 2s 2.2s infinite cubic-bezier(0.4,0,0.6,1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn  { to { opacity: 0.6; } }
@keyframes extend {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* PARTNERS STRIP */
.partners-strip {
  background: #0c0c0c;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2.4rem 3.5rem;
  text-align: center;
}
.partners-label {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.partners-label::before, .partners-label::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: rgba(201,168,76,0.25);
}
.partners-logos img {
  max-height: 52px;
  width: 100%;
  max-width: 960px;
  object-fit: contain;
  filter: grayscale(0.15) brightness(0.95);
  transition: filter 0.3s;
}
.partners-logos img:hover { filter: grayscale(0) brightness(1.05); }

/* MARQUEE */
.marquee-section { overflow: hidden; background: var(--gold); padding: 0.85rem 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-item {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); padding: 0 2.2rem; white-space: nowrap;
}
.marquee-dot { color: rgba(0,0,0,0.25); letter-spacing: 0; }

/* SECTIONS */
.festival-section { padding: 8rem 0; }
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin: 0 3.5rem;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 3.5rem; }
.section-label {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  font-weight: 300;
}
.section-label::after {
  content: '';
  display: block;
  width: 50px; height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

/* ABOUT */
.about-section { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.about-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.about-headline em { color: var(--gold); font-style: italic; font-weight: 500; }
.about-text p {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 18px; line-height: 1.8;
  color: var(--text-muted); font-weight: 400;
  margin-bottom: 1.1rem; letter-spacing: -0.01em;
}
.about-stats { display: flex; gap: 2.8rem; margin-top: 2.8rem; padding-top: 2.8rem; border-top: 1px solid rgba(201,168,76,0.18); }
.stat-num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 3rem; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.4rem; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 540px; object-fit: cover; filter: saturate(0.8) contrast(1.05); display: block; }
.about-image::before { content: ''; position: absolute; inset: -14px; border: 1px solid rgba(201,168,76,0.2); z-index: -1; transform: rotate(1.2deg); }
.about-image::after { content: ''; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px; background: var(--gold); opacity: 0.08; }

/* LINEUP */
.lineup-section { background: var(--charcoal); position: relative; overflow: hidden; }
.lineup-section::before {
  content: '4360';
  position: absolute; top: -3rem; right: -3rem;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20rem;
  color: rgba(201,168,76,0.025); pointer-events: none; line-height: 1; letter-spacing: -0.05em;
}
.lineup-header { text-align: center; margin-bottom: 5.5rem; }
.lineup-title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(2.6rem, 5.5vw, 5rem); letter-spacing: -0.01em; line-height: 1.12; }
.lineup-subtitle { font-family: 'Fira Sans Condensed', sans-serif; font-weight: 400; font-style: italic; font-size: 18px; color: var(--text-muted); margin-top: 1rem; letter-spacing: -0.01em; }
.lineup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 5rem; }
.country-block { margin-bottom: 3.5rem; }
.country-flag-name { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
.country-flag-name .flag { font-size: 1.6rem; line-height: 1; }
.country-name { font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.comedians-list { display: flex; flex-direction: column; gap: 0.45rem; }
.comedian-tag {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 18px; font-weight: 400;
  color: rgba(244,239,230,0.8);
  position: relative; padding-left: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.25s, padding-left 0.25s;
  cursor: default;
}
.comedian-tag::before { content: '-'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; top: 50%; transform: translateY(-50%); transition: opacity 0.25s; }
.comedian-tag:hover { color: var(--off-white); padding-left: 1.4rem; }
.comedian-tag:hover::before { opacity: 1; }

/* IMAGE STRIP */
.image-strip { display: flex; overflow: hidden; height: 210px; }
.image-strip img { flex: 1; object-fit: cover; filter: saturate(0.55) brightness(0.75); transition: flex 0.55s cubic-bezier(0.16,1,0.3,1), filter 0.45s; }
.image-strip img:hover { flex: 3.5; filter: saturate(0.9) brightness(1); }

/* GALLERY */
.gallery-section { background: var(--black); }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.01em; }
.gallery-masonry { columns: 3; column-gap: 10px; padding: 0 3.5rem; }
.gallery-item { break-inside: avoid; margin-bottom: 10px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.45s; filter: saturate(0.65) brightness(0.85); }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(0.95) brightness(1.05); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.55), transparent 45%); opacity: 0; transition: opacity 0.35s; }
.gallery-item:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 2000; align-items: center; justify-content: center; cursor: pointer; }
.lightbox.active { display: flex; animation: lbIn 0.25s ease; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; cursor: default; box-shadow: 0 0 100px rgba(0,0,0,0.9); }
.lightbox-close { position: fixed; top: 1.8rem; right: 2.2rem; font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gold); cursor: pointer; text-transform: uppercase; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: rgba(201,168,76,0.4); cursor: pointer; padding: 1.2rem; transition: color 0.2s; z-index: 2001; user-select: none; }
.lb-arrow:hover { color: var(--gold); }
.lb-prev { left: 0.8rem; }
.lb-next { right: 0.8rem; }

/* MEDIA */
.media-section { background: var(--charcoal); }
.media-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-wrapper video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-info { padding-top: 0.5rem; }
.media-info h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; line-height: 1.18; margin-bottom: 1.4rem; }
.media-info p { font-family: 'Fira Sans Condensed', sans-serif; font-size: 18px; line-height: 1.8; color: var(--text-muted); font-weight: 400; margin-bottom: 1rem; letter-spacing: -0.01em; }
.social-links { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.social-link {
  font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.57rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 0.72rem 1.5rem; text-decoration: none;
  border-radius: 4px; font-weight: 300;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: throb 2.4s ease-in-out infinite;
}
.social-link:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,0.45); animation-play-state: paused; }
.social-link.outline { background: transparent; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); animation: throb-outline 2.4s ease-in-out 0.8s infinite; }
.social-link.outline:hover { background: rgba(201,168,76,0.07); border-color: var(--gold); animation-play-state: paused; }

/* CTA */
.cta-wrap { padding: 5rem 0; }
.cta-band { background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%); border: 1px solid rgba(201,168,76,0.16); margin: 0 3.5rem; padding: 5rem 6rem; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.8rem, 3.5vw, 3.2rem); letter-spacing: -0.01em; margin-bottom: 0.9rem; }
.cta-band p { font-family: 'Fira Sans Condensed', sans-serif; font-style: italic; color: var(--text-muted); font-size: 18px; margin-bottom: 2.5rem; letter-spacing: -0.01em; }
.btn-gold {
  display: inline-block; font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 1.05rem 2.8rem; text-decoration: none; font-weight: 300; border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
  animation: throb 2.4s ease-in-out 0.4s infinite;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 36px rgba(201,168,76,0.45); animation-play-state: paused; }

/* FOOTER */
.site-footer { background: #030303; padding: 5rem 0 2.5rem; border-top: 1px solid rgba(201,168,76,0.09); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 5rem; margin-bottom: 3.5rem; }
.footer-logo img { height: 42px; margin-bottom: 1.4rem; filter: brightness(0.88) contrast(1.05); }
.footer-tagline { font-family: 'Fira Sans Condensed', sans-serif; font-style: italic; font-size: 0.95rem; color: var(--text-dim); line-height: 1.75; }
.footer-col h4 { font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; font-weight: 300; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.95rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.54rem; letter-spacing: 0.12em; color: var(--text-dim); text-transform: uppercase; }
.footer-hashtags { font-family: 'Fira Sans Condensed', sans-serif; font-size: 0.52rem; letter-spacing: 0.1em; color: rgba(201,168,76,0.35); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* WP GLOBALS */
a { color: var(--gold); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 500; }
p { font-family: 'Fira Sans Condensed', sans-serif; line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header { padding: 0 1.5rem; }
  .main-nav { display: none; }
  .container { padding: 0 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { order: -1; }
  .about-image img { height: 300px; }
  .lineup-grid { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .gallery-masonry { columns: 2; padding: 0 1.5rem; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .image-strip { height: 130px; }
  .cta-band { margin: 0 1.5rem; padding: 3rem 2rem; }
  .partners-strip { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .lineup-grid { grid-template-columns: 1fr; }
  .hero-dates { font-size: 28px; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── PRODUCED BY SITE ET SONS ────────────────────────────── */
.produced-by-section {
  background: #0c0c0a;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 7rem 0;
}
.produced-by-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}
.produced-label {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.produced-label::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.produced-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 1.6rem;
}
.produced-title em {
  font-style: italic;
  color: var(--gold);
}
.produced-text {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.produced-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, letter-spacing 0.2s;
  text-decoration: none;
}
.produced-link:hover {
  border-color: var(--gold);
  letter-spacing: 0.22em;
}
.produced-logo-wrap {
  background: #0a0a08;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.1);
}
.produced-logo-wrap img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
}
.produced-credits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-top: 1.4rem;
}
.credit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.credit-label {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.credit-value {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--off-white);
  text-align: right;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .produced-by-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .produced-by-section { padding: 5rem 0; }
}
