/* ============================================================
   LENSCAREFX — New Site Styles
   Design: Dark Cinematic | Accent: Warm Gold
   Fonts: Bebas Neue (display) + Inter (body)
   ============================================================ */

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

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #111111;
  --bg-2:         #111113;
  --bg-card:      #181819;
  --bg-card-hover:#1e1e20;
  --text:         #f0ede8;
  --text-muted:   #7a7875;
  --text-dim:     #444;
  --accent:       #c8a96e;
  --accent-rgb:   200, 169, 110;
  --accent-dim:   rgba(200, 169, 110, 0.12);
  --accent-border:rgba(200, 169, 110, 0.35);
  --border:       rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);
  --nav-h:        80px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.display-1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}
.display-2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
}
.display-3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.body-lg { font-size: 1.1rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

.section { padding: 100px 0; }
.section--lg { padding: 140px 0; }
.section--sm { padding: 60px 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  background: #dfc085;
  transform: translateY(-1px);
}
.btn--outline {
  border: 1px solid var(--accent-border);
  color: var(--accent);
  background: transparent;
}
.btn--outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}
.btn svg { width: 16px; height: 16px; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(12, 12, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  color: var(--text);
  line-height: 1;
  transition: opacity var(--transition);
}
.nav__logo:hover .nav__wordmark { opacity: 0.65; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--text); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__link--cta {
  padding: 10px 22px;
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--accent-dim); color: var(--accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 40px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 24px; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__video-wrap iframe,
.hero__video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 14, 0.35) 0%,
    rgba(12, 12, 14, 0.4) 50%,
    rgba(12, 12, 14, 0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero__subtitle {
  margin-top: 20px;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.65);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero__cta {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-header__label { margin-bottom: 16px; }
.page-header__title { color: var(--text); }

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about {
  background: var(--bg);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__heading { margin-bottom: 32px; }
.about__heading .label { margin-bottom: 16px; }
.about__text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--text); font-weight: 500; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 8px;
}
.stat {
  background: var(--bg-card);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.stat:hover { border-color: var(--accent-border); }
.stat__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── FEATURED VIDEO (SHOWREEL HERO) ───────────────────────── */
.featured-reel {
  background: var(--bg-2);
  position: relative;
}
.featured-reel__label { margin-bottom: 16px; }
.featured-reel__title {
  margin-bottom: 48px;
}
.featured-reel__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.featured-reel__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── REELS GRID ───────────────────────────────────────────── */
.reels {
  background: var(--bg);
}
.reels__header {
  margin-bottom: 60px;
}
.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.reel-card {
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.reel-card:hover { background: var(--bg-card-hover); }
.reel-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.reel-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.reel-card__info {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.reel-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
}
.reel-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

/* ── SELECTED WORK (homepage preview) ────────────────────── */
.selected-work {
  background: var(--bg-2);
}
.selected-work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.work-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  background: var(--bg-card);
}
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85);
}
.work-card:hover .work-card__img {
  transform: scale(1.06);
  filter: brightness(0.65);
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.work-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.work-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}
/* Always show title for accessibility */
.work-card__bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(to top, rgba(12,12,14,0.85) 0%, transparent 100%);
}
.work-card__bottom-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

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

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio-section {
  background: var(--bg);
  padding: 60px 0 120px;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-card {
  display: flex;
  background: var(--bg-card);
  overflow: hidden;
}

.portfolio-card__img-wrap {
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.45s ease, transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.portfolio-card:hover .portfolio-card__img {
  filter: brightness(1) saturate(1);
  transform: scale(1.04);
}

.portfolio-card__info {
  flex: 1;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.portfolio-card__year {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}

.portfolio-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.portfolio-card__network {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.portfolio-card__desc {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .portfolio-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-cards { grid-template-columns: 1fr; }
  .portfolio-card { flex-direction: column; }
  .portfolio-card__img-wrap { width: 100%; }
  .portfolio-card__img { aspect-ratio: 16/9; height: auto; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30rem;
  color: rgba(200, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials__header { margin-bottom: 60px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--accent-border); }
.testimonial-card__quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 300;
}
.testimonial-card__quote::before { content: '"'; color: var(--accent); font-style: normal; font-weight: 700; }
.testimonial-card__quote::after  { content: '"'; color: var(--accent); font-style: normal; font-weight: 700; }
.testimonial-card__attr {}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}

/* ── CLIENT LOGOS ─────────────────────────────────────────── */
.clients {
  background: var(--bg-2);
  padding: 80px 0 100px;
}
.clients__header {
  text-align: center;
  margin-bottom: 56px;
}
.clients__header .label { margin-bottom: 12px; }
.clients__header h2 { margin-bottom: 0; }

/* Broadcaster logos — 4-col grid (12 logos = 3 × 4) */
.clients__logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
/* Production company logos — 5-col grid (15 logos = 3 × 5) */
.clients__logo-grid--prod {
  grid-template-columns: repeat(5, 1fr);
}
.client-logo-cell {
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  transition: background var(--transition);
  min-height: 90px;
}
.client-logo-cell:hover { background: var(--bg-card-hover); }
.client-logo-cell img {
  max-height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(3);
  opacity: 0.5;
  transition: opacity var(--transition), filter var(--transition);
}
.client-logo-cell:hover img {
  opacity: 0.9;
  filter: grayscale(1) brightness(3);
}

@media (max-width: 1024px) {
  .clients__logo-grid { grid-template-columns: repeat(4, 1fr); }
  .clients__logo-grid--prod { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 640px) {
  .clients__logo-grid,
  .clients__logo-grid--prod { grid-template-columns: repeat(3, 1fr); }
  .client-logo-cell { padding: 18px 14px; min-height: 66px; }
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-section {
  background: var(--bg);
  padding: 100px 0 140px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info { }
.contact-info__heading { margin-bottom: 32px; }
.contact-info__label { margin-bottom: 16px; }
.contact-info__tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}
.contact-detail {
  margin-bottom: 32px;
}
.contact-detail__type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-detail__value {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}
.contact-detail__value:hover { color: var(--accent); }
.contact-detail__address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.contact-visual {
  position: relative;
}
.contact-visual__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}
.contact-visual__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 28px;
}
.contact-visual__badge-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.contact-visual__badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-visual__badge { bottom: 16px; right: 16px; }
}

/* ── SHOWREEL PAGE ────────────────────────────────────────── */
.showreel-section {
  background: var(--bg);
  padding: 80px 0 120px;
}
.showreel-featured {
  margin-bottom: 4px;
}
.showreel-featured__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.showreel-featured__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.showreel-featured__info {
  background: var(--bg-card);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.showreel-featured__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.showreel-featured__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
}
.showreel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.showreel-item__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.showreel-item__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.showreel-item__info {
  background: var(--bg-card);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.showreel-item__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.showreel-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .showreel-grid { grid-template-columns: 1fr; }
  .showreel-featured__info { padding: 24px; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  margin-bottom: 16px;
}
.footer__wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.7;
  line-height: 1;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.footer__nav {
  text-align: center;
}
.footer__nav-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.footer__nav-link:hover { color: var(--text); }
.footer__contact {
  text-align: right;
}
.footer__contact-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__contact-email {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer__contact-email:hover { color: var(--accent); }
.footer__contact-address {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__nav, .footer__contact { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}
