/* Big Lettuce Entertainment — Styles
   Fonts: Anton (display) + Inter (body) via Google Fonts CDN
   Palette: #0a0f0a bg · #c8f026 lime · #f0ede4 white · #7a8f7a muted · #1e2e1e border
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'BLE';
  src: url('../BLE FONT/Big Lettuce Entertainment.woff2') format('woff2'),
       url('../BLE FONT/Big Lettuce Entertainment.woff') format('woff'),
       url('../BLE FONT/Big Lettuce Entertainment.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── RESET & VARIABLES ─────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0f0a;
  --bg2:      #0e140e;
  --lime:     #c8f026;
  --white:    #f0ede4;
  --muted:    #7a8f7a;
  --border:   #1e2e1e;
  --font-display: 'Anton', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Genre colors */
  --comedy:       #c8f026;
  --drama:        #4a9eff;
  --horror:       #ff4d00;
  --documentary:  #f5c518;
  --animation:    #c84bff;
  --experimental: #ff4d9e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}

/* ─── NAV ────────────────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-nav.scrolled {
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-logo img {
  height: 72px;
  width: auto;
  margin-top: 10px;
}

.nav-logo-text {
  font-family: 'BLE', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links .nav-cta {
  background: var(--lime);
  color: #000;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.nav-links .nav-cta:hover { opacity: 0.85; color: #000; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

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

/* ─── HERO ───────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,10,0.55) 0%, rgba(10,15,10,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  height: 72px;
  width: auto;
  margin-bottom: 2.5rem;
}

.hero-logo-text {
  font-family: 'BLE', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--lime);
  margin-bottom: 2.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--lime);
  color: #000;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  border: 2px solid var(--border);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--white); }

/* ─── MARQUEE ─────────────────────────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 60s linear infinite;
  gap: 0;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--lime);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS BAR ───────────────────────────────────────────────────────────────── */

.stats-bar {
  background: var(--lime);
  color: #000;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

/* ─── SECTIONS ────────────────────────────────────────────────────────────────── */

.section {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ─── FILMS GRID ─────────────────────────────────────────────────────────────── */

.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.film-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s;
}

.film-card:hover { transform: translateY(-4px); }

.card-inner {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.film-card:hover .card-inner img { transform: scale(1.04); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 6px;
}

.film-card:hover .card-overlay { opacity: 1; }

.card-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lime);
  letter-spacing: 0.1em;
}

.placeholder-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid;
  text-align: center;
}

.placeholder-title {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.03em;
}

.card-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.genre-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--badge-color) 20%, transparent);
  color: var(--badge-color);
  border: 1px solid color-mix(in srgb, var(--badge-color) 40%, transparent);
}

.card-type-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--type-color, #444);
  color: #000;
  pointer-events: none;
}

.type-filtered .card-type-badge {
  display: none;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.card-filmmaker {
  font-size: 11px;
  color: var(--muted);
}

/* ─── GENRE SECTION HEADINGS (library page) ──────────────────────────────────── */

.genre-section {
  margin-bottom: 4rem;
}

.genre-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--heading-color, var(--lime));
  color: var(--white);
}

/* ─── GENRE GRID (homepage) ──────────────────────────────────────────────────── */

.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.genre-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: transform 0.25s;
}

.genre-card:hover { transform: scale(1.02); }

.genre-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.25s;
}

.genre-card:hover img { opacity: 0.65; }

.genre-card-content {
  position: relative;
  z-index: 1;
}

.genre-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  display: block;
}

