  :root {
    --blue: #2233CC;
    --indigo: #3B2D8E;
    --gray-dark: #4A4A5A;
    --gray-mid: #6B6B7B;
    --gray-light: #F4F5FA;
    --white: #FFFFFF;
    --accent: #FF6B2B;
    --text: #1A1A2E;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34,51,204,0.08);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }

  .nav-logo img { height: 48px; width: auto; }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--blue); }

  .nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--indigo) !important; transform: translateY(-1px); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0E2E 0%, #1A1060 50%, #0D1A6E 100%);
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative; overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(34,51,204,0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
  }

  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,45,142,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
  }

  .hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(34,51,204,0.25);
    border: 1px solid rgba(34,51,204,0.5);
    color: #8899FF;
    font-size: 0.8rem; font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.8rem;
  }

  .hero-eyebrow span { width: 6px; height: 6px; background: #5577FF; border-radius: 50%; display: inline-block; }

  .hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #5577FF, #8899FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem; line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }

  .hero-mission {
    display: flex; gap: 1.5rem; margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .mission-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.04em;
  }

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

  .btn-primary {
    background: var(--blue);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: #1122BB; transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

  .hero-image {
    flex: 1;
    z-index: 2;
    display: flex; justify-content: center; align-items: center;
    padding-left: 4%;
  }

  .hero-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,51,204,0.3);
  }

  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }

  .hero-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34,51,204,0.4);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .hero-img-badge strong { display: block; font-size: 1.1rem; margin-bottom: 0.2rem; color: #8899FF; }

  /* ===== PARTNERS ===== */
  .partners {
    background: var(--gray-light);
    padding: 50px 5%;
    text-align: center;
  }

  .partners-label {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gray-mid);
    margin-bottom: 2rem;
  }

  .partners-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 3.5rem; flex-wrap: wrap;
  }

  .partner-logo {
    display: flex; align-items: center; gap: 0.6rem;
    filter: grayscale(0.3);
    transition: filter 0.2s, transform 0.2s;
    text-decoration: none;
  }
  .partner-logo:hover { filter: grayscale(0); transform: scale(1.05); }

  /* Real partner logo SVGs */
  .partner-svg { height: 36px; width: auto; }

  /* ===== SECTION SHARED ===== */
  section { padding: 100px 5%; }

  .section-eyebrow {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--gray-mid);
    font-size: 1.05rem; line-height: 1.7;
    max-width: 580px;
    margin-bottom: 3rem;
  }

  /* ===== ABOUT ===== */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-img {
    width: 100%; border-radius: 12px;
    box-shadow: 0 20px 60px rgba(34,51,204,0.15);
  }

  .about-stat-card {
    position: absolute;
    background: var(--blue);
    color: white;
    border-radius: 10px;
    padding: 1rem 1.4rem;
    box-shadow: 0 10px 30px rgba(34,51,204,0.35);
  }

  .about-stat-card.top-right {
    top: -20px; right: -20px;
  }

  .about-stat-card.bottom-left {
    bottom: -20px; left: -20px;
    background: var(--indigo);
  }

  .about-stat-card .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem; font-weight: 800;
  }

  .about-stat-card .stat-label {
    font-size: 0.78rem; opacity: 0.8;
  }

  .about-pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-top: 2.5rem;
  }

  .pillar-card {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    border-left: 3px solid var(--blue);
  }

  .pillar-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text);
  }

  .pillar-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.5; }

  /* ===== SERVICES ===== */
  .services-bg {
    background: linear-gradient(160deg, #0A0E2E 0%, #1A1060 100%);
  }

  .services-bg .section-title { color: white; }
  .services-bg .section-sub { color: rgba(255,255,255,0.65); }
  .services-bg .section-eyebrow { color: #8899FF; }

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

  .service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: background 0.25s, transform 0.2s, border-color 0.25s;
    cursor: default;
  }

  .service-card:hover {
    background: rgba(34,51,204,0.25);
    border-color: rgba(34,51,204,0.5);
    transform: translateY(-4px);
  }

  .service-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
  }

  .service-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* ===== FEATURED PROJECTS ===== */
  .projects-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
  }

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

  .project-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-light);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(34,51,204,0.1);
  }

  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(34,51,204,0.15);
  }

  .project-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }

  .project-thumb-inner {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 1.5rem;
    gap: 0.8rem;
  }

  .play-btn {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }

  .project-card:hover .play-btn {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1);
  }

  .project-thumb-title {
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    text-align: center;
  }

  .project-thumb-tag {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem; padding: 0.25rem 0.7rem;
    border-radius: 100px; font-weight: 600;
    letter-spacing: 0.04em;
  }

  .project-info { padding: 1.2rem 1.4rem; }

  .project-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text);
  }

  .project-info p {
    font-size: 0.82rem; color: var(--gray-mid);
    line-height: 1.5;
  }

  .project-meta {
    display: flex; align-items: center; gap: 0.8rem;
    margin-top: 0.8rem; padding-top: 0.8rem;
    border-top: 1px solid rgba(34,51,204,0.08);
    flex-wrap: wrap;
  }

  .project-badge {
    background: rgba(34,51,204,0.08);
    color: var(--blue);
    font-size: 0.72rem; font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
  }

  /* Unique gradient per card */
  .p-card-1 .project-thumb { background: linear-gradient(135deg, #1A1060 0%, #2233CC 100%); }
  .p-card-2 .project-thumb { background: linear-gradient(135deg, #0D1A6E 0%, #5B3AB7 100%); }
  .p-card-3 .project-thumb { background: linear-gradient(135deg, #0A0E2E 0%, #3B2D8E 100%); }
  .p-card-4 .project-thumb { background: linear-gradient(135deg, #1A4060 0%, #2277CC 100%); }
  .p-card-5 .project-thumb { background: linear-gradient(135deg, #2D0E6E 0%, #CC2233 70%); }
  .p-card-6 .project-thumb { background: linear-gradient(135deg, #1A6040 0%, #22CC77 100%); }

  /* ===== IMPACT ===== */
  .impact {
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 80px 5%;
  }

  .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .impact-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem; font-weight: 800;
    margin-bottom: 0.4rem;
  }

  .impact-item p {
    font-size: 0.9rem; opacity: 0.8;
    line-height: 1.5;
  }

  /* ===== APPROACH ===== */
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
    align-items: start;
  }

  .approach-steps { display: flex; flex-direction: column; gap: 1.5rem; }

  .approach-step {
    display: flex; gap: 1.4rem;
    padding: 1.4rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: background 0.2s;
  }

  .approach-step:hover { background: rgba(34,51,204,0.06); }

  .step-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: rgba(34,51,204,0.15);
    line-height: 1;
    min-width: 2.5rem;
  }

  .step-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .step-content p {
    font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6;
  }

  .approach-languages {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
  }

  .approach-languages h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  .lang-tags {
    display: flex; flex-wrap: wrap; gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .lang-tag {
    background: white;
    border: 1px solid rgba(34,51,204,0.15);
    color: var(--blue);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem; font-weight: 600;
  }

  .lang-tag.highlight {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
  }

  .access-features {
    display: flex; flex-direction: column; gap: 0.8rem;
  }

  .access-feat {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.85rem; color: var(--gray-dark);
  }

  .feat-icon {
    width: 32px; height: 32px;
    background: rgba(34,51,204,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
  }

  /* ===== CONTACT / FOOTER ===== */
  footer {
    background: #0A0E2E;
    color: white;
  }

  .footer-top {
    padding: 80px 5% 60px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 4%;
  }

  .footer-brand img { height: 48px; width: auto; margin-bottom: 1.2rem; filter: brightness(2); }

  .footer-brand p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .social-links {
    display: flex; gap: 0.8rem;
  }

  .social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
  }
  .social-link:hover { background: var(--blue); color: white; border-color: var(--blue); }

  .footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.87rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: white; }

  .contact-info { display: flex; flex-direction: column; gap: 0.8rem; }

  .contact-item {
    display: flex; gap: 0.7rem; align-items: flex-start;
    font-size: 0.85rem; color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }

  .contact-item svg { flex-shrink: 0; margin-top: 2px; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
  }

  /* Responsive */
  @media (max-width: 960px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-image { padding-left: 0; margin-top: 3rem; }
    .hero-mission { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .about { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
  }

  /* ============================================================
     ADDITIONS — multi-page build, video library, forms, mobile nav
     ============================================================ */

  /* ---- Logo: cropped transparent PNG, no brightness hack ---- */
  .nav-logo img { height: 34px; width: auto; display: block; }
  .footer-brand img { height: 40px; width: auto; margin-bottom: 1.2rem; filter: none; }

  /* ---- Skip link (a11y) ---- */
  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--blue); color: #fff; padding: 0.7rem 1.2rem;
    border-radius: 0 0 6px 0; font-size: 0.9rem; font-weight: 600;
  }
  .skip-link:focus { left: 0; }

  /* ---- Visible focus states ---- */
  a:focus-visible, button:focus-visible, input:focus-visible,
  textarea:focus-visible, select:focus-visible {
    outline: 3px solid #5577FF; outline-offset: 2px; border-radius: 3px;
  }

  /* ---- Mobile nav ---- */
  .nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px; padding: 10px; border-radius: 6px;
  }
  .nav-toggle span {
    display: block; height: 2px; width: 100%; background: var(--text);
    border-radius: 2px; transition: transform .25s, opacity .25s;
  }
  .nav-toggle span + span { margin-top: 5px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links a.active { color: var(--blue); }
  .nav-links a.nav-cta.active { color: #fff !important; }

  @media (max-width: 860px) {
    .nav-toggle { display: block; }
    .nav-links {
      position: fixed; top: 72px; left: 0; right: 0;
      background: #fff; flex-direction: column; gap: 0;
      padding: 0.5rem 5% 1.5rem;
      border-bottom: 1px solid rgba(34,51,204,0.1);
      box-shadow: 0 12px 30px rgba(10,14,46,0.10);
      transform: translateY(-8px); opacity: 0; pointer-events: none;
      transition: opacity .2s, transform .2s;
      max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block; padding: 0.95rem 0; font-size: 1rem;
      border-bottom: 1px solid rgba(10,14,46,0.06);
    }
    .nav-links a.nav-cta {
      text-align: center; margin-top: 1rem; border-bottom: 0;
      padding: 0.85rem 1.4rem;
    }
  }

  /* ---- Inner-page hero ---- */
  .page-hero {
    background: linear-gradient(135deg, #0A0E2E 0%, #1A1060 55%, #0D1A6E 100%);
    padding: 150px 5% 80px; color: #fff; position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; top: -260px; right: -160px;
    width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,51,204,0.32) 0%, transparent 70%);
  }
  .page-hero-inner { max-width: 820px; position: relative; z-index: 2; }
  .page-hero h1 {
    font-family: 'Sora', sans-serif; font-weight: 800; color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.12; margin-bottom: 1.1rem;
  }
  .page-hero p {
    color: rgba(255,255,255,0.72); font-size: 1.05rem;
    line-height: 1.75; max-width: 660px;
  }
  .breadcrumb {
    font-size: 0.82rem; color: rgba(255,255,255,0.55);
    margin-bottom: 1.1rem; letter-spacing: 0.02em;
  }
  .breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
  .breadcrumb a:hover { color: #fff; text-decoration: underline; }

  /* ---- Film library ---- */
  .filter-bar {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    justify-content: center; margin-bottom: 3rem;
  }
  .filter-btn {
    font-family: inherit; font-size: 0.85rem; font-weight: 600;
    padding: 0.55rem 1.15rem; border-radius: 100px; cursor: pointer;
    border: 1px solid rgba(34,51,204,0.22);
    background: #fff; color: var(--gray-dark); transition: all .18s;
  }
  .filter-btn:hover { border-color: var(--blue); color: var(--blue); }
  .filter-btn[aria-pressed="true"] {
    background: var(--blue); border-color: var(--blue); color: #fff;
  }

  .film-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1080px; margin: 0 auto;
  }
  .film-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(10,14,46,0.08);
    box-shadow: 0 4px 18px rgba(10,14,46,0.06);
    transition: transform .22s, box-shadow .22s;
    display: flex; flex-direction: column;
  }
  .film-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,14,46,0.14); }
  .film-card.is-hidden { display: none; }

  .film-thumb {
    position: relative; width: 100%; aspect-ratio: 16 / 9;
    background: #0A0E2E; border: 0; padding: 0; cursor: pointer;
    display: block; overflow: hidden;
  }
  .film-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .35s;
  }
  .film-card:hover .film-thumb img { transform: scale(1.045); }
  .film-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,46,0) 45%, rgba(10,14,46,0.55) 100%);
  }
  .film-play {
    position: absolute; top: 50%; left: 50%; z-index: 2;
    transform: translate(-50%, -50%);
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(255,255,255,0.94); color: var(--blue);
    display: grid; place-items: center; font-size: 1.1rem;
    box-shadow: 0 6px 22px rgba(0,0,0,0.28);
    transition: transform .22s, background .22s;
  }
  .film-card:hover .film-play { transform: translate(-50%,-50%) scale(1.09); background: #fff; }
  .film-duration {
    position: absolute; right: 10px; bottom: 10px; z-index: 2;
    background: rgba(10,14,46,0.82); color: #fff;
    font-size: 0.72rem; font-weight: 600;
    padding: 0.2rem 0.5rem; border-radius: 4px; letter-spacing: 0.02em;
  }
  .film-info { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
  .film-info h3 {
    font-family: 'Sora', sans-serif; font-size: 1.03rem; font-weight: 700;
    line-height: 1.35; margin-bottom: 0.3rem; color: var(--text);
  }
  .film-native {
    font-size: 0.82rem; color: var(--gray-mid);
    font-style: italic; margin-bottom: 0.7rem;
  }
  .film-info > p {
    font-size: 0.87rem; color: var(--gray-mid);
    line-height: 1.65; margin-bottom: 1rem; flex: 1;
  }
  .film-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .film-tag {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em;
    padding: 0.28rem 0.6rem; border-radius: 4px;
    background: var(--gray-light); color: var(--gray-dark);
  }
  .film-tag.ksl { background: rgba(34,51,204,0.10); color: var(--blue); }
  .film-tag.lang { background: rgba(255,107,43,0.12); color: #C24A12; }

  /* ---- Video lightbox ---- */
  .lightbox {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(6,9,30,0.93);
    display: none; align-items: center; justify-content: center;
    padding: 5vh 5vw;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner { width: min(1000px, 100%); }
  .lightbox video {
    width: 100%; max-height: 78vh; border-radius: 10px;
    background: #000; display: block; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  }
  .lightbox-caption {
    color: #fff; font-family: 'Sora', sans-serif; font-weight: 600;
    font-size: 1rem; margin-top: 1rem;
  }
  .lightbox-caption span {
    display: block; font-family: 'Inter', sans-serif; font-weight: 400;
    font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem;
  }
  .lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.12); color: #fff;
    border: 0; font-size: 1.5rem; cursor: pointer; line-height: 1;
    transition: background .2s;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.25); }

  /* ---- Generic prose / detail blocks ---- */
  .prose { max-width: 760px; }
  .prose p { font-size: 0.95rem; line-height: 1.85; color: var(--gray-dark); margin-bottom: 1.3rem; }
  .prose h3 {
    font-family: 'Sora', sans-serif; font-size: 1.25rem;
    margin: 2.5rem 0 1rem; color: var(--text);
  }
  .prose ul { margin: 0 0 1.4rem 1.1rem; }
  .prose li { font-size: 0.94rem; line-height: 1.8; color: var(--gray-dark); margin-bottom: 0.5rem; }

  .callout {
    background: var(--gray-light); border-left: 3px solid var(--blue);
    padding: 1.4rem 1.6rem; border-radius: 0 10px 10px 0; margin: 2rem 0;
  }
  .callout p { margin: 0; font-size: 0.9rem; line-height: 1.75; color: var(--gray-dark); }

  .footer-col a.active { color: #fff; }

  @media (max-width: 860px) {
  }
  /* Two columns get cramped below this — go single so the stills stay legible */
  @media (max-width: 820px) {
    .film-grid { grid-template-columns: 1fr; max-width: 540px; }
  }
  @media (max-width: 640px) {
    .page-hero { padding: 120px 5% 60px; }
    .lightbox { padding: 0 4vw; }
    .lightbox-close { top: 10px; right: 10px; }
  }

  /* ---- Contact page ---- */
  .contact-methods {
    display: grid; gap: 1.6rem; max-width: 1080px; margin: 0 auto 4rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-card {
    background: #fff; border: 1px solid rgba(10,14,46,0.09);
    border-radius: 14px; padding: 2rem 1.8rem;
    box-shadow: 0 4px 18px rgba(10,14,46,0.05);
    text-decoration: none; display: block;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  a.contact-card:hover {
    transform: translateY(-4px); border-color: rgba(34,51,204,0.35);
    box-shadow: 0 16px 38px rgba(10,14,46,0.12);
  }
  .contact-card-icon {
    display: grid; place-items: center;
    width: 46px; height: 46px; border-radius: 10px;
    background: rgba(34,51,204,0.09); color: var(--blue);
    margin-bottom: 1.2rem;
  }
  .contact-card h3 {
    font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.5rem;
  }
  .contact-card-value {
    font-size: 1rem; font-weight: 600; color: var(--blue);
    line-height: 1.6; margin-bottom: 0.6rem; word-break: break-word;
  }
  .contact-card-value a { color: inherit; text-decoration: none; }
  .contact-card-value a:hover { text-decoration: underline; }
  .contact-card-note {
    font-size: 0.85rem; color: var(--gray-mid); line-height: 1.65;
  }

  .contact-brief { max-width: 720px; margin: 0 auto; }
  .contact-brief p {
    font-size: 0.95rem; line-height: 1.8; color: var(--gray-dark);
    margin-bottom: 1.2rem;
  }
  .contact-brief ul { margin: 0 0 1.5rem 1.1rem; }
  .contact-brief li {
    font-size: 0.94rem; line-height: 1.8; color: var(--gray-dark);
    margin-bottom: 0.6rem;
  }

  @media (max-width: 900px) {
    .contact-methods { grid-template-columns: 1fr; max-width: 540px; }
  }
