/* SEO Landing Pages - Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Kanit:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&family=Bebas+Neue&family=Instrument+Serif:ital@0;1&display=swap');

/* Color Variables */
:root {
  --color-black: #000000;
  --color-charcoal: #0c0c0e;
  --color-studio-dark: #121214;
  --color-warm-orange: #ff5c1f;
  --color-warm-orange-muted: #e04b10;
  --color-cinematic-gold: #d4af37;
  --color-soft-cream: #f5f5f7;
  --color-soft-cream-dim: #a1a1aa;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--color-black);
  background-image: url('/background.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-soft-cream);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-black);
}
::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

/* Film Grain Overlay */
@keyframes grainAnim {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

.film-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  animation: grainAnim 10s steps(10) infinite;
  will-change: transform;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  pointer-events: none;
}

/* Layout Containers */
.container {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

/* Typography Utilities */
.font-sans { font-family: 'Inter', sans-serif; }
.font-serif { font-family: 'Instrument Serif', Georgia, serif; }
.font-kanit { font-family: 'Kanit', sans-serif; }
.font-display { font-family: 'Bebas Neue', sans-serif; }

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem; /* 80px */
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-soft-cream);
}

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-warm-orange);
  margin-top: 0.125rem;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  color: rgba(245, 245, 247, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-warm-orange);
}

.btn-nav-cta {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-soft-cream);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-nav-cta:hover {
  border-color: var(--color-warm-orange);
  background-color: var(--color-warm-orange);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

/* Cinematic Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
  overflow: hidden;
}

.vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem; /* 896px */
  margin: 0 auto;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-warm-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-soft-cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-soft-cream-dim);
  font-weight: 300;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background-color: var(--color-warm-orange);
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 92, 31, 0.25);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background-color: var(--color-warm-orange-muted);
  box-shadow: 0 0 30px rgba(255, 92, 31, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--color-warm-orange);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Liquid Glass Cards */
