  :root {
    --navy: #0a0e1a;
    --navy-mid: #111827;
    --navy-light: #1a2235;
    --red: #e0002a;
    --red-dark: #b00020;
    --white: #f5f0e8;
    --cream: #ede8df;
    --gold: #c9a84c;
    --text-muted: #8a9ab5;
    --border: rgba(255,255,255,0.07);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 999;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    background: linear-gradient(to bottom, rgba(10,14,26,0.98), rgba(10,14,26,0.0));
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(10,14,26,0.98); border-bottom: 1px solid var(--border); }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--red); }
  
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links .cta-nav {
    background: var(--red); color: var(--white);
    padding: 8px 20px; border-radius: 2px;
    font-size: 0.75rem; letter-spacing: 1.5px;
  }
  .nav-links .cta-nav:hover { background: var(--red-dark); color: var(--white); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

  /* ─── HERO ─── */
  #hero {
    position: relative; height: 100vh; min-height: 650px;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a0a0f 50%, #0a0e1a 100%);
  }

  .hero-img {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 40%;
  }

  @media (max-width: 992px) {
    .hero-img {
      right: 0px;
      top: 170px;
      width: 80%;
    }

    .hero-sub {
      color: var(--white) !important;
    }
  }

  @media (max-width: 480px) {
    .hero-img {
      width: 400px;
    }
  }

  .about-banner-one {
    background: url(../img/new\ \ inside\ page.jpg.jpeg) no-repeat center !important;
    background-size: cover !important;
  }

  .about-banner-two {
    background: url(../img/about-banner.jpg.jpeg) no-repeat center !important;
    background-size: cover !important;
  }

  .hero-film-strips {
    position: absolute; inset: 0; pointer-events: none;
    overflow: hidden;
  }
  .strip {
    position: absolute; top: 0; bottom: 0; width: 80px;
    opacity: 0.04;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0px, transparent 50px,
      #fff 50px, #fff 54px,
      transparent 54px, transparent 104px
    );
  }
  .strip:nth-child(1) { left: 5%; }
  .strip:nth-child(2) { right: 5%; }

  .hero-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(224,0,42,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 5%; max-width: 900px;
    animation: heroIn 1.2s ease both;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-block;
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.5rem;
    border-left: 2px solid var(--red); padding-left: 12px;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
  }
  .hero-title .line2 { color: var(--red); }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic; color: var(--text-muted);
    margin-bottom: 2.5rem; max-width: 500px;
    line-height: 1.6;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--red); color: var(--white);
    padding: 14px 32px; text-decoration: none;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    border-radius: 2px; transition: all 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 14px 32px; text-decoration: none;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    border-radius: 2px; transition: all 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

  .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); animation: bounce 2s infinite;
  }
  .hero-scroll::after {
    content: ''; width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

  /* ─── SECTIONS ─── */
  section { padding: 100px 5%; }

  .section-label {
    font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--red); }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px; line-height: 1;
    margin-bottom: 1.5rem;
  }

  .section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; line-height: 1.8;
    color: var(--text-muted); max-width: 600px;
  }

  /* ─── ABOUT ─── */
  #about { background: var(--navy-mid); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 60px;
  }
  .about-visual {
    position: relative;
    height: 420px;
  }
  .about-card {
    position: absolute;
    background: var(--navy-light);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 4px;
  }
  .about-card:nth-child(1) { top: 0; left: 0; right: 20%; bottom: 20%; }
  .about-card:nth-child(2) { bottom: 0; right: 0; width: 55%; height: 55%;
    border-top: 3px solid var(--red); }

  .about-card-inner {
    display: flex; flex-direction: column; justify-content: flex-end; height: 100%;
  }
  .about-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; color: var(--red); letter-spacing: 2px;
  }
  .about-stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-white); background-color: #e0002a; padding: 5px; }

  .about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-style: italic;
    margin-bottom: 1.5rem; color: var(--gold);
    line-height: 1.4;
  }

  .values-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
  .value-tag {
    padding: 6px 16px; border: 1px solid var(--border);
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); border-radius: 2px;
    transition: all 0.2s;
  }
  .value-tag:hover { border-color: var(--red); color: var(--red); }

  /* ─── SERVICES ─── */
  #services { position: relative; overflow: hidden; }

  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px; background: var(--border);
    margin-top: 60px; border: 1px solid var(--border);
  }

  .service-card {
    background: var(--navy);
    padding: 40px 30px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 3px; background: var(--red);
    transition: width 0.4s;
  }
  .service-card:hover { background: var(--navy-light); }
  .service-card:hover::before { width: 100%; }

  .service-icon {
    font-size: 2rem; margin-bottom: 1.5rem;
    display: block;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 1px;
    margin-bottom: 0.75rem;
  }

  .service-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

  /* ─── PROJECTS ─── */
  #projects { background: var(--navy-mid); }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; margin-top: 60px;
  }

  .project-card {
    position: relative; overflow: hidden;
    border-radius: 4px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    group: hover;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

  .project-poster {
    width: 100%; aspect-ratio: 2/3;
    background: var(--navy-light);
    position: relative; overflow: hidden;
  }

  .poster-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  }
  .poster-placeholder .poster-icon { font-size: 3rem; opacity: 0.4; }
  .poster-placeholder .poster-title-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: 2px;
    color: rgba(255,255,255,0.3); text-align: center;
    padding: 0 20px;
  }

  .project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
    opacity: 0; transition: opacity 0.3s;
  }
  .project-card:hover .project-overlay { opacity: 1; }

  .project-info { padding: 16px; }

  .project-genre {
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--red); margin-bottom: 4px;
  }
  .project-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem; letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .project-synopsis { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

  .btn-trailer {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: var(--white);
    padding: 10px 20px; text-decoration: none;
    font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 2px; margin-top: 12px;
    transition: background 0.2s;
  }
  .btn-trailer:hover { background: var(--red-dark); }
  .btn-trailer::before { content: '▶'; font-size: 0.6rem; }

  /* ─── STATS ─── */
  #stats {
    background: var(--red);
    padding: 70px 5%;
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: 2px; color: var(--white);
    display: block;
  }
  .stat-label {
    font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-top: 6px;
  }

  /* ─── TALENTS ─── */
  #talents { background: var(--navy); }

  .talents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px; margin-top: 60px;
  }

  .talent-card {
    text-align: center; cursor: pointer;
    transition: transform 0.2s;
  }
  .talent-card:hover { transform: translateY(-4px); }

  .talent-avatar {
    width: 100%; aspect-ratio: 1;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    margin-bottom: 12px; overflow: hidden;
    position: relative; transition: all 0.3s;
  }
  .talent-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
  .talent-card:hover .talent-avatar { border-color: var(--red); }
  .talent-avatar-overlay {
    position: absolute; inset: 0;
    background: rgba(224,0,42,0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
    opacity: 0; transition: opacity 0.3s;
  }
  .talent-card:hover .talent-avatar-overlay { opacity: 1; }

  .talent-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600;
    margin-bottom: 4px;
  }
  .talent-cat {
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ─── TRAINING ─── */
  #training { background: var(--navy-mid); }

  .training-grid {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 80px; align-items: center; margin-top: 60px;
  }

  .course-list { display: flex; flex-direction: column; gap: 2px; }

  .course-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s;
    background: var(--navy);
  }
  .course-item:hover { background: var(--navy-light); border-color: var(--red); }

  .course-item-left { display: flex; align-items: center; gap: 16px; }
  .course-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--red); width: 30px; }
  .course-name { font-size: 0.9rem; letter-spacing: 0.5px; }
  .course-duration { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 1px; }

  .training-cta-box {
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 50px 40px;
    border-top: 3px solid var(--red);
    position: relative;
  }

  .training-cta-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .training-cta-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 2rem;
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--navy); }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; margin-top: 60px;
  }

  .testimonial-card {
    background: var(--navy-light);
    border: 1px solid var(--border);
    padding: 36px 30px;
    border-radius: 4px;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--red);
    position: absolute; top: 10px; right: 20px;
    line-height: 1; opacity: 0.5;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-style: italic;
    color: var(--cream); line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy-mid); border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .testimonial-name { font-weight: 500; font-size: 0.9rem; }
  .testimonial-role { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

  /* ─── CREW ─── */
  #crew { background: var(--navy-mid); }

  .crew-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px; margin-top: 60px;
  }

  .crew-card {
    background: var(--navy); border: 1px solid var(--border);
    border-radius: 4px; overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
  }
  .crew-card:hover { transform: translateY(-4px); border-color: var(--red); }

  .crew-photo {
    aspect-ratio: 3/4; background: var(--navy-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; overflow: hidden;
    border-bottom: 3px solid var(--red);
  }

  .crew-photo img { width: 100%; height: 100%; object-fit: cover; }

  .crew-info { padding: 18px 16px; }
  .crew-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600; margin-bottom: 4px;
  }
  .crew-position {
    font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--red);
  }

  /* ─── CONTACT ─── */
  #contact { background: var(--navy); }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 80px; margin-top: 60px;
  }

  .contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 2px; margin-bottom: 1.5rem;
  }

  .contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 1.5rem;
  }
  .contact-icon {
    width: 40px; height: 40px; background: rgba(224,0,42,0.1);
    border: 1px solid rgba(224,0,42,0.3); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .contact-item-text { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); }
  .contact-item-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
  .contact-item-text a { color: var(--text-muted); text-decoration: none;}

  .social-links { display: flex; gap: 10px; margin-top: 2rem; }
  .social-btn {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1rem;
    border-radius: 2px; transition: all 0.2s;
    color: var(--text-muted);
  }
  .social-btn:hover { border-color: var(--red); color: var(--white); background: rgba(224,0,42,0.1); }

  /* ─── FORM ─── */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--navy-light); border: 1px solid var(--border);
    color: var(--white); padding: 12px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    border-radius: 2px; outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--navy-light); }

  /* ─── ENROLLMENT MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.85);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.active { opacity: 1; pointer-events: all; }

  .modal {
    background: var(--navy-mid);
    border: 1px solid var(--border); border-top: 3px solid var(--red);
    border-radius: 4px; padding: 50px 40px;
    max-width: 700px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    transform: translateY(30px); transition: transform 0.3s;
  }
  .modal-overlay.active .modal { transform: translateY(0); }

  .modal h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem; letter-spacing: 2px; margin-bottom: 0.5rem;
  }
  .modal p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }

  .modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px;
    background: transparent; border: 1px solid var(--border);
    color: var(--white); cursor: pointer; border-radius: 2px;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
  }
  .modal-close:hover { background: var(--red); border-color: var(--red); }

  /* ─── FOOTER ─── */
  footer {
    background: #050810;
    border-top: 1px solid var(--border);
    padding: 60px 5% 30px;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }

  .footer-brand .nav-logo { display: block; font-size: 1.8rem; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }

  .footer-col h4 {
    font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }

  .newsletter-form { display: flex; gap: 0; margin-top: 1rem; }
  .newsletter-form input {
    flex: 1; background: var(--navy-light); border: 1px solid var(--border);
    border-right: none; color: var(--white); padding: 10px 14px;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    outline: none;
  }
  .newsletter-form button {
    background: var(--red); border: none; color: var(--white);
    padding: 10px 16px; cursor: pointer; font-size: 0.8rem;
    letter-spacing: 1px; text-transform: uppercase;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--red-dark); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--text-muted);
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    .about-grid,
    .training-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 280px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    nav .nav-links { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: fixed; top: 70px; inset-inline: 0;
      background: var(--navy-mid); padding: 30px 5%;
      border-bottom: 1px solid var(--border);
      gap: 1.5rem; z-index: 998;
    }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .modal { padding: 30px 20px; }
    section { padding: 70px 5%; }
  }

  /* ─── UTILITY ─── */
  .text-red { color: var(--red); }
  .mt-6 { margin-top: 1.5rem; }

  /* ─── BOOKING MODAL ─── */
  #bookingModal .modal { max-width: 600px; }
  #bookingModal .talent-booked-name { color: var(--red); }

  /* ─── TOAST ─── */
  .toast {
    position: fixed; bottom: 30px; right: 30px; z-index: 99999;
    background: var(--navy-light); border: 1px solid var(--red);
    color: var(--white); padding: 16px 24px;
    border-radius: 4px; font-size: 0.88rem;
    transform: translateY(100px); opacity: 0;
    transition: all 0.3s;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 300px;
  max-width: 380px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #1e1e1e;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-left: 4px solid #555;
  animation: toastIn 0.3s ease forwards;
  position: relative;
  overflow: hidden;
}

.toast.success { border-left-color: #4caf50; }
.toast.error   { border-left-color: #f44336; }
.toast.warning { border-left-color: #ff9800; }
.toast.info    { border-left-color: #2196f3; }

.toast-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-close {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.toast-close:hover { color: #fff; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255,255,255,0.25);
  animation: toastProgress 4s linear forwards;
}

.toast.hiding {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}
@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}