/* ===========================
   FRED POULTON — PORTFOLIO
   styles.css
   =========================== */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;

  --purple-deep: #2d1b69;
  --purple-mid: #5b21b6;
  --purple-bright: #7c3aed;
  --purple-light: #a855f7;
  --purple-glow: rgba(124, 58, 237, 0.25);
  --purple-border: rgba(124, 58, 237, 0.4);

  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #6b7280;
  --text-label: #a855f7;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-purple: rgba(124, 58, 237, 0.3);

  --font-heading: 'Cinzel', serif;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.8s ease;

  --shadow-purple: 0 0 40px rgba(124, 58, 237, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 48px;
}

.section-title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--purple-light);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--purple-bright);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--purple-bright);
  transition: all var(--transition-fast);
}
.btn-primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* ===========================
   NAVIGATION
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-med);
}

#navbar.scrolled {
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  mix-blend-mode: lighten;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0));
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--purple-border) !important;
  color: var(--purple-light) !important;
}
.nav-cta:hover {
  background: var(--purple-bright) !important;
  color: white !important;
  border-color: var(--purple-bright) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
}
.mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.mobile-link:hover { color: var(--purple-light); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(45, 27, 105, 0.3) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

/* Fallback gradient when no video */
.hero-video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(91, 33, 182, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-primary) 0%, #0d0519 50%, var(--bg-primary) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.95;
  color: var(--text-primary);
  text-shadow: 0 0 80px rgba(124, 58, 237, 0.3);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-role {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--purple-bright), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-bio {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--purple-light);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-frame {
  width: 300px;
  height: 300px;
  border: 1px solid var(--purple-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.08), rgba(10, 10, 10, 0.6));
  box-shadow:
    0 0 60px rgba(124, 58, 237, 0.12),
    inset 0 0 60px rgba(91, 33, 182, 0.05);
  transition: box-shadow var(--transition-med);
}
.logo-frame:hover {
  box-shadow:
    0 0 80px rgba(124, 58, 237, 0.25),
    inset 0 0 60px rgba(91, 33, 182, 0.1);
}
.logo-frame::before, .logo-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--purple-bright);
  border-style: solid;
}
.logo-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.logo-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.logo-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  mix-blend-mode: lighten;
  transition: filter var(--transition-med), transform var(--transition-med);
  filter: drop-shadow(0 0 0px rgba(168, 85, 247, 0));
}
.logo-frame:hover .logo-image {
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.55));
  transform: scale(1.03);
}

/* ===========================
   WORK
   =========================== */
.work {
  background: var(--bg-primary);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.film-card {
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.film-card:not(.film-card--coming-soon):hover {
  transform: translateY(-4px);
}

.film-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.film-card:hover .film-card-inner {
  border-color: var(--purple-border);
  box-shadow: var(--shadow-purple);
}

.film-poster {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d0d0d;
}
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.film-card:hover .film-poster img {
  transform: scale(1.04);
}

.poster-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a30, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
}
.poster-placeholder span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
}

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.film-card:not(.film-card--coming-soon):hover .film-card-overlay {
  opacity: 1;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.6);
}
.play-btn svg {
  width: 28px;
  height: 28px;
  color: white;
  margin-left: 3px;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
  opacity: 1 !important;
  background: rgba(10, 10, 10, 0.7) !important;
  flex-direction: column;
  gap: 16px;
}
.coming-soon-badge {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  padding: 8px 20px;
  border: 1px solid var(--purple-border);
  background: rgba(45, 27, 105, 0.4);
  backdrop-filter: blur(4px);
  animation: pulseBorder 2.5s ease infinite;
}

.coming-soon-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
}

.film-info {
  padding: 28px 32px 32px;
}

.film-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.film-year, .film-genre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.film-year {
  color: var(--purple-light);
}
.film-genre::before {
  content: '·';
  margin-right: 12px;
  color: var(--border-subtle);
}

.film-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.film-roles {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.film-synopsis {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.film-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.coming-soon-tag {
  border-color: var(--purple-border);
  color: var(--purple-light);
}

.btn-notify {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--purple-border);
  color: var(--purple-light);
  background: transparent;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}
.btn-notify:hover {
  background: var(--purple-bright);
  border-color: var(--purple-bright);
  color: white;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--bg-secondary);
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 64px;
  margin-top: -24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.service-card {
  padding: 40px 32px;
  background: var(--bg-secondary);
  transition: background var(--transition-fast);
}
.service-card:hover {
  background: var(--bg-card-hover);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 56px;
}

.contact-form {
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-bright);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  cursor: pointer;
  color: var(--text-secondary);
}
.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.btn-submit {
  padding: 16px 48px;
  background: var(--purple-bright);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.85;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0));
}
.footer-brand:hover .footer-logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
  margin: 8px 0;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--purple-light); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ===========================
   MODAL
   =========================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  transform: translateY(20px);
  transition: transform var(--transition-med);
}
.modal.open .modal-content {
  transform: translateY(0);
}

.modal-content--narrow {
  max-width: 480px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.modal-close:hover { color: var(--text-primary); }
.modal-close svg { width: 20px; height: 20px; }

.modal-video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.modal-iframe {
  width: 100%;
  height: 100%;
}
.modal-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a30, #0a0a0a);
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.modal-details {
  padding: 36px;
}
.modal-film-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.modal-roles {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.modal-synopsis {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.modal-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.credit-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credit-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.credit-name {
  font-size: 14px;
  color: var(--text-primary);
}

/* Notify Modal */
.notify-content {
  padding: 56px 48px;
  text-align: center;
}
.notify-icon {
  font-size: 48px;
  margin-bottom: 24px;
}
.notify-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.notify-sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.notify-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.notify-form {
  display: flex;
  gap: 0;
  max-width: 360px;
  margin: 0 auto 16px;
}
.notify-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}
.notify-form input:focus {
  border-color: var(--purple-bright);
}
.notify-form button {
  padding: 12px 20px;
  background: var(--purple-bright);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.notify-form button:hover { background: var(--purple-light); }
.notify-fine {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes pulseBorder {
  0%, 100% { border-color: var(--purple-border); box-shadow: none; }
  50% { border-color: var(--purple-light); box-shadow: 0 0 16px rgba(168, 85, 247, 0.3); }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual { order: -1; }
  .logo-frame { width: 200px; height: 200px; }
  .logo-initials { font-size: 52px; }

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

  .form-row { grid-template-columns: 1fr; }

  .hero-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 28px; }
  .film-info { padding: 20px; }
  .modal-details { padding: 24px; }
  .notify-content { padding: 40px 24px; }
  .notify-form { flex-direction: column; }
  .notify-form input { border-right: 1px solid var(--border-subtle); border-bottom: none; }
}