.genre-card-count {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Fallback backgrounds for comedy/drama if images missing */
.genre-card[data-genre="Comedy"]  { background-color: #0d1500; }
.genre-card[data-genre="Drama"]   { background-color: #000d1f; }
.genre-card[data-genre="Horror"]  { background-color: #1a0800; }
.genre-card[data-genre="Documentary"] { background-color: #1a1400; }
.genre-card[data-genre="Animation"]   { background-color: #12001a; }
.genre-card[data-genre="Experimental"]{ background-color: #1a0012; }

/* ─── MISSION BLOCK ───────────────────────────────────────────────────────────── */

.mission-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.mission-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mission-block blockquote em {
  color: var(--lime);
  font-style: normal;
}

.mission-block p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ─── PRODUCTION TEASER ───────────────────────────────────────────────────────── */

.production-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  overflow: hidden;
}

.production-teaser h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.production-teaser p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.rate-highlight {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.rate-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── LIBRARY PAGE CONTROLS ──────────────────────────────────────────────────── */

.library-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 2rem;
  position: sticky;
  top: 64px;
  z-index: 50;
  margin-top: -200px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.library-header.scrolled {
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.library-controls {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all 0.2s;
}

.filter-btn:hover { border-color: var(--white); color: var(--white); }

.filter-btn.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

/* ─── GENRE DROPDOWN ─────────────────────────────────────────────────────────── */

.genre-dropdown-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.genre-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.genre-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.genre-dropdown-wrap.open .genre-chevron {
  transform: rotate(180deg);
}

.genre-dropdown-trigger.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

.genre-dropdown-menu {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

.genre-dropdown-wrap.open .genre-dropdown-menu {
  display: flex;
}

.genre-option {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.genre-option:hover { border-color: var(--white); color: var(--white); }

.genre-option.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

/* ─── SEARCH ─────────────────────────────────────────────────────────────────── */

.search-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  width: 100%;
  max-width: 400px;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--lime);
}

.search-input::placeholder { color: var(--muted); }

.film-count-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.no-results {
  color: var(--muted);
  font-size: 1.1rem;
  padding: 4rem 0;
  text-align: center;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────────── */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.pillar-card.pillar-featured {
  border-color: var(--lime);
  background: linear-gradient(135deg, #0e140e 0%, #141f0a 100%);
  position: relative;
}

.pillar-card.pillar-featured::before {
  content: 'Our Difference';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--lime);
  color: #0a0f0a;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}

.pillar-card.pillar-featured h3 {
  color: var(--lime);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  color: var(--lime);
  stroke: var(--lime);
  fill: none;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--lime);
}

.pillar-card p { color: var(--muted); font-size: 15px; }

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg2);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.founder-card h3 a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s;
}

.founder-card h3 a:hover {
  opacity: 0.75;
}

.founder-role {
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }

.rcu-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  margin-top: 2rem;
  text-align: center;
}

.rcu-block h2 { font-size: 2rem; margin-bottom: 1rem; }
.rcu-block p { color: var(--muted); max-width: 600px; margin: 0 auto 2rem; }

.rcu-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.rcu-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--lime);
  display: block;
  line-height: 1;
}

.rcu-stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── WORK WITH US PAGE ───────────────────────────────────────────────────────── */

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.rate-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.rate-card:hover { border-color: var(--lime); }

.rate-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.rate-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--lime);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.rate-card p { color: var(--muted); font-size: 14px; }

.rate-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.25rem;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.include-item::before { display: none; }

.include-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  color: var(--white);
}

.include-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-cta {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.work-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.work-cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 15px;
}

.include-item::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.distribution-banner {
  background: var(--lime);
  color: #000;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.distribution-banner h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.distribution-banner p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.btn-dark {
  background: #000;
  color: var(--lime);
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.85; }

/* ─── SHOP PAGE ───────────────────────────────────────────────────────────────── */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.shop-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.shop-card:hover { border-color: var(--lime); transform: translateY(-3px); }

.shop-card-img {
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-card-img img { transform: scale(1.04); }

.shop-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.shop-card-body h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.shop-card-price { color: var(--lime); font-size: 14px; font-weight: 600; margin-bottom: 1rem; }
.shop-card-body .btn-primary { display: inline-block; font-size: 13px; padding: 10px 22px; }

/* ─── CONTACT PAGE ────────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 240, 38, 0.12);
}

.form-group select option { background: #1a2a1a; }
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 15px;
}

.contact-info-item a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link {
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--muted);
  transition: fill 0.2s;
}

.social-link:hover { border-color: var(--lime); background: rgba(200,240,38,0.06); }
.social-link:hover svg { fill: var(--lime); }

.submission-box {
  background: var(--bg2);
  border: 1px solid var(--lime);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.submission-box h4 { color: var(--lime); font-size: 1rem; margin-bottom: 0.75rem; }
.submission-box p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────────── */

.page-hero {
  padding: 5rem 2rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
}

/* ─── FILMS VIDEO HERO ────────────────────────────────────────────────────────── */

.films-hero {
  position: relative;
  width: 100%;
  height: 76vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.films-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.films-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,15,10,0.6) 55%, rgba(10,15,10,0.88) 100%);
  z-index: 1;
}

.films-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 14rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.films-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 0.75rem;
}

.films-hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 560px;
}

/* ─── ABOUT HERO ─────────────────────────────────────────────────────────────── */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding-top: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-hero-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  min-height: 0;
}

.photo-row img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  height: 100%;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,10,0.62);
}

.about-hero-columns {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 2rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.about-hero-content {
  flex: 1;
  max-width: 520px;
}

.about-hero-right {
  text-align: right;
}

.about-hero-right p.section-label {
  justify-content: flex-end;
}

.about-hero-content h1,
.about-hero-content h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.about-hero-content p:not(.section-label) {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-hero { min-height: auto; }
  .about-hero-columns { flex-direction: column; gap: 2rem; padding: 3rem 1.5rem; }
  .about-hero-right { text-align: left; }
  .photo-row { gap: 2px; }
  .about-hero-photos { gap: 2px; }
}


/* ─── FOOTER ──────────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1.5rem 2rem;
}

.footer-logo {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding-right: 2rem;
}

.footer-logo img { height: 120px; width: auto; }

.footer-links {
  grid-column: 2;
  grid-row: 1;
}

.footer-social {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  align-self: center;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.footer-social a:hover { border-color: var(--lime); }

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--muted);
  transition: fill 0.2s;
}

.footer-social a:hover svg { fill: var(--lime); }

.footer-copy {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

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

/* ─── SCROLL REVEAL ───────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.revealed {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .production-teaser { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1.1rem; color: var(--white); }
  .nav-links .nav-cta { margin-top: 1rem; text-align: center; display: block; }

  .nav-toggle { display: flex; }

  .genre-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-bar { gap: 2rem; }

  .founder-card { grid-template-columns: 1fr; }
  .founder-avatar { width: 80px; height: 80px; }

  .library-header { top: 64px; }
}

@media (max-width: 480px) {
  .genre-grid { grid-template-columns: 1fr; }
  .films-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero h1 { font-size: 2.8rem; }
  .section { padding: 3rem 1rem; }
  .page-hero { padding: 3rem 1rem 2rem; }
  .stat-number { font-size: 2rem; }
  .stats-bar { gap: 1.5rem; padding: 2rem 1rem; }
}
