/* ============================================
   OTTO NEMENZ INTERNATIONAL — style.css
   Base: archive (light/cream)
   Accents: gold + slate blue
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:      #F7F4EF;
  --white:      #111111;
  --gold:       #8C6B2F;
  --gold-dim:   #A07840;
  --gold-light: #C9A84C;
  --blue:       #2C4A6E;
  --blue-light: #3D6494;
  --blue-muted: rgba(44,74,110,0.12);
  --red:        #8B1A1A;
  --grey:       #EFECE6;
  --grey-mid:   #D8D4CC;
  --grey-light: #666666;
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================
   INTRO OVERLAY
   ============================================ */

#intro-overlay {
  position: fixed; inset: 0;
  background: var(--grey);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px; opacity: 1;
  animation: overlayFadeOut 0.4s ease 1.2s forwards;
  pointer-events: none;
}
#intro-overlay .intro-logo {
  width: 120px; opacity: 0;
  animation: logoFadeIn 0.6s ease 0.2s forwards;
}
#intro-overlay .intro-cities {
  display: flex; gap: 32px; opacity: 0;
  animation: citiesFadeIn 0.3s ease 0.6s forwards;
}
#intro-overlay .intro-cities span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300; font-size: 13px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--white);
}
#intro-overlay .intro-cities span:not(:last-child)::after {
  content: '·'; margin-left: 32px; color: var(--gold-dim);
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes citiesFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes overlayFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

/* ============================================
   NAV
   ============================================ */

#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; z-index: 1000;
}
#nav .nav-logo img {
  height: 76px; width: auto;
  filter: invert(0);
  transition: filter 0.3s ease, opacity 0.4s ease;
}
body.homepage #nav .nav-logo img { opacity: 0; }
body.homepage.nav-logo-visible #nav .nav-logo img { opacity: 1; }
#nav.scrolled .nav-logo img { filter: invert(1); }

#nav .nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
#nav .nav-links > li { position: relative; }
#nav .nav-links > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #FFFFFF; padding: 8px 14px; display: block;
  transition: color 0.3s ease, text-shadow 0.4s ease, transform 0.2s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.9);
}


#nav .nav-links > li > a:hover,
#nav .nav-links > li.active > a {
  color: #FFFFFF;
  text-shadow: 0 1px 10px rgba(0,0,0,0.95), 0 1px 3px rgba(0,0,0,1);
}

#nav.scrolled {
  background: rgba(247,244,239,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
}
#nav.scrolled .nav-links > li > a { color: #111111; text-shadow: none; }
#nav.scrolled .nav-links > li > a:hover { color: var(--gold); }

#nav .nav-links .dropdown {
  position: absolute; top: calc(100% + 0px); left: 0;
  background: rgba(247,244,239,0.99);
  border: 1px solid var(--grey-mid); border-top: 2px solid var(--gold);
  min-width: 200px; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
#nav .nav-links > li:hover .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
#nav .nav-links .dropdown a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #444444; padding: 10px 20px;
  transition: color 0.2s, background 0.2s;
}
#nav .nav-links .dropdown a:hover {
  color: var(--gold); background: rgba(140,107,47,0.06);
}
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #F7F4EF !important; background: var(--gold);
  padding: 9px 20px !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #F7F4EF !important; }

/* ============================================
   HERO — VIDEO
   ============================================ */

#hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
#hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 80%, rgba(10,10,10,0.95) 100%);
}
#hero-content {
  position: relative; z-index: 2; padding: 0 60px; max-width: 900px;
}
#hero-content .hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.7s ease 2.8s forwards;
}
#hero-est-logo {
  width: 320px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
#hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95; letter-spacing: 0.02em; color: #FFFFFF;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 1.8s forwards;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.9);
}
#hero-content h1 a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
#hero-content h1 a:hover { opacity: 0.75; }
#hero-content h1 em { color: var(--gold-light); font-style: normal; }
#hero-content .hero-sub {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 17px;
  color: rgba(255,255,255,0.82); max-width: 520px; line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s ease 3.2s forwards;
}
#hero-content .hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s ease 2.2s forwards;
}
.hero-actions {
  position: absolute; bottom: 48px; right: 60px;
  display: flex; gap: 16px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: #F7F4EF;
  padding: 13px 28px; display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); color: #F7F4EF; }

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); color: #FFFFFF;
  padding: 12px 28px; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #FFFFFF; }

/* ============================================
   SECTION TYPOGRAPHY
   ============================================ */

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.03em; line-height: 1; color: var(--white);
}

/* ============================================
   PRODUCTIONS PREVIEW (homepage)
   ============================================ */

#productions-preview {
  background: var(--black);
  border-top: 1px solid var(--grey-mid);
}
.preview-header {
  padding: 64px 60px 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
}

/* ============================================
   INSTAGRAM CAROUSEL
   ============================================ */

#ig-carousel {
  background: var(--black);
  padding: 64px 0 48px;
  border-top: 1px solid var(--grey-mid);
  overflow: hidden;
}
.ig-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 0 60px 36px; }
.ig-header-left { display: flex; flex-direction: column; gap: 6px; }
.ig-handle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.04em; color: var(--white);
  text-decoration: none; transition: color 0.2s;
  line-height: 1; display: flex; align-items: center;
}
.ig-handle:hover { color: var(--gold); }
.ig-strip-outer { overflow: visible; cursor: grab; user-select: none; width: 100%; padding: 0 6vw; box-sizing: border-box; }
.ig-strip-outer:active { cursor: grabbing; }
.ig-strip { display: flex; gap: 20px; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.ig-card {
  flex: 0 0 calc((88vw - 88px) / 5);
  min-width: calc((88vw - 88px) / 5);
  background: #ffffff; border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid #dbdbdb;
}
.ig-card-header { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid #efefef; }
.ig-card-avatar {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  background-color: #000000; border: 2px solid transparent;
  background-image: linear-gradient(#000, #000), linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-origin: border-box; background-clip: padding-box, border-box;
}
.ig-card-username { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; font-weight: 600; color: #262626; line-height: 1; }
.ig-card-location { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 11px; color: #8e8e8e; margin-top: 2px; }
.ig-card-more { margin-left: auto; font-size: 18px; color: #262626; line-height: 1; padding: 0 4px; }
.ig-card-img-wrap { position: relative; cursor: zoom-in; }
.ig-card-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.ig-card-actions { display: flex; align-items: center; gap: 14px; padding: 10px 14px 6px; }
.ig-heart-btn { background: none; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; color: #262626; transition: transform 0.1s; }
.ig-heart-btn:active { transform: scale(0.85); }
.ig-heart-btn svg { width: 24px; height: 24px; transition: fill 0.15s, stroke 0.15s; }
.ig-heart-btn.liked svg { fill: #ed4956; stroke: #ed4956; }
.ig-heart-btn.pop { animation: heartPop 0.35s cubic-bezier(0.17, 0.89, 0.32, 1.49); }
@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.ig-card-body { padding: 6px 14px 12px; display: flex; flex-direction: column; gap: 6px; }
.ig-card-stats { display: flex; gap: 14px; }
.ig-stat-item { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; font-weight: 600; color: #262626; }
.ig-stat-item span { font-weight: 400; color: #8e8e8e; }
.ig-caption {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px; color: #262626; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ig-caption strong { font-weight: 600; }
.ig-date { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 10px; color: #8e8e8e; text-transform: uppercase; letter-spacing: 0.04em; }
.ig-dots { display: flex; justify-content: center; gap: 8px; padding-top: 28px; }
.ig-dot { width: 5px; height: 5px; background: var(--grey-mid); border: none; cursor: pointer; padding: 0; border-radius: 50%; transition: background 0.2s, transform 0.2s; }
.ig-dot.active { background: var(--gold); transform: scaleX(2.4); border-radius: 3px; }

.ig-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.18); border: none; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.ig-arrow:hover { background: rgba(255,255,255,0.32); }
.ig-arrow svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ig-arrow-left  { left: 1vw; }
.ig-arrow-right { right: 1vw; }
.ig-carousel-wrap { position: relative; }

.ig-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.22s ease; pointer-events: none;
}
.ig-modal-backdrop.open { opacity: 1; pointer-events: all; }
.ig-modal { position: relative; width: min(92vw, 680px); aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; transform: scale(0.93); transition: transform 0.22s ease; }
.ig-modal-backdrop.open .ig-modal { transform: scale(1); }
.ig-modal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-modal-top {
  position: absolute; top: 0; left: 0; right: 0; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}
.ig-modal-user { display: flex; align-items: center; gap: 10px; }
.ig-modal-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.7); }
.ig-modal-username { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 14px; font-weight: 600; color: #ffffff; }
.ig-modal-close {
  background: rgba(0,0,0,0.4); border: none; color: #ffffff;
  width: 32px; height: 32px; border-radius: 50%; font-size: 20px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.ig-modal-close:hover { background: rgba(0,0,0,0.7); }
.ig-modal-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 20px 20px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%); }
.ig-modal-heart { background: none; border: none; padding: 0; cursor: pointer; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.ig-modal-heart svg { width: 28px; height: 28px; stroke: #ffffff; fill: none; transition: fill 0.15s, stroke 0.15s; }
.ig-modal-heart.liked svg { fill: #ed4956; stroke: #ed4956; }
.ig-modal-heart.pop { animation: heartPop 0.35s cubic-bezier(0.17, 0.89, 0.32, 1.49); }
.ig-modal-likes { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; font-weight: 600; color: #ffffff; }
.ig-modal-caption {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.92); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ig-modal-caption strong { font-weight: 600; }

@media (max-width: 900px) {
  .ig-header { padding: 0 24px 28px; }
  .ig-strip-outer { width: 100%; padding: 0 20px; }
  .ig-card { flex: 0 0 80vw; min-width: 80vw; }
}

/* ============================================
   LOCATION PAGES — SHARED
   (atlanta.html + losangeles.html)
   ============================================ */

.loc-hero {
  min-height: 60vh;
  display: flex; align-items: flex-end;
  padding: 140px 60px 60px;
}
.loc-hero-content { position: relative; z-index: 2; }
.loc-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.92; color: var(--white); margin-bottom: 12px;
}
.loc-hero h1 em { color: var(--gold); font-style: normal; display: block; }
.loc-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.loc-sub { font-size: 15px; color: rgba(253,251,247,0.6); max-width: 480px; line-height: 1.7; }

.loc-body { display: flex; justify-content: center; }
.loc-info {
  padding: 64px 60px;
  background: var(--grey);
  max-width: 640px;
  width: 100%;
}
.loc-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 28px;
}
.info-block { margin-bottom: 32px; }
.info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px; font-weight: 400;
}
.info-value { font-size: 16px; color: rgba(30,25,15,0.88); line-height: 1.8; font-weight: 400; }
.info-value a { color: var(--gold); transition: color 0.2s; }
.info-value a:hover { color: #dbb84a; }

/* Staff grid — shared */
.staff-section { padding: 80px 60px; background: var(--black); }
.staff-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 40px;
}
.staff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--grey-mid); }
.staff-card { background: var(--grey); overflow: hidden; }
.staff-photo { aspect-ratio: 1/1; background: #111; overflow: hidden; }
.staff-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(20%); transition: filter 0.3s;
}
.staff-card:hover .staff-photo img { filter: grayscale(0%); }
.staff-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.staff-ph-icon { font-size: 32px; color: #252525; }
.staff-ph-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #252525;
}
.staff-info { padding: 18px 20px; }
.staff-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.04em; color: var(--white); line-height: 1; margin-bottom: 4px; }
.staff-title { font-family: Arial, Helvetica, sans-serif; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.staff-bio { font-size: 12px; line-height: 1.6; }
.staff-bio a { color: var(--blue); }
.staff-bio a:hover { color: var(--blue-light); }

/* Credits marquee header — shared */
.atl-credits-marquee { background: var(--black); padding: 0; }
.atl-credits-header { padding: calc(var(--nav-h) + 48px) 60px 20px; }
.atl-credits-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: 0.03em;
  line-height: 1; color: var(--white); margin-bottom: 0;
}

/* ============================================
   LENS / CAMERA PAGES — SHARED LAYOUT
   (lenses.html + cameras.html)
   ============================================ */

.lens-page {
  display: flex; min-height: 100vh;
  padding-top: var(--nav-h); background: var(--black);
}

/* Sidebar */
.lens-sidebar {
  width: 260px; flex-shrink: 0;
  border-right: 1px solid var(--grey-mid);
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto; padding-bottom: 48px;
}
.lens-sidebar::-webkit-scrollbar { width: 3px; }
.lens-sidebar::-webkit-scrollbar-thumb { background: #222; }

.sb-header { padding: 22px 20px 14px; border-bottom: 1px solid var(--grey-mid); }
.sb-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.14em; color: var(--white); }

.sb-search { padding: 11px 14px; border-bottom: 1px solid var(--grey-mid); position: relative; }
.sb-search input {
  width: 100%; background: #F7F4EF; border: 1px solid #D8D4CC;
  color: #111111; font-family: 'Barlow', sans-serif;
  font-size: 12px; padding: 8px 10px 8px 28px; outline: none;
  transition: border-color 0.2s;
}
.sb-search input:focus { border-color: var(--gold); }
.sb-search input::placeholder { color: #3a3a3a; }
.sb-search .si { position: absolute; left: 25px; top: 50%; transform: translateY(-50%); color: #3a3a3a; font-size: 12px; pointer-events: none; }

.sb-tree { padding: 4px 0; }
.tn { user-select: none; }
.tl {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase;
  color: #777; transition: color 0.14s, background 0.14s; position: relative;
}
.tl:hover { color: var(--white); background: rgba(255,255,255,0.02); }
.tl.active { color: var(--gold); }
.tl.active::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--gold); }
.tl.oni-lbl { color: var(--gold); font-size: 11px; }
.tl.oni-lbl:hover { color: #dab84a; }
.ta { font-size: 8px; color: #3a3a3a; transition: transform 0.22s ease; margin-left: auto; flex-shrink: 0; }
.tn.open > .tl .ta { transform: rotate(90deg); }
.tc { display: none; }
.tn.open > .tc { display: block; }
.d1 > .tl { padding-left: 28px; font-size: 11px; }
.d2 > .tl { padding-left: 40px; font-size: 11px; color: #555; }
.d3 > .tl { padding-left: 52px; font-size: 11px; color: #444; }
.d1 > .tl:hover, .d2 > .tl:hover, .d3 > .tl:hover { color: var(--white); }
.sb-sep { height: 1px; background: var(--grey-mid); margin: 5px 18px; }
.sb-sec { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase; color: #333; padding: 10px 18px 2px; }

/* Main panel area */
.lens-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lens-bc {
  padding: 13px 36px; background: var(--grey);
  border-bottom: 1px solid var(--grey-mid);
  display: flex; align-items: center; flex-wrap: wrap; min-height: 48px;
}
.bc { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #3a3a3a; cursor: pointer; transition: color 0.14s; white-space: nowrap; }
.bc:hover { color: var(--gold); }
.bc.bcc { color: var(--white); cursor: default; }
.bcs { font-size: 9px; color: #222; margin: 0 9px; }

.lens-panel-wrap { flex: 1; position: relative; overflow: hidden; }
.lens-panel {
  position: absolute; inset: 0; overflow-y: auto;
  padding: 32px 40px 80px; background: var(--black);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1), opacity 0.34s ease;
}
.lens-panel.pr { transform: translateX(52px); opacity: 0; pointer-events: none; }
.lens-panel.pl { transform: translateX(-52px); opacity: 0; pointer-events: none; }
.lens-panel.pa { transform: translateX(0); opacity: 1; pointer-events: all; }

.p-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px,3.2vw,48px); letter-spacing: 0.04em; color: var(--white); line-height: 1; margin-bottom: 3px; }
.p-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }

/* Shared accordion primitives */
.sets-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-mid); }
.set-card { background: var(--grey); }
.set-body { display: none; }
.set-card.open .set-body { display: block; }
.set-toggle-icon { font-size: 11px; color: #444; transition: transform 0.24s ease; flex-shrink: 0; margin-left: 20px; }
.set-card.open .set-toggle-icon { transform: rotate(180deg); }
.set-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.04em; color: var(--white); line-height: 1; }
.set-desc { font-size: 13px; color: rgba(30,25,15,0.6); line-height: 1.72; margin-bottom: 22px; max-width: 620px; }

.focal-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.focal-table thead tr { border-bottom: 1px solid var(--gold); }
.focal-table th { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #555; padding: 8px 12px; text-align: left; font-weight: 600; }
.focal-table tbody tr { border-bottom: 1px solid #D0CCC4; transition: background 0.12s; }
.focal-table tbody tr:hover { background: #E2DDD6; }
.focal-table td { font-size: 13px; color: #222222; padding: 10px 12px; vertical-align: middle; }
.focal-table td:first-child { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; color: #111111; letter-spacing: 0.05em; }

.mount-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; background: #D8D4CC; color: #444444; padding: 2px 6px; display: inline-block; }

.set-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 22px; display: inline-block;
  transition: border-color 0.2s, color 0.2s; margin-top: 4px;
}
.set-cta:hover { border-color: var(--gold); color: #dbb84a; }

.empty-state { padding: 60px 0; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: #2a2a2a; }
.empty-state a { color: var(--gold); }

/* ============================================
   MARQUEE — PRODUCTIONS
   ============================================ */

.productions-marquee-wrap {
  position: relative; overflow: hidden; cursor: grab; user-select: none;
}
.productions-marquee-wrap:active { cursor: grabbing; }
.productions-marquee-track { display: flex; gap: 0; will-change: transform; }
.productions-marquee-track.is-animating {
  animation: marqueeScroll var(--marquee-duration, 40s) linear infinite;
}
.productions-marquee-track.paused { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}
.prod-thumb { flex: 0 0 160px; aspect-ratio: 2/3; position: relative; overflow: hidden; cursor: pointer; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; filter: grayscale(20%); display: block; }
.prod-thumb:hover img { transform: scale(1.06); filter: grayscale(0%); }
.prod-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 14px; gap: 6px;
}
.prod-thumb:hover .prod-thumb-overlay { opacity: 1; }
.prod-thumb-overlay span { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #FFFFFF; line-height: 1.3; }
.imdb-btn { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.2em; background: #F5C518; color: #000000; padding: 2px 6px; display: inline-block; font-weight: 600; text-decoration: none; }
.imdb-btn:hover { background: #e6b800; color: #000000; }
.marquee-loading { padding: 60px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-light); }

/* ============================================
   BLUE ACCENT BAND
   ============================================ */

.blue-band {
  background: var(--blue); padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.blue-band p { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.blue-band .btn-outline { border-color: rgba(255,255,255,0.5); color: #FFFFFF; white-space: nowrap; }
.blue-band .btn-outline:hover { border-color: #FFFFFF; color: #FFFFFF; }

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

footer { background: var(--grey); border-top: 1px solid var(--grey-mid); padding: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand img { height: 88px; filter: invert(1); }
.footer-brand p { font-size: 13px; color: rgba(30,25,15,0.55); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li a { font-size: 13px; color: rgba(30,25,15,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--grey-mid); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(30,25,15,0.45); }
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 13px; color: rgba(30,25,15,0.45); letter-spacing: 0.1em; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; transition: color 0.2s; }
.social-links a:hover { color: var(--gold); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header { padding: 160px 60px 80px; background: var(--grey); border-bottom: 1px solid var(--grey-mid); }
.page-header .section-eyebrow { margin-bottom: 12px; }
.page-header .section-title { margin-bottom: 0; }

/* ============================================
   BLUE ACCENT ELEMENTS
   ============================================ */

.badge-blue { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #FFFFFF; background: var(--blue); padding: 3px 10px; }
.info-block-blue .info-label { color: var(--blue); }
.award-card-blue .award-year { color: var(--blue); }
.section-rule { height: 2px; background: var(--gold); width: 48px; margin: 0 0 32px; }
.section-rule-blue { height: 2px; background: var(--blue); width: 48px; margin: 0 0 32px; }

/* ============================================
   LENSES PAGE — THEME OVERRIDES
   ============================================ */

.lens-sidebar { background: #EFECE6; border-right: 1px solid #D8D4CC; }
.sb-header { border-bottom: 1px solid #D8D4CC; }
.sb-header h2 { color: #111111; }
.sb-search input { background: #F7F4EF; border-color: #D8D4CC; color: #111111; }
.sb-search input::placeholder { color: #999; }
.tl { color: #444; }
.tl:hover { color: #111111; background: rgba(0,0,0,0.03); }
.tl.active { color: #8C6B2F; }
.tl.active::before { background: #8C6B2F; }
.tl.oni-lbl { color: #8C6B2F; }
.sb-sep { background: #D8D4CC; }
.sb-sec { color: #999; }
.lens-bc { background: #EFECE6; border-bottom: 1px solid #D8D4CC; }
.bc { color: #555; }
.bc.bcc { color: #111111; }
.bcs { color: #CCC; }
.lens-panel { background: #F7F4EF; }
.p-title { color: #111111; }
.sets-list { background: #D8D4CC; }
.set-card { background: #EFECE6; }
.set-header:hover { background: #2C4A6E; }
.set-card.open .set-header { background: #2C4A6E; border-bottom: 1px solid #D8D4CC; }
.set-photo { background: #E0DCD4; border-right: 1px solid #D8D4CC; }
.set-name { color: #111111; }
.set-header:hover .set-name { color: #FFFFFF !important; }
.set-card.open .set-name { color: #FFFFFF !important; }
.set-meta-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #666; }
.set-meta-value { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; letter-spacing: 0.05em; color: #111111; font-weight: 600; }
.set-price-day { color: #8C6B2F; }
.set-price-week { color: #A07840; }
.set-body-photo { background: #E5E1DA; border-right: 1px solid #D8D4CC; }
.set-body-content { background: #EFECE6; }
.set-desc { color: rgba(30,25,15,0.65); }
.focal-table th { color: #8C6B2F; font-size: 11px; letter-spacing: 0.18em; }
.focal-table tbody tr { border-bottom: 1px solid #D8D4CC; }
.focal-table tbody tr:hover { background: #E5E1DA; }
.focal-table td { color: #111111; font-size: 14px; }
.focal-table td:first-child { color: #111111; font-size: 15px; }
.mount-badge { background: #D8D4CC; color: #555; }
.empty-state { color: #CCC; }
.d2 > .tl { color: #555; }

/* ============================================
   UTILITY
   ============================================ */

.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }
.text-red   { color: var(--red); }
.text-muted { color: var(--grey-light); }

/* ============================================
   LOADING TEXT ANIMATION
   ============================================ */

.aperture-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.aperture-loader-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  animation: loadingPulse 1.4s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

#nav.scrolled .nav-hamburger span { background: #111111; }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  bottom: 0;
  background: rgba(247,244,239,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
  z-index: 999;
  padding: 16px 0 24px;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  padding: 14px 28px;
  display: block;
  border-bottom: 1px solid var(--grey-mid);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--gold); background: var(--grey); }

.nav-mobile-section {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 28px 6px;
}

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

@media (max-width: 900px) {
  section { padding: 60px 24px; }
  #nav { padding: 0 20px; }
  #nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  #ottoblad-feature { grid-template-columns: 1fr; }
  #hero-content { padding: 0 24px; }
  .blue-band { flex-direction: column; text-align: center; }
  .prod-thumb { flex: 0 0 120px; }

  /* Location pages — Atlanta + LA */
  .atl-credits-header { padding: 80px 24px 20px; }
  .atl-credits-header h2 { font-size: 36px; }

  .staff-section { padding: 48px 0; }
  .staff-section h2 { font-size: 28px; padding: 0 24px; margin-bottom: 24px; }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  .staff-name { font-size: 16px; }
  .staff-title { font-size: 11px; }
  .staff-bio { font-size: 11px; word-break: break-all; }
  .staff-info { padding: 12px 14px; }

  .loc-info {
    padding: 40px 24px;
    max-width: none;
  }
  .loc-info h2 { font-size: 28px; }

  /* Productions */
  .prod-filters {
    padding: 10px 16px;
    flex-direction: column;
    gap: 6px;
  }
  .prod-filters > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .pf-btn {
    font-size: 10px;
    padding: 6px 12px;
  }
  .prod-hero { padding: 100px 24px 40px; }
  .prod-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  /* Forms */
  .na-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 40px;
    gap: 20px;
  }
  .na-body {
    grid-template-columns: 1fr;
  }
  .na-info { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--grey-mid); }
  .na-form-wrap { padding: 40px 24px; }
  .na-form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact-hero { padding: 100px 24px 40px; }
  .contact-body { grid-template-columns: 1fr; }
  .contact-offices { padding: 40px 24px; }
  .contact-form-wrap { padding: 40px 24px; }
  .cform-row { grid-template-columns: 1fr; }

  /* ── MOBILE TAB NAV (lenses + cameras) ── */
  .lens-page {
    flex-direction: column;
    padding-top: var(--nav-h);
  }
  .lens-sidebar { display: none; }
  .lens-main { width: 100%; }
  .lens-bc { display: none; }

  .mobile-tab-nav {
    position: sticky;
    top: var(--nav-h);
    z-index: 200;
    background: var(--grey);
    border-bottom: 1px solid var(--grey-mid);
  }

  .mobile-tab-row {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    border-bottom: 1px solid var(--grey-mid);
  }
  .mobile-tab-row[data-level="1"] {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .mobile-tab-row:last-child { border-bottom: none; }
  .mobile-tab-row::-webkit-scrollbar { display: none; }

  .mobile-tab-row.hidden { display: none; }

  .mtab {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: #555; padding: 12px 18px;
    white-space: nowrap; cursor: pointer;
    border: none; background: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }
  .mtab:hover { color: #111; }
  .mtab.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 600; }

  .lens-panel-wrap { overflow: visible; }
  .lens-panel {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    padding: 20px 20px 60px;
  }
  .lens-panel.pr,
  .lens-panel.pl { display: none; }
  .lens-panel.pa { display: block; }

  .p-title { font-size: 28px; }
  .p-sub { margin-bottom: 16px; }

  .set-header { padding: 16px 18px; }
  .set-name { font-size: 20px; }
  .set-body-content { padding: 18px 18px; }
  .set-specs { gap: 16px; }

  .focal-table th { font-size: 9px; padding: 6px 8px; }
  .focal-table td { font-size: 12px; padding: 8px 8px; }

  .mfr-sort-bar { display: none; }
}