.liquid-glass {
  background: rgba(12, 12, 14, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-glass:hover {
  border-color: rgba(255, 92, 31, 0.35);
  box-shadow: 0 0 25px 0 rgba(255, 92, 31, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sections */
.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title-wrapper {
  margin-bottom: 4rem;
  text-align: left;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-warm-orange);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}

/* Portfolio Showcase */
.portfolio-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--color-charcoal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  text-decoration: none;
  display: block;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.portfolio-card:hover .portfolio-img {
  transform: scale3d(1.05, 1.05, 1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.5s;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 0.95;
}

.portfolio-info {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
}

.portfolio-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-warm-orange);
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}

.portfolio-name {
  font-family: 'Kanit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.portfolio-year {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Service Page Copy Content (1500-2500 Words optimization) */
.copy-wrapper {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--color-soft-cream-dim);
}

.copy-wrapper h2 {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.copy-wrapper h2:first-of-type {
  margin-top: 0;
}

.copy-wrapper h3 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.copy-wrapper p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.copy-wrapper ul, .copy-wrapper ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.copy-wrapper li {
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.copy-wrapper strong {
  font-weight: 600;
  color: white;
}

.copy-wrapper blockquote {
  border-left: 3px solid var(--color-warm-orange);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: white;
  line-height: 1.4;
}

/* FAQ Accordion Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(12, 12, 14, 0.45);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s;
}

.faq-item:hover {
  border-color: rgba(255, 92, 31, 0.25);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: white;
  font-family: 'Kanit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  color: var(--color-warm-orange);
  transition: transform 0.3s;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content-inner {
  padding: 0 2rem 1.5rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-soft-cream-dim);
}

/* Opened State (via JS) */
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.active {
  border-color: rgba(255, 92, 31, 0.35);
  box-shadow: 0 0 25px 0 rgba(255, 92, 31, 0.1);
}

/* Movie Credits style Footer */
.footer {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 9rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Giant Faded Typography */
.footer-faded-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.footer-faded-text {
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.012);
  text-align: center;
  font-size: 12vw;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 5rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .footer-col {
    align-items: center;
  }
}

.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--color-soft-cream-dim);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-warm-orange);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .footer-contact-item {
    align-items: center;
  }
}

.footer-contact-label {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer-contact-val {
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-val:hover {
  color: var(--color-warm-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.562rem;
  font-family: monospace;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.animate-cinematic-bg {
  background: linear-gradient(-45deg, #050505, #0a0603, #0e0a05, #050505);
  background-size: 400% 400%;
  animation: cinematicGradients 20s ease infinite;
}

@keyframes cinematicGradients {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Split Hero & Collage Layouts for V3 */
.hero-split {
  text-align: left;
  display: flex;
  align-items: center;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  text-align: left;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-left-content {
  z-index: 10;
}

.hero-right-visual {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-studio-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/10;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.hero-studio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.8s ease;
}

.hero-studio-card:hover .hero-studio-img {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-warm-orange);
}

/* Collage Styles (for Page 4 Album Cover Hero) */
.collage-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-img {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95);
  transition: transform 0.5s ease, z-index 0.3s;
}

.collage-img-1 {
  transform: translate(-50px, -60px) rotate(-8deg);
  z-index: 10;
}
.collage-img-2 {
  transform: translate(60px, -30px) rotate(6deg);
  z-index: 9;
}
.collage-img-3 {
  transform: translate(-30px, 60px) rotate(4deg);
  z-index: 8;
}
.collage-img-4 {
  transform: translate(70px, 70px) rotate(-5deg);
  z-index: 11;
}

.collage-container:hover .collage-img-1 {
  transform: translate(-65px, -75px) rotate(-12deg) scale(1.05);
  z-index: 12;
}
.collage-container:hover .collage-img-2 {
  transform: translate(80px, -45px) rotate(9deg) scale(1.05);
  z-index: 12;
}
.collage-container:hover .collage-img-3 {
  transform: translate(-45px, 80px) rotate(6deg) scale(1.05);
  z-index: 12;
}
.collage-container:hover .collage-img-4 {
  transform: translate(90px, 90px) rotate(-8deg) scale(1.05);
  z-index: 12;
}

/* Competency and Layout Cards */
.competency-card {
  background: rgba(12, 12, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.competency-card:hover {
  border-color: rgba(255, 92, 31, 0.25);
  background: rgba(255, 92, 31, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 92, 31, 0.05);
}

.competency-card h3 {
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
  color: var(--color-warm-orange) !important;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.competency-card p {
  margin-bottom: 0 !important;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-soft-cream-dim);
}

/* Static Hero visual for Page 3 Video Hero */
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
  background-color: var(--color-charcoal);
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.05);
}

/* ==========================================================================
   Visual Authority Upgrade Additions
   ========================================================================== */

/* Dual-Source Ambient Warm Orange Backlight Gradients */
.hero-split {
  background: radial-gradient(circle at 85% 25%, rgba(255, 92, 31, 0.08) 0%, rgba(0, 0, 0, 0) 60%), 
              radial-gradient(circle at 15% 75%, rgba(255, 92, 31, 0.03) 0%, rgba(0, 0, 0, 0) 50%);
}

/* Custom Grid Columns for 40-45% Desktop Right-Side Dominance */
@media (min-width: 1024px) {
  .hero-grid-container-graphic {
    grid-template-columns: 1.15fr 0.85fr; /* 42.5% right column width */
  }
  .hero-grid-container-podcast {
    grid-template-columns: 1.1fr 0.9fr;    /* 45% right column width */
  }
  .hero-grid-container-video {
    grid-template-columns: 1.05fr 0.95fr;  /* 47.5% right column width */
  }
  .hero-grid-container-album {
    grid-template-columns: 1.05fr 0.95fr;  /* 47.5% right column width */
  }
}

/* 1. Large-Scale Poster Collage (Graphic Designer Hero) */
.collage-graphic-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-graphic-container .collage-img {
  position: absolute;
  width: 200px;
  height: 270px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 0, 0, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.collage-graphic-container .collage-img-1 {
  transform: translate3d(-70px, -65px, 0) rotate(-10deg);
  z-index: 10;
}

.collage-graphic-container .collage-img-2 {
  transform: translate3d(80px, -35px, 0) rotate(8deg);
  z-index: 9;
}

.collage-graphic-container .collage-img-3 {
  transform: translate3d(-45px, 65px, 0) rotate(6deg);
  z-index: 8;
}

.collage-graphic-container .collage-img-4 {
  transform: translate3d(85px, 85px, 0) rotate(-6deg);
  z-index: 11;
}

/* Elevate hovered image only */
.collage-graphic-container .collage-img:hover {
  z-index: 15 !important;
  transform: scale3d(1.08, 1.08, 1) !important;
}

.collage-graphic-container:hover .collage-img-1 {
  transform: translate3d(-80px, -75px, 0) rotate(-10deg);
}

.collage-graphic-container:hover .collage-img-2 {
  transform: translate3d(90px, -40px, 0) rotate(8deg);
}

.collage-graphic-container:hover .collage-img-3 {
  transform: translate3d(-45px, 75px, 0) rotate(6deg);
}

.collage-graphic-container:hover .collage-img-4 {
  transform: translate3d(95px, 95px, 0) rotate(-6deg);
}

/* 2. Enlarged & Dominant Podcast Studio Card */
.hero-studio-card-large {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 92, 31, 0.2);
  box-shadow: 0 25px 55px rgba(255, 92, 31, 0.1), 0 30px 60px rgba(0, 0, 0, 0.95);
  background-color: var(--color-charcoal);
}

.hero-studio-img-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-studio-card-large:hover .hero-studio-img-large {
  transform: scale3d(1.04, 1.04, 1);
}

/* 3. Cinematic Director's Monitor & Viewfinder HUD (Video Production Hero) */
.hero-video-monitor {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16/9;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 45px rgba(255, 92, 31, 0.15), 0 30px 70px rgba(0, 0, 0, 0.95);
  background-color: var(--color-black);
}

.hero-video-img-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.15);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-video-monitor:hover .hero-video-img-large {
  transform: scale3d(1.03, 1.03, 1);
}

.viewfinder-grid {
  position: absolute;
  inset: 0;
  padding: 1rem;
  pointer-events: none;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.viewfinder-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.viewfinder-corner.top-left {
  top: 1rem;
  left: 1rem;
  border-right: none;
  border-bottom: none;
}

.viewfinder-corner.top-right {
  top: 1rem;
  right: 1rem;
  border-left: none;
  border-bottom: none;
}

.viewfinder-corner.bottom-left {
  bottom: 1rem;
  left: 1rem;
  border-right: none;
  border-top: none;
}

.viewfinder-corner.bottom-right {
  bottom: 1rem;
  right: 1rem;
  border-left: none;
  border-top: none;
}

.viewfinder-rec {
  position: absolute;
  top: 1.25rem;
  left: 2.25rem;
  font-family: monospace;
  font-size: 0.65rem;
  color: #ff3b30;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.1em;
}

.viewfinder-rec::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #ff3b30;
  border-radius: 50%;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  from { opacity: 0.2; }
  to { opacity: 1; }
}

.viewfinder-timecode {
  position: absolute;
  top: 1.25rem;
  right: 2.25rem;
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}

/* 4. Large-Scale Overlapping Collage (Album Cover Designer) */
.collage-album-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-album-container .collage-img {
  position: absolute;
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.collage-album-container .collage-img-1 {
  transform: translate3d(-80px, -90px, 0) rotate(-14deg);
  z-index: 10;
}

.collage-album-container .collage-img-2 {
  transform: translate3d(90px, -45px, 0) rotate(10deg);
  z-index: 9;
}

.collage-album-container .collage-img-3 {
  transform: translate3d(-50px, 90px, 0) rotate(6deg);
  z-index: 8;
}

.collage-album-container .collage-img-4 {
  transform: translate3d(100px, 100px, 0) rotate(-8deg);
  z-index: 11;
}

/* Elevate hovered album art only */
.collage-album-container .collage-img:hover {
  z-index: 15 !important;
  transform: scale3d(1.08, 1.08, 1) !important;
}

.collage-album-container:hover .collage-img-1 {
  transform: translate3d(-100px, -110px, 0) rotate(-18deg);
}

.collage-album-container:hover .collage-img-2 {
  transform: translate3d(110px, -60px, 0) rotate(14deg);
}

.collage-album-container:hover .collage-img-3 {
  transform: translate3d(-65px, 110px, 0) rotate(8deg);
}

.collage-album-container:hover .collage-img-4 {
  transform: translate3d(120px, 120px, 0) rotate(-12deg);
}

/* 5. Mobile Responsive Scale Viewfinder HUD */
@media (max-width: 480px) {
  .viewfinder-grid {
    padding: 0.5rem;
  }
  .viewfinder-corner {
    width: 10px;
    height: 10px;
  }
  .viewfinder-corner.top-left { top: 0.5rem; left: 0.5rem; }
  .viewfinder-corner.top-right { top: 0.5rem; right: 0.5rem; }
  .viewfinder-corner.bottom-left { bottom: 0.5rem; left: 0.5rem; }
  .viewfinder-corner.bottom-right { bottom: 0.5rem; right: 0.5rem; }
  
  .viewfinder-rec {
    top: 0.75rem;
    left: 1.5rem;
    font-size: 0.5rem;
  }
  .viewfinder-rec::before {
    width: 5px;
    height: 5px;
  }
  .viewfinder-timecode {
    top: 0.75rem;
    right: 1.5rem;
    font-size: 0.5rem;
  }
  .hero-card-badge {
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
  }
}
