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

  :root {
    --red: #E02020;
    --red-dark: #9B0000;
    --red-glow: rgba(224, 32, 32, 0.18);
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #181818;
    --dark3: #222222;
    --white: #F5F0EB;
    --muted: #888888;
    --film-border: #1e1e1e;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: normal;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(224,32,32,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
  }
  body:hover .cursor { opacity: 1; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  }
  .nav-logo {
    width: 36px; height: 36px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .nav-logo::after {
    content: '';
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--red); }

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding: 0 3rem 5rem;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0a0a0a 45%, #1a0808 100%);
  }
  .hero-photo {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 65%;
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, black 60%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, black 60%, black 80%, transparent 100%);
    opacity: 0.7;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(155,0,0,0.12) 0%, transparent 60%);
  }
  /* Film strip decoration */
  .film-strip {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 28px;
    background: var(--film-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 0;
  }
  .film-strip .hole {
    width: 14px; height: 10px;
    background: var(--black);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .film-strip-right {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 28px;
    background: var(--film-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .hero-eyebrow span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--red);
  }
  h1.hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.04em;
    color: var(--white);
    text-shadow: 0 0 60px rgba(224,32,32,0.15);
  }
  .hero-sub {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0.8rem 0 2rem;
    font-weight: 400;
  }
  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-primary {
    background: var(--red);
    color: white;
  }
  .btn-primary:hover { background: #c01818; transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
  }
  .btn-secondary:hover { border-color: var(--red); color: var(--red); }
  .btn svg { width: 12px; height: 12px; fill: currentColor; }

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    z-index: 2;
  }
  .scroll-hint span { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scroll-anim 1.6s ease-in-out infinite;
  }
  @keyframes scroll-anim { 0%,100%{opacity:0.3; transform:scaleY(0.6) translateY(-8px)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

  /* SECTION DEFAULTS */
  section { padding: 7rem 3rem; }
  .section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--red);
  }
  .section-label span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
  }
  h2.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 3.5rem;
  }

  /* VIDEOS SECTION */
  .videos-section { background: var(--black); }
  .video-featured {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark3);
    cursor: pointer;
  }
  .video-featured img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.65);
    transition: filter 0.4s, transform 0.6s;
  }
  .video-featured:hover img { filter: brightness(0.5); transform: scale(1.02); }
  .video-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
  }
  .video-tag {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    width: fit-content;
  }
  .video-featured h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.6rem;
  }
  .video-featured p {
    font-size: 0.75rem;
    color: rgba(245,240,235,0.7);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 1.5rem;
  }
  .video-featured-ctas { display: flex; gap: 0.75rem; }
  .play-btn {
    width: 56px; height: 56px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
    cursor: pointer;
  }
  .play-btn svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
  .video-featured:hover .play-btn { opacity: 1; background: rgba(224,32,32,0.7); }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 1.5px;
  }
  .video-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: var(--dark2);
  }
  .video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.7);
    transition: filter 0.4s, transform 0.5s;
  }
  .video-thumb:hover img { filter: brightness(0.4) saturate(0.5); transform: scale(1.05); }
  .video-thumb-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(4px);
    transition: transform 0.3s;
  }
  .video-thumb:hover .video-thumb-info { transform: translateY(0); }
  .video-thumb h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }
  .video-thumb span {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .duration-badge {
    position: absolute;
    top: 0.6rem; right: 0.6rem;
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
    font-weight: 500;
  }
  .more-btn-wrap { margin-top: 3rem; text-align: center; }

  /* PHOTOS SECTION */
  .photos-section {
    background: var(--dark);
    position: relative;
  }
  .photos-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
  }
  .photos-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 6px;
  }
  .photo-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark2);
  }
  .photo-item.tall { grid-row: span 2; }
  .photo-item.wide { grid-column: span 2; }
  .photo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.85);
    transition: filter 0.4s, transform 0.6s;
  }
  .photo-item:hover img { filter: brightness(0.5) saturate(0.6); transform: scale(1.06); }
  .photo-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155,0,0,0.0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photo-item:hover .photo-item-overlay { background: rgba(155,0,0,0.15); }
  .photo-item-overlay svg {
    opacity: 0;
    transition: opacity 0.3s;
    width: 28px; height: 28px;
    fill: white;
  }
  .photo-item:hover .photo-item-overlay svg { opacity: 0.8; }
  /* placeholder aspect ratios */
  .photo-placeholder {
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ph-1 { aspect-ratio: 3/4; }
  .ph-2 { aspect-ratio: 4/3; }
  .ph-3 { aspect-ratio: 1/1; }

  /* Colored placeholder blocks */
  .photo-block {
    width: 100%; height: 100%;
    display: block;
    min-height: 200px;
  }
  .photo-item.tall .photo-block { min-height: 420px; }
  .photo-item.wide .photo-block { min-height: 220px; }

  /* ABOUT SECTION */
  .about-section {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 7rem 3rem;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img-frame {
    position: absolute;
    top: -16px; left: -16px; right: 16px; bottom: 16px;
    border: 1px solid var(--red);
    opacity: 0.4;
    pointer-events: none;
  }
  .about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    display: block;
  }
  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-img-placeholder svg { width: 48px; height: 48px; fill: var(--dark3); }
  .about-counter {
    position: absolute;
    bottom: -2rem; right: -2rem;
    background: var(--red);
    padding: 1.5rem;
    text-align: center;
  }
  .about-counter strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .about-counter span { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
  .about-text p {
    font-size: 0.85rem;
    line-height: 1.85;
    color: rgba(245,240,235,0.75);
    margin-bottom: 1.25rem;
  }
  .about-text p em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--white);
    font-size: 1rem;
  }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .skill-item {
    border-left: 2px solid var(--red);
    padding-left: 0.75rem;
  }
  .skill-item strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
  }
  .skill-item span { font-size: 0.65rem; color: var(--muted); }

  /* CONTACT SECTION */
  .contact-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .contact-section::before {
    content: 'CONTACT';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12rem;
    color: rgba(255,255,255,0.02);
    letter-spacing: 0.1em;
    pointer-events: none;
    white-space: nowrap;
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    max-width: 900px;
  }
  .contact-info p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(245,240,235,0.6);
    margin-bottom: 2rem;
  }
  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .contact-detail-item .icon {
    width: 32px; height: 32px;
    border: 1px solid var(--dark3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-detail-item .icon svg { width: 14px; height: 14px; fill: var(--red); }
  .contact-detail-item span { font-size: 0.75rem; color: rgba(245,240,235,0.7); }
  .contact-form { display: flex; flex-direction: column; gap: 0.75rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .form-field {
    display: flex;
    flex-direction: column;
  }
  .form-field label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    background: var(--dark2);
    border: 1px solid var(--dark3);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    appearance: none;
  }
  .form-field input:focus,
  .form-field textarea:focus { border-color: var(--red); }
  .form-field textarea { height: 120px; resize: none; }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--muted); }
  .btn-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
  }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--dark3);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer p { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; }
  .footer-social {
    display: flex;
    gap: 1.25rem;
  }
  .footer-social a {
    color: var(--muted);
    transition: color 0.2s;
    text-decoration: none;
  }
  .footer-social a:hover { color: var(--red); }
  .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

  /* LIGHTBOX */
.gallery-item {
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  z-index: 10000;
}

  /* VIDEO MODAL */
  .video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .video-modal.active { display: flex; }
  .video-modal-inner {
    width: 80vw;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .video-modal-inner p {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
  }
  .modal-close {
    position: absolute;
    top: -2.5rem; right: 0;
    background: none; border: none;
    color: white; font-size: 1rem;
    cursor: pointer; opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.65rem;
  }

  /* ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 1.25rem 1.5rem; }
    section { padding: 5rem 1.5rem; }
    .hero { padding: 0 1.5rem 4rem; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .photos-masonry { grid-template-columns: repeat(2, 1fr); }
    .about-section { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 4rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }



  /*############$/

    /* PAGE HEADER */
  .page-header {
    padding: 9rem 3rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(155,0,0,0.09) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
  }
  .page-header-eyebrow::before,
  .page-header-eyebrow::after {
    content: '';
    width: 28px; height: 1px;
    background: var(--red);
    opacity: 0.6;
  }
  .page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 80px rgba(224,32,32,0.12);
  }

  /* FILTERS */
  .filters-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0 3rem 3.5rem;
  }
  .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.22s;
    opacity: 0.75;
  }
  .filter-btn svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none;
    stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
  }
  .filter-btn:hover {
    border-color: rgba(224,32,32,0.5);
    color: var(--red);
    opacity: 1;
  }
  .filter-btn.active {
    background: rgba(224,32,32,0.12);
    border-color: var(--red);
    color: var(--red);
    opacity: 1;
  }
  .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; height: 16px;
    font-size: 0.55rem;
    background: rgba(224,32,32,0.2);
    border-radius: 50%;
    color: var(--red);
    font-weight: 600;
  }
  .filter-btn.active .filter-count {
    background: var(--red);
    color: white;
  }

  /* CATALOGUE GRID */
  .catalogue-section {
    padding: 0 2.5rem 6rem;
    position: relative;
  }

  /* Film strip side decoration */
  .catalogue-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: repeating-linear-gradient(
      to bottom,
      var(--film-border) 0px,
      var(--film-border) 18px,
      transparent 18px,
      transparent 26px
    );
    opacity: 0.5;
  }

  .catalogue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .catalogue-grid-photo {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Card */
  .card {
    position: relative;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s;
    text-decoration: none;
  }
  .card:hover {
    transform: translateY(-3px);
    border-color: rgba(224,32,32,0.3);
  }

  .card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--dark3);
    overflow: hidden;
  }

  .card-thumb--photo{
    aspect-ratio: 3/4;

  }
  .card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s;
    opacity: 0.85;
  }
  .card:hover .card-thumb img {
    transform: scale(1.04);
    opacity: 0.95;
  }

  /* Placeholder when no image */
  .card-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-thumb-placeholder svg {
    width: 40px; height: 40px;
    stroke: #333; fill: none;
    stroke-width: 1.2;
  }

  /* Gradient overlay on thumb */
  .card-thumb-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.35) 45%,
      transparent 80%
    );
    pointer-events: none;
  }

  /* Play button */
  .card-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(224,32,32,0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s, background 0.2s;
  }
  .card-play svg {
    width: 18px; height: 18px;
    fill: white;
    margin-left: 3px;
  }
  .card:hover .card-play {
    opacity: 1;
    transform: translate(-50%, -50%);
    background: var(--red);
  }

  /* Duration badge */
  .card-duration {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    background: rgba(10,10,10,0.75);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
  }

  /* Category tag on thumb */
  .card-cat-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.18rem 0.6rem;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(224,32,32,0.18);
    border: 1px solid rgba(224,32,32,0.4);
    color: var(--red);
  }

  /* Card body */
  .card-body {
    padding: 0.9rem 1.1rem 1rem;
    position: relative;
  }
  .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.07em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.35rem;
  }
  .card-meta {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
  }

  /* Hover line accent */
  .card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .card:hover::after { transform: scaleX(1); }

  /* REVEAL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* EMPTY STATE */
  .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    display: none;
  }
  .empty-state.show { display: block; }
  .empty-state p {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.75rem;
  }
  .empty-state .empty-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    opacity: 0.2;
  }
  .empty-state .empty-icon svg {
    width: 100%; height: 100%;
    stroke: var(--white); fill: none;
    stroke-width: 1;
  }




  /* FOOTER */
  footer {
    border-top: 1px solid var(--dark3);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer p {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: var(--muted);
  }
  .footer-social {
    display: flex;
    gap: 1.2rem;
  }
  .footer-social a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--red); }
  .footer-social svg {
    width: 15px; height: 15px;
    fill: none; stroke: currentColor;
    stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  }

  /* VIDEO MODAL */
  .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.96);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  .video-modal.active { display: flex; }
  .video-modal-inner {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: var(--dark2);
  }
  .modal-close {
    position: absolute;
    top: -2.2rem; right: 0;
    background: none; border: none;
    color: var(--muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--red); }
  .modal-thumb-wrap {
    position: relative;
    background: var(--dark3);
  }
  .modal-thumb-wrap img {
    width: 100%; display: block;
    opacity: 0.85;
  }
  .modal-thumb-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 60%);
  }
  .modal-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(224,32,32,0.9);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
  }
  .modal-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--red);
  }
  .modal-play-btn svg { width: 26px; height: 26px; fill: white; margin-left: 4px; }
  .modal-info {
    position: absolute;
    bottom: 1.2rem; left: 1.5rem; right: 1.5rem;
  }
  .modal-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 0.3rem;
  }
  .modal-info p {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,235,0.5);
  }

  /* Stagger animation for grid */
  .card:nth-child(1) { transition-delay: 0s; }
  .card:nth-child(2) { transition-delay: 0.06s; }
  .card:nth-child(3) { transition-delay: 0.12s; }
  .card:nth-child(4) { transition-delay: 0.18s; }
  .card:nth-child(5) { transition-delay: 0.24s; }
  .card:nth-child(6) { transition-delay: 0.30s; }

  /* Hidden cards during filter */
  .card.hidden {
    display: none;
  }



  
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .page-header { padding: 7rem 1.5rem 2.5rem; }
    .filters-bar { padding: 0 1.5rem 2.5rem; gap: 0.5rem; }
    .catalogue-section { padding: 0 1rem 4rem; }
    .catalogue-grid { grid-template-columns: 1fr; gap: 10px; }
    footer { flex-direction: column; gap: 1.2rem; padding: 1.5rem; }
  }

  /* Style du bouton Hamburger (caché par défaut sur PC) */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 100; /* Assure que le menu reste cliquable au-dessus du reste */
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff; /* À adapter selon la couleur de ton texte */
  transition: all 0.3s ease;
}

/* Style de la galerie photo */


/* === RESPONSIVE : Affichage sur Mobile et Tablette (moins de 768px) === */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block; /* On affiche le bouton */
  }

  /* On transforme la liste en menu vertical caché */
  .nav-links {
    position: fixed;
    left: -100%; /* Caché hors de l'écran à gauche */
    top: 0; /* Ou la hauteur de ta navbar si tu veux le faire descendre */
    flex-direction: column;
    background-color: #111; /* Couleur de fond du menu mobile */
    width: 100%;
    height: 100vh; /* Prend toute la hauteur de l'écran */
    text-align: center;
    transition: 0.3s; /* Animation de glissement */
    justify-content: center; /* Centre les liens verticalement */
    z-index: 99;
  }

  /* La classe ajoutée par le JS pour ouvrir le menu */
  .nav-links.active {
    left: 0; /* Ramène le menu dans l'écran */
  }

  /* Espace un peu les liens sur mobile */
  .nav-links li {
    margin: 25px 0;
  }

  /* Optionnel : Animation de croix pour le hamburger quand il est ouvert */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}








