/* =========================================================
   AANA STUDIO - CLEAN MAIN STYLE
   Brand: #eb1616
   Theme: cinematic black / glass / red accent
========================================================= */

/* =========================
   GLOBAL RESET
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #131313;
    color: #e5e2e1;
}

img,
video {
    max-width: 100%;
    display: block;
}

a,
button {
    font: inherit;
}

button {
    cursor: pointer;
}

:root {
    --accent: #eb1616;
    --surface: #131313;
    --surface-dark: #0b0b0b;
    --surface-container: #201f1f;
    --text: #e5e2e1;
    --text-muted: rgba(255,255,255,0.68);
    --border-soft: rgba(255,255,255,0.1);
    --glass-bg: rgba(255,255,255,0.03);
}

/* =========================
   COMMON UTILITIES
========================= */
.text-accent { color: var(--accent); }
.bg-accent { background-color: var(--accent); }
.border-accent { border-color: var(--accent); }

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.play-icon {
    font-variation-settings: "FILL" 1;
}

.icon-fill-off {
    font-variation-settings: "FILL" 0;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.75);
}

.text-shadow-glow {
    text-shadow: 0 0 32px rgba(235,22,22,0.45);
}

.glass,
.glass-card,
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-soft);
}

.noir-glow:hover,
.cinematic-glow:hover,
.glow-hover:hover {
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(235,22,22,0.28);
}

.division-glow {
    border: 1px solid var(--border-soft);
    background: var(--glass-bg);
    transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}

.division-glow:hover {
    border-color: rgba(235,22,22,0.8);
    box-shadow: 0 0 32px rgba(235,22,22,0.24);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.scroll-reveal,
.reveal-up,
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.recording-dot {
    animation: subtle-pulse 2s infinite;
}

.recording-dot::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 0 10px var(--accent);
}

/* =========================
   NAVBAR
========================= */
header .bg-surface-container > div {
    height: 88px;
}

.top-nav-link,
.top-nav-button {
    display: flex;
    align-items: center;
    height: 44px;
    line-height: 1;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.top-nav-link:hover,
.top-nav-link.active,
.top-nav-button:hover,
.top-nav-button.active {
    color: var(--accent) !important;
}

.top-nav-button {
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 0;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 52px;
    left: 50%;
    min-width: 220px;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 2px solid var(--accent);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: rgba(10,10,10,0.96);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: #fff;
    background: rgba(235,22,22,0.16);
    padding-left: 28px;
}

/* =========================
   DIVISION BAR
========================= */
.division-bar {
    position: relative;
    z-index: 40;
    background: rgba(10,10,10,0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.division-nav a {
    position: relative;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.division-nav a:hover,
.division-nav a.active {
    color: #fff !important;
}

.division-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
}

.division-nav a:hover::after,
.division-nav a.active::after {
    transform: translateX(-50%) scale(1);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu-btn,
.mobile-menu,
.mobile-dropdown-btn {
    display: none;
}

/* =========================
   HERO / BACKGROUNDS
========================= */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-image {
    background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBkNn3KwSsPe-UHJHzOQFlGHrQQ5h5wCqqBiUDz70yLlUcRsGcXodNGnqERe3dLBsxVKOJIyH1vDnWz-l59EG-JH1BcOhBmLKRpRnHCHz0E8iWOEaH781CH8P-N8dnlKy2s73Zn3pHtE4ns2HfbmGYclNzk2MgScaanXNWrKGLZccVyavQaNfgCultJ4NWCmCeV9oKpYQIdDIa7bHgGjXeLQGpL9yQOi9dPryJWFMHPv3a8JcR8KgoJ8A");
}

.film-hero-gradient {
    background:
        radial-gradient(circle at center, rgba(235,22,22,0.14), transparent 38%),
        linear-gradient(to top, #131313 4%, rgba(19,19,19,0.65) 42%, rgba(0,0,0,0.7) 100%);
}

.commercial-hero-gradient {
    background: linear-gradient(180deg, rgba(19,19,19,.78) 0%, rgba(19,19,19,.38) 45%, #131313 100%);
}

.contact-hero-glow {
    background: radial-gradient(circle at center, rgba(235,22,22,0.28), transparent 55%);
}

/* =========================
   AWARDS
========================= */
.awards-section {
    padding: 120px 0;
}

.awards-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    overflow: hidden;
}

.awards-heading {
    color: var(--accent);
    font-family: Syne, sans-serif;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
    align-items: center;
}
.awards-heading h2 {
    margin: 0;

    color: #EB1616;

    font-family: "Syne", sans-serif;
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    text-align: center;
}

.B,
#awards-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 18px 0 34px;
    scrollbar-width: none;
}

.awards-carousel::-webkit-scrollbar,
#awards-carousel::-webkit-scrollbar {
    display: none;
}

.award-card {
    flex: 0 0 380px;
    width: 380px;
    min-width: 380px;
    height: 320px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 50px 30px;
    text-align: center;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.award-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 28px rgba(235,22,22,0.25);
}

.award-icon {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 70px;
    margin-bottom: 35px;
    transition: color 0.3s ease;
}

.award-card:hover .award-icon {
    color: #fff;
}

.award-card h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
}

.award-title {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.award-year {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.award-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.award-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.award-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* =========================
   FILM / CRAFT COMMON
========================= */
.craft-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.craft-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent 65%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

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

.film-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.12), transparent);
}

/* Commercial cards */
.commercial-card-hover {
    position: relative;
    overflow: hidden;
    transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease, background .45s ease;
}

.commercial-card-hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(235,22,22,.20), transparent 45%);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.commercial-card-hover:hover {
    transform: translateY(-10px);
    border-color: rgba(235,22,22,.55);
    box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 32px rgba(235,22,22,.22);
    background: rgba(255,255,255,.055);
}

.commercial-card-hover:hover::before {
    opacity: 1;
}

.commercial-card-hover .commercial-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235,22,22,.35);
    color: var(--accent);
    margin-bottom: 28px;
    transition: all .4s ease;
}

.commercial-card-hover:hover .commercial-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}

.commercial-craft-card img {
    transition: transform .8s ease, filter .8s ease;
}

.commercial-craft-card:hover img {
    transform: scale(1.06);
    filter: brightness(.55);
}

/* Contact */
.input-underline {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.input-underline:focus {
    border-bottom-color: var(--accent);
    box-shadow: none;
}

.contact-info-card {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(235,22,22,0.55);
    box-shadow: 0 0 30px rgba(235,22,22,0.18);
}

/* =========================================
   COMMON FOOTER
========================================= */

.common-footer {
    background: #000;
    padding: 68px 0 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    width: calc(100% - 80px);
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(340px, 1.35fr)
        minmax(220px, 0.9fr)
        minmax(180px, 0.75fr)
        minmax(150px, 0.65fr)
        minmax(210px, 0.85fr);

    align-items: start;
    gap: 42px;
}

/* =========================================
   BRAND CARD
========================================= */

.footer-brand {
    min-height: 332px;
    padding: 48px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--accent);
}

.footer-brand h3 {
    margin: 0 0 28px;

    color: #fff;
    font-size: clamp(34px, 3.2vw, 52px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-brand p {
    max-width: 350px;
    margin: 0;

    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    padding-top: 4px;
    min-width: 0;
}

.footer-column h4 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 12px;

    color: var(--accent);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: var(--accent);
}

.footer-column p {
    margin: 0 0 8px;
}

.footer-column p,
.footer-column a {
    color: #7e89bd;
    font-size: 16px;
    line-height: 1.65;
    text-decoration: none;
}

.footer-column a {
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a.active {
    color: var(--accent);
}

/* =========================================
   CONTACT
========================================= */

.footer-address {
    margin-bottom: 12px !important;
}

.footer-email {
    margin-top: 10px !important;
}

.footer-contact p a {
    overflow-wrap: anywhere;
}

/* =========================================
   LINK LISTS
========================================= */

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column li a {
    position: relative;
    display: inline-block;
    padding-left: 23px;
}

.footer-column li a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -4px;

    color: #8e98ca;
    font-size: 25px;
    line-height: 1;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column li a:hover {
    transform: translateX(4px);
}

.footer-column li a:hover::before,
.footer-column li a.active::before {
    color: var(--accent);
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 26px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--accent);
    border-right: 0;

    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:last-child {
    border-right: 1px solid var(--accent);
}

.footer-socials a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .footer-container {
        width: calc(100% - 60px);
        grid-template-columns: 1.25fr 1fr 1fr;
        gap: 42px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 44px 38px;
    }

    .footer-brand p {
        max-width: 620px;
    }
}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 768px) {
    .common-footer {
        padding: 50px 0;
    }

    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-column h4 {
        margin-bottom: 22px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {
    .common-footer {
        padding: 32px 0;
    }

    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

   .footer-brand {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .footer-brand h3 {
       white-space: normal;
        font-size: 43px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-column {
        padding-top: 0;
    }

    .footer-column h4 {
        margin-bottom: 20px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 15px;
    }

    .footer-column li {
        margin-bottom: 11px;
    }

    .footer-socials {
        margin-top: 21px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (min-width: 1024px) {
    header nav.hidden {
        gap: 34px !important;
    }
}

@media (max-width: 768px) {
    header .bg-surface-container > div {
        height: auto;
        padding: 18px 20px !important;
        justify-content: space-between !important;
    }

    header .text-4xl {
        font-size: 24px !important;
        white-space: nowrap;
    }

    header nav.hidden {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        background: rgba(0,0,0,0.35);
        border: 1px solid rgba(235,22,22,0.45);
    }

    .mobile-menu {
        display: none;
        background: rgba(7,7,7,0.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(255,255,255,0.06);
        border-bottom: 1px solid rgba(235,22,22,0.22);
        padding: 24px 22px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .mobile-menu.active {
        display: grid;
        gap: 16px;
    }

    .mobile-menu a,
    .mobile-dropdown-btn {
        color: rgba(255,255,255,0.78);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        text-decoration: none;
        background: transparent;
        border: 0;
        text-align: left;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active,
    .mobile-dropdown-btn:hover,
    .mobile-dropdown-btn.active {
        color: var(--accent);
    }

    .mobile-dropdown-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-dropdown-list {
        display: none;
        padding-left: 18px;
        border-left: 1px solid rgba(235,22,22,0.35);
    }

    .mobile-dropdown-list.active {
        display: grid;
        gap: 12px;
    }

    .mobile-menu-divider {
        height: 1px;
        background: rgba(255,255,255,0.1);
        margin: 8px 0;
    }

    .division-bar {
        display: none !important;
    }

    main {
        padding-top: 86px !important;
    }

    .text-display-lg {
        font-size: 52px !important;
        line-height: 1 !important;
    }

    .text-display-md {
        font-size: 36px !important;
        line-height: 1.15 !important;
    }

    /* Awards mobile side slider */
    .awards-section {
        padding: 70px 0 !important;
        overflow: hidden !important;
    }

    .awards-container {
        width: 100% !important;
        padding: 0 20px !important;
        overflow: hidden !important;
    }

    .awards-heading {
        font-size: 32px !important;
        line-height: 1.15 !important;
        max-width: 340px !important;
        margin: 0 auto 36px !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        align-items: center;
    }

    .awards-carousel,
    #awards-carousel {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0 0 28px !important;
        scrollbar-width: none;
    }

    .award-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        padding: 42px 20px !important;
        scroll-snap-align: center;
    }

    .award-card h4 {
        font-size: 18px !important;
        line-height: 1.2 !important;
        letter-spacing: 0.02em !important;
        white-space: nowrap !important;
    }

    .award-title {
        font-size: 11px !important;
        letter-spacing: 0.18em !important;
    }

    .award-icon {
        font-size: 54px !important;
        margin-bottom: 24px !important;
    }

    .award-controls {
        display: flex !important;
        justify-content: center;
        gap: 14px;
        margin-top: 18px;
    }

    .award-arrow {
        display: flex !important;
        width: 44px;
        height: 44px;
    }

    /* Omega */
    .omega-hero {
        min-height: 100vh;
        padding: 120px 20px 70px !important;
    }

    .omega-hero h1 {
        font-size: 54px !important;
        letter-spacing: 0.08em !important;
        line-height: 1 !important;
    }

    .omega-hero h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .omega-hero p {
        font-size: 12px !important;
        letter-spacing: 0.35em !important;
    }

    .omega-story,
    .omega-gallery,
    .omega-audio,
    .omega-title-reveal {
        padding: 80px 20px !important;
    }

    .omega-story {
        display: block !important;
    }

    .omega-story h3 {
        font-size: 40px !important;
        line-height: 1.08 !important;
    }

    .omega-story p,
    .omega-gallery p,
    .omega-title-reveal p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .omega-story .grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
        margin-top: 40px;
    }

    .omega-story .translate-y-8,
    .omega-story .-translate-y-8,
    .omega-audio .md\:translate-y-12,
    .omega-title-reveal .mt-8 {
        transform: none !important;
        margin-top: 0 !important;
    }

    .omega-quote {
        margin-top: 50px !important;
        padding: 36px 22px !important;
    }

    .omega-quote p {
        font-size: 20px !important;
        line-height: 1.5 !important;
    }

    .omega-gallery-header {
        display: block !important;
        margin-bottom: 40px !important;
    }

    .omega-gallery h3 {
        font-size: 38px !important;
        line-height: 1.05 !important;
    }

    .omega-gallery-grid {
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 0 !important;
    }

    .omega-gallery-grid > div {
        height: 320px !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .omega-gallery-grid img {
        height: 100% !important;
        object-fit: cover;
    }

    .omega-audio h3,
    .omega-title-reveal h3 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .omega-audio .grid,
    .omega-title-reveal .grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .omega-title-reveal .glass {
        width: 100% !important;
        height: 260px !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .omega-title-reveal .glass img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Film making */
    .film-hero {
        min-height: 92vh !important;
        padding: 110px 20px 64px !important;
    }

    .film-hero h1 {
        font-size: 54px !important;
        line-height: 0.95 !important;
        gap: 0 !important;
    }

    .film-hero .hero-subtitle {
        flex-direction: column;
        gap: 12px !important;
    }

    .film-hero .hero-subtitle span {
        width: 44px !important;
    }

    .film-section {
        padding-top: 76px !important;
        padding-bottom: 76px !important;
    }

    .film-section h2,
    .film-section h3 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .film-section p {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    .film-philosophy .glass-panel {
        padding: 26px !important;
    }

    .craft-header {
        align-items: flex-start !important;
        margin-bottom: 34px !important;
    }

    .craft-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .craft-card {
        grid-column: auto !important;
        min-height: 290px !important;
    }

    .craft-card.large {
        min-height: 330px !important;
    }

    .craft-card.vertical {
        min-height: 420px !important;
    }

    .craft-card img {
        aspect-ratio: auto !important;
        height: 100% !important;
    }

    .craft-overlay {
        opacity: 1 !important;
        padding: 24px !important;
    }

    .craft-overlay h4 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .cta-film {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .cta-film h2 {
        font-size: 36px !important;
        line-height: 1.12 !important;
    }

    /* Documentary */
    .documentary-hero {
        min-height: 92vh;
        padding: 120px 20px 70px !important;
    }

    .documentary-hero h2 {
        font-size: 42px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.03em !important;
    }

    .documentary-intro,
    .documentary-process,
    .documentary-gallery,
    .documentary-philosophy {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .documentary-intro p:first-child {
        font-size: 24px !important;
        line-height: 1.35 !important;
    }

    .documentary-process-image {
        height: 360px !important;
    }

    .documentary-process .md\:-ml-32 {
        margin-left: 0 !important;
    }

    .documentary-process-card {
        padding: 34px 24px !important;
        margin-top: -35px;
        position: relative;
        z-index: 2;
    }

    .documentary-gallery .flex.items-center.justify-between {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 18px !important;
        margin-bottom: 36px !important;
    }

    .documentary-gallery h2,
    .documentary-philosophy h2 {
        font-size: 36px !important;
        line-height: 1.1 !important;
    }

    .documentary-gallery-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 18px !important;
    }

    .documentary-gallery-grid > div {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 320px !important;
        min-height: 320px !important;
    }

    .documentary-gallery-grid > div:first-child {
        height: 420px !important;
        min-height: 420px !important;
    }

    .documentary-gallery-grid h4 {
        font-size: 24px !important;
        line-height: 1.15 !important;
    }

    .documentary-philosophy {
        gap: 40px !important;
    }

    .documentary-philosophy .h-\[450px\] {
        height: 340px !important;
    }

    /* Commercials */
    .commercial-hero {
        min-height: 100vh;
        padding: 120px 20px 70px;
    }

    .commercial-hero h1 {
        font-size: 46px !important;
        line-height: 1.02 !important;
    }

    .commercial-section {
        padding: 80px 20px !important;
    }

    .commercial-section h2 {
        font-size: 36px !important;
        line-height: 1.12 !important;
    }

    .commercial-craft-grid {
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .commercial-craft-grid > div,
    .commercial-craft-grid .grid {
        height: auto !important;
        min-height: auto !important;
        grid-column: auto !important;
    }

    .commercial-craft-grid img {
        height: 320px !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }

    .commercial-craft-text {
        padding: 34px 24px !important;
    }

    .commercial-service-card-wrap {
        grid-template-columns: 1fr !important;
    }

    .commercial-cta {
        padding: 90px 20px !important;
    }

    /* Crew */
    .crew-hero {
        min-height: 100vh;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .crew-hero h1 {
        font-size: 48px !important;
        line-height: 1.05 !important;
    }

    .crew-hero p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .crew-intro,
    .crew-grid-section,
    .crew-cta {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .crew-intro {
        padding-top: 80px !important;
        padding-bottom: 90px !important;
    }

    .crew-intro h2,
    .crew-grid-section h3,
    .crew-cta h2 {
        font-size: 36px !important;
        line-height: 1.12 !important;
    }

    .crew-grid-section {
        padding-bottom: 90px !important;
    }

    .crew-grid-section .grid {
        gap: 28px !important;
    }

    .crew-grid-section .md\:translate-y-12,
    .crew-grid-section .lg\:translate-y-0 {
        transform: none !important;
    }

   

    .crew-cta {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    /* Contact */
    .contact-hero-title {
        font-size: 64px !important;
        line-height: 0.95 !important;
    }

    .contact-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .contact-form-card {
        padding: 32px 22px !important;
    }

}

@media (max-width: 480px) {
    header .text-4xl {
        font-size: 22px !important;
    }

    .text-display-lg {
        font-size: 44px !important;
    }

    .text-display-md {
        font-size: 32px !important;
    }

    .awards-heading {
        font-size: 28px !important;
        max-width: 300px !important;
        text-align: center;
        align-items: center;
    }


    .award-card {
        padding: 38px 18px !important;
    }

    .documentary-hero h2 {
        font-size: 34px !important;
    }

    .documentary-gallery h2,
    .documentary-philosophy h2 {
        font-size: 32px !important;
    }

    .documentary-process-image,
    .documentary-gallery-grid > div {
        height: 300px !important;
        min-height: 300px !important;
    }

    .documentary-gallery-grid > div:first-child {
        height: 380px !important;
        min-height: 380px !important;
    }

    .contact-hero-title {
        font-size: 52px !important;
    }
}

@media (max-width: 768px) {

    .awards-heading {
        justify-content: center;
        text-align: center;
        margin-bottom: 24px;
        /* padding: 0 20px; */
    }

    .awards-heading h2 {
        width: 100%;
        font-size: 30px;
        line-height: 1.05;
        text-align: center;
    }

}
 /* =========================
   NAVBAR
========================= */
.single-navbar {
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-top-row {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

.main-navbar-links {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.top-nav-link,
.top-nav-button {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s ease;
}

.top-nav-link:hover,
.top-nav-link.active,
.top-nav-button:hover,
.top-nav-button.active {
    color: #eb1616;
}

/* =========================
   DIVISION NAV
========================= */
.navbar-division-row {
    display: flex;
    justify-content: center;
    padding: 14px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.division-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
}

.division-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s ease;
}

.division-nav a:hover,
.division-nav a.active {
    color: #ffffff;
}

.division-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 7px;
    height: 7px;
    background: #eb1616;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.3s ease;
}

.division-nav a:hover::after,
.division-nav a.active::after {
    transform: translateX(-50%) scale(1);
}

/* =========================
   DESKTOP DROPDOWN
========================= */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #eb1616;
    padding: 12px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.28s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: rgba(10, 10, 10, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: #eb1616;
    background: rgba(235, 22, 22, 0.08);
}

/* =========================
   MOBILE MENU DEFAULT
========================= */
.mobile-menu-btn,
.mobile-menu,
.mobile-dropdown-btn {
    display: none;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .navbar-top-row {
        min-height: 78px;
    }

    .main-navbar-links {
        gap: 22px;
    }

    .division-nav {
        gap: 34px;
    }

    .division-nav a {
        font-size: 0.82rem;
        letter-spacing: 0.12em;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .single-navbar .max-w-container-max {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-top-row {
        min-height: 72px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
    }

    .navbar-logo {
        width: 170px;
        height: auto;
    }

    .main-navbar-links,
    .navbar-division-row {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        color: #eb1616;
        background: transparent;
        border: 1px solid rgba(235, 22, 22, 0.5);
        cursor: pointer;
    }

    .mobile-menu {
        display: none;
        background: #0c0c0c;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 18px 20px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu > a,
    .mobile-dropdown-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: none;
        border: none;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .mobile-menu > a:hover,
    .mobile-menu > a.active,
    .mobile-dropdown-btn:hover,
    .mobile-dropdown-btn.active {
        color: #eb1616;
    }

    .mobile-dropdown-list {
        display: none;
        margin: 4px 0 10px 18px;
        padding-left: 14px;
        border-left: 1px solid rgba(235, 22, 22, 0.35);
    }

    .mobile-dropdown-list.active {
        display: block;
    }

    .mobile-dropdown-list a {
        display: block;
        padding: 9px 0;
        color: #9b9b9b;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: 0.3s ease;
    }

    .mobile-dropdown-list a:hover,
    .mobile-dropdown-list a.active {
        color: #eb1616;
    }

    .mobile-menu-divider {
        margin: 18px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

    .nav-link:hover,
    .nav-link.active {
      color: #fff;
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -16px;
      width: 7px;
      height: 7px;
      background: #eb1616;
      border-radius: 50%;
      transform: translateX(-50%);
    }

    .mobile-link {
      display: block;
      padding: 14px 0;
      color: rgba(255,255,255,.7);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mobile-link.active,
    .mobile-link:hover {
      color: #eb1616;
    }

    .chapter-card {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
      cursor: pointer;
    }

    .chapter-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
      transform: scale(1);
      transition: 1s ease;
    }

    .chapter-card:hover img {
      filter: grayscale(0);
      transform: scale(1.08);
    }

    .chapter-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%);
    }

    .chapter-card div {
      position: absolute;
      left: 32px;
      bottom: 30px;
      z-index: 2;
    }

    .chapter-card h3 {
      font-family: Syne, sans-serif;
      font-size: 32px;
      font-weight: 800;
      margin: 0 0 6px;
      color: #fff;
    }

    .chapter-card p {
      color: rgba(255,255,255,.75);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    @media(max-width:768px) {
      .chapter-card div {
        left: 22px;
        bottom: 22px;
      }

      .chapter-card h3 {
        font-size: 24px;
      }

      .chapter-card p {
        font-size: 10px;
      }
    }
    
    /* ==================================
   PORTFOLIO SHOWCASE
=================================== */

.portfolio-showcase {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(235, 22, 22, 0.1),
            transparent 35%
        ),
        #0a0a0a;
}

.portfolio-container {
    width: min(100% - 128px, 1320px);
    margin: 0 auto;
}

.portfolio-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.portfolio-heading-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eb1616;
    box-shadow: 0 0 18px rgba(235, 22, 22, 0.65);
}

.portfolio-heading h2 {
    margin: 0;
    color: #f5f5f5;
    font-family: Syne, sans-serif;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.portfolio-heading h2 span {
    color: #eb1616;
}

.portfolio-heading p {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: Inter, sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

/* Preview image */

.portfolio-preview {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111;
    text-align: left;
    cursor: pointer;
    isolation: isolate;
}

.portfolio-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 1px solid transparent;
    transition: border-color 0.45s ease;
    pointer-events: none;
}

.portfolio-preview:hover::before {
    border-color: #eb1616;
}

.portfolio-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.001);
    filter: saturate(0.8) brightness(0.68);
    transition:
        transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.portfolio-preview:hover img {
    transform: scale(1.055);
    filter: saturate(1) brightness(0.76);
}

.portfolio-preview-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.58) 43%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            transparent 50%
        );
}

.portfolio-preview-content {
    position: absolute;
    inset: auto 48px 48px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
}

.portfolio-small-title {
    display: block;
    margin-bottom: 12px;
    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.portfolio-preview-content h3 {
    margin: 0;
    font-family: Syne, sans-serif;
    font-size: clamp(32px, 4vw, 62px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
}

.portfolio-preview-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: Inter, sans-serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-open-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(235, 22, 22, 0.8);
    color: #eb1616;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    font-size: 28px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.portfolio-preview:hover .portfolio-open-icon {
    color: #fff;
    background: #eb1616;
    transform: rotate(45deg);
}

.portfolio-view-label {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(12px);
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==================================
   PDF POPUP MODAL
=================================== */

.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 26px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.portfolio-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.portfolio-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
}

.portfolio-modal-card {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    padding-top: 110px;
    height: min(90vh, 920px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(235, 22, 22, 0.45);
    background: #101010;
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.8),
        0 0 70px rgba(235, 22, 22, 0.1);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.portfolio-modal.is-open .portfolio-modal-card {
    transform: translateY(0) scale(1);
}

.portfolio-modal-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(14, 14, 14, 0.96);
}

.portfolio-modal-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.portfolio-modal-title span:not(.portfolio-dot) {
    display: block;
    margin-bottom: 3px;
    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.portfolio-modal-title h3 {
    margin: 0;
    color: #fff;
    font-family: Syne, sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.portfolio-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-external-link,
.portfolio-close-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.portfolio-external-link {
    gap: 8px;
    padding: 0 16px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-close-btn {
    width: 44px;
    padding: 0;
    cursor: pointer;
}

.portfolio-external-link:hover,
.portfolio-close-btn:hover {
    color: #fff;
    border-color: #eb1616;
    background: #eb1616;
}

.portfolio-pdf-wrapper {
    position: relative;
    flex: 1;
    min-height: 0;
    background: #1b1b1b;
}

.portfolio-pdf-wrapper iframe {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #202020;
}

.portfolio-pdf-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 14px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.portfolio-pdf-fallback .material-symbols-outlined {
    color: #eb1616;
    font-size: 48px;
}

.portfolio-pdf-fallback p {
    margin: 0;
}

.portfolio-pdf-fallback a {
    padding: 12px 22px;
    border: 1px solid #eb1616;
    color: #eb1616;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-pdf-fallback a:hover {
    color: #fff;
    background: #eb1616;
}

body.portfolio-modal-open {
    overflow: hidden;
}




/* ==================================
   RESPONSIVE
=================================== */

@media (max-width: 900px) {
    .portfolio-showcase {
        padding: 90px 0;
    }

    .portfolio-container {
        width: min(100% - 48px, 1320px);
    }

    .portfolio-preview {
        min-height: 420px;
    }

    .portfolio-preview-content {
        inset: auto 30px 30px;
    }
}

@media (max-width: 600px) {
    .portfolio-showcase {
        padding: 72px 0;
    }

    .portfolio-container {
        width: calc(100% - 36px);
    }

    .portfolio-heading {
        margin-bottom: 32px;
    }

    .portfolio-heading h2 {
        font-size: 42px;
        line-height: 1;
    }

    .portfolio-heading p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .portfolio-preview {
        min-height: 430px;
    }

    .portfolio-preview img {
        object-position: center;
    }

    .portfolio-preview-overlay {
        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.96) 0%,
                rgba(0, 0, 0, 0.4) 70%,
                rgba(0, 0, 0, 0.12) 100%
            );
    }

    .portfolio-preview-content {
        inset: auto 22px 24px;
        align-items: flex-end;
    }

    .portfolio-preview-content h3 {
        font-size: 31px;
    }

    .portfolio-preview-content p {
        max-width: 220px;
        font-size: 11px;
        line-height: 1.6;
    }

    .portfolio-open-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .portfolio-view-label {
        top: 18px;
        right: 18px;
        padding: 10px 12px;
        font-size: 9px;
    }

    .portfolio-modal {
        padding: 0;
    }

    .portfolio-modal-card {
        width: 100%;
        height: 100dvh;
        border: 0;
    }

    .portfolio-modal-header {
        min-height: 68px;
        padding: 12px 12px 12px 16px;
    }

    .portfolio-modal-title h3 {
        max-width: 150px;
        overflow: hidden;
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .portfolio-external-link {
        width: 44px;
        padding: 0;
    }

    .portfolio-external-link span:last-child {
        display: none;
    }
}

.portfolio-floating-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 999999;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 1px solid #eb1616;
    background: rgba(10, 10, 10, 0.95);
    color: #eb1616;

    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
}

.portfolio-floating-close:hover {
    color: #ffffff;
    background: #eb1616;
}

.portfolio-floating-close .material-symbols-outlined {
    font-size: 28px;
}

/* =========================================
   CREATIVE MINDS / CREW CARDS
========================================= */

.crew-grid-section {
    position: relative;
    padding-top: 80px;
}

/* Section heading */

.crew-section-heading {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.crew-heading-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.crew-heading-label span {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #eb1616;
    box-shadow: 0 0 18px rgba(235, 22, 22, 0.75);
}

.crew-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Syne, sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.crew-section-heading h2 strong {
    color: #eb1616;
    font-weight: inherit;
}

.crew-section-heading p {
    max-width: 620px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

/* =========================================
   GRID: 4 + 4 + 2
========================================= */

.crew-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
    align-items: stretch;
}

/* Center the final two cards */

.crew-grid > .crew-card:nth-child(9) {
    grid-column: 2;
}

.crew-grid > .crew-card:nth-child(10) {
    grid-column: 3;
}

/* =========================================
   CARD
========================================= */

.crew-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 500px;
    aspect-ratio: 3 / 4;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.11);
    cursor: pointer;
    outline: none;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.crew-card:hover,
.crew-card:focus-visible,
.crew-card.is-active {
    transform: translateY(-8px);
    border-color: rgba(235, 22, 22, 0.8);

    box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.58),
        0 0 35px rgba(235, 22, 22, 0.12);
}

/* Image */

.crew-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center top;

    filter:
        grayscale(1)
        brightness(0.66)
        contrast(1.08);

    transform: scale(1.025);

    transition:
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.crew-card:hover .crew-card-image,
.crew-card:focus-visible .crew-card-image,
.crew-card.is-active .crew-card-image {
    transform: scale(1.08);

    filter:
        grayscale(0)
        brightness(0.78)
        contrast(1.05);
}

/* Dark overlay */

.crew-card-shade {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.68) 68%,
            rgba(0, 0, 0, 0.98) 100%
        );

    transition: background 0.5s ease;
}

.crew-card:hover .crew-card-shade,
.crew-card:focus-visible .crew-card-shade,
.crew-card.is-active .crew-card-shade {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.04) 28%,
            rgba(0, 0, 0, 0.65) 64%,
            rgba(0, 0, 0, 0.99) 100%
        );
}

/* =========================================
   ROLE FROM TOP
========================================= */

.crew-card-role {
    position: absolute;
    top: 26px;
    left: 26px;
    right: 26px;
    z-index: 3;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;

    margin: 0;
    padding: 0;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(-42px);

    transition:
        opacity 0.48s ease,
        transform 0.48s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.crew-role-divider {
    width: 1px;
    height: 14px;
    display: inline-block;
    background: #eb1616;
}

.crew-card:hover .crew-card-role,
.crew-card:focus-visible .crew-card-role,
.crew-card.is-active .crew-card-role {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   CONTENT FROM BOTTOM
========================================= */

.crew-card-content {
    position: absolute;
    left: 26px;
    right: 18px;
    bottom: 26px;
    z-index: 3;

    width: auto;
    margin: 0;
    padding: 0;

    opacity: 0;
    transform: translateY(90px);

    transition:
        opacity 0.56s ease 0.05s,
        transform 0.56s cubic-bezier(0.2, 0.75, 0.2, 1) 0.05s;
}

.crew-card:hover .crew-card-content,
.crew-card:focus-visible .crew-card-content,
.crew-card.is-active .crew-card-content {
    opacity: 1;
    transform: translateY(0);
}

.crew-card-number {
    display: block;
    margin: 0 0 9px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

/* Name */

.crew-card-content h3 {
    max-width: 100%;
    margin: 0;

    color: #ffffff;
    font-family: Syne, sans-serif;

    font-size: 18px;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.015em;

    text-transform: uppercase;

    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
}

/* Description */

.crew-card-content p {
    display: -webkit-box;
    overflow: hidden;

    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.7);
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.6;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* Link */

.crew-card-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 18px;
    padding-bottom: 5px;

    color: #eb1616;
    border-bottom: 1px solid #eb1616;

    font-family: Inter, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.crew-card-link:hover {
    gap: 12px;
    color: #ffffff;
}

/* Bottom red line */

.crew-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;

    width: 0;
    height: 3px;

    background: #eb1616;

    transition: width 0.55s ease;
}

.crew-card:hover::after,
.crew-card:focus-visible::after,
.crew-card.is-active::after {
    width: 100%;
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1280px) {
    .crew-grid {
        column-gap: 28px;
        row-gap: 52px;
    }

    .crew-card {
        min-height: 510px;
    }

    .crew-card-content h3 {
        font-size: 18px;
    }
}

/* =========================================
   SMALL DESKTOP
========================================= */

@media (max-width: 1300px) and (min-width: 1101px) {
    .crew-card-content h3 {
        font-size: 16px;
    }

    .crew-card-content {
        left: 22px;
        right: 12px;
        bottom: 24px;
    }

    .crew-card-role {
        left: 22px;
        right: 22px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .crew-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 32px;
    }

    .crew-grid > .crew-card:nth-child(9),
    .crew-grid > .crew-card:nth-child(10) {
        grid-column: auto;
    }

    .crew-card {
        min-height: 520px;
    }

    .crew-card-content h3 {
        font-size: 21px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {
    .crew-grid-section {
        padding-top: 55px;
    }

    .crew-section-heading {
        margin-bottom: 55px;
    }

    .crew-section-heading h2 {
        font-size: 43px;
    }

    .crew-section-heading p {
        font-size: 14px;
    }

    .crew-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .crew-card {
        min-height: 480px;
        aspect-ratio: 3 / 4;
    }

    .crew-card:hover,
    .crew-card:focus-visible,
    .crew-card.is-active {
        transform: none;
    }

    .crew-card-role {
        top: 22px;
        left: 22px;
        right: 22px;
    }

    .crew-card-content {
        left: 22px;
        right: 16px;
        bottom: 24px;
    }

    .crew-card-content h3 {
        font-size: 21px;
    }
}

/* =========================================================
   FINAL MOBILE RESPONSIVE SAFETY PATCH
   Keeps desktop layouts unchanged and normalizes mobile pages.
========================================================= */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    body {
        min-width: 320px;
        overflow-x: hidden;
    }

    img,
    video,
    iframe,
    canvas,
    svg {
        max-width: 100%;
    }

    /* Common horizontal page rhythm without overriding every section. */
    .px-margin-desktop,
    .page-x,
    .section-container,
    .content-container,
    .max-w-container-max {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Readable paragraphs on small screens. */
    main p:not(.award-title):not(.award-year):not(.project-label):not(.font-label-sm):not(.font-label-lg),
    .footer-brand p,
    .about-content p,
    .spotlight-text,
    .hero-description,
    .documentary-intro p,
    .documentary-process p,
    .commercial-section p,
    .film-section p,
    .crew-intro p {
        text-align: justify;
        text-align-last: left;
        text-justify: inter-word;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: normal;
    }

    /* Labels, navigation and card metadata should never be justified. */
    nav p,
    footer h4,
    
    .crew-card p,
    .chapter-card p,
    .portfolio-preview-content p,
    .font-label-sm,
    .font-label-lg,
    .project-label,
    .award-title {
        text-align: left;
        text-align-last: auto;
        hyphens: none;
    }
    .award-card p{
        text-align: center;
        text-align-last: auto;
        hyphens: none; 
    }

    /* Shared hero safety: preserve each page artwork while preventing clipping. */
    .film-hero,
    .documentary-hero,
    .commercial-hero,
    .crew-hero,
    .omega-hero,
    .contact-hero,
    .music-hero,
    .hub-hero {
        width: 100%;
        min-height: 100svh;
        overflow: hidden;
    }

    .film-hero img,
    .documentary-hero img,
    .commercial-hero img,
    .crew-hero img,
    .omega-hero img,
    .contact-hero img,
    .music-hero img,
    .hub-hero img {
        max-width: none;
    }

    /* Avoid oversized headings escaping narrow screens. */
    .film-hero h1,
    .documentary-hero h1,
    .documentary-hero h2,
    .commercial-hero h1,
    .crew-hero h1,
    .omega-hero h1,
    .contact-hero-title,
    .music-hero h1,
    .hub-hero h1 {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
    }

    /* Cards and media grids. */
    .craft-grid,
    .documentary-gallery-grid,
    .commercial-craft-grid,
    .music-gallery-grid,
    .spotlight-grid,
    .service-grid {
        width: 100%;
    }

    /* Footer: one readable column on phones. */
    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand,
    .footer-contact,
    .footer-column {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-brand {
        padding: 34px 26px;
    }

    .footer-brand h3 {
        font-size: clamp(32px, 12vw, 44px);
        white-space: normal;
    }

    .footer-column p,
    .footer-column a {
        font-size: 14px;
        line-height: 1.7;
    }

    /* PDF viewer header remains visible. */
    .portfolio-modal-card {
        padding-top: 0;
    }

    .portfolio-modal-header {
        position: relative;
        z-index: 10;
        flex: 0 0 auto;
    }

    .portfolio-pdf-wrapper {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .px-margin-desktop,
    .page-x,
    .section-container,
    .content-container,
    .max-w-container-max {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .footer-container {
        width: calc(100% - 32px);
    }

    .mobile-menu {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   DOCUMENTARY HERO MOBILE TEXT FIX
========================================= */
@media (max-width: 768px) {
    .documentary-hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 96px 18px 56px !important;
        overflow: hidden;
        text-align: center;
    }

    .documentary-hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        transform: none !important;
    }

    .documentary-hero h1,
    .documentary-hero h2 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto !important;
        padding: 0 4px;
        font-size: clamp(30px, 10.5vw, 42px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.035em !important;
        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        transform: none !important;
    }

    .documentary-hero h1 span,
    .documentary-hero h2 span {
        display: block;
        width: 100%;
        margin-top: 3px;
        color: #eb1616;
    }

    .documentary-hero .hero-line,
    .documentary-hero .documentary-title-line {
        width: 78px;
        height: 3px;
        margin: 16px auto 0;
        background: #eb1616;
    }

    .documentary-hero p {
        max-width: 300px;
        margin: 20px auto 0;
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }

    .documentary-hero img,
    .documentary-hero-bg img {
        object-position: center center !important;
    }
}

@media (max-width: 430px) {
    .documentary-hero h1,
    .documentary-hero h2 {
        font-size: 30px !important;
        line-height: 1 !important;
    }

    .documentary-hero-content {
        max-width: 300px;
    }
}

/* =========================================
   COMMERCIALS HERO MOBILE FIX
========================================= */
@media (max-width: 768px) {
    .commercial-hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 18px 60px !important;
        overflow: hidden;
        text-align: center;
    }

    .commercial-hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        transform: none !important;
    }

    .commercial-hero .eyebrow,
    .commercial-hero .hero-label {
        justify-content: center;
        margin-bottom: 14px;
        font-size: 9px !important;
        line-height: 1.4 !important;
        letter-spacing: 0.28em !important;
        text-align: center !important;
    }

    .commercial-hero h1,
    .commercial-hero h2 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto !important;
        padding: 0 2px;
        font-size: clamp(28px, 10vw, 40px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.03em !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        transform: none !important;
    }

    .commercial-hero h1 span,
    .commercial-hero h2 span {
        display: block;
        width: 100%;
        margin-top: 4px;
        color: #eb1616;
    }

    .commercial-hero .hero-line,
    .commercial-hero .commercial-title-line {
        width: 76px;
        height: 3px;
        margin: 16px auto 0;
        background: #eb1616;
    }

    .commercial-hero p {
        width: 100%;
        max-width: 300px;
        margin: 18px auto 0;
        padding: 0 4px;
        font-size: 13px !important;
        line-height: 1.7 !important;
        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }

    .commercial-hero img,
    .commercial-hero-bg img {
        object-position: center center !important;
    }
}

@media (max-width: 430px) {
    .commercial-hero-content {
        max-width: 300px;
    }

    .commercial-hero h1,
    .commercial-hero h2 {
        font-size: 29px !important;
        line-height: 1 !important;
    }

    .commercial-hero p {
        max-width: 270px;
        font-size: 12px !important;
    }
}

/* =========================================
   EVENT POPUP TRIGGERS
========================================= */

.event-popup-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 0 0 16px;

    color: #ffffff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    text-align: left;
    cursor: pointer;

    transition:
        color 0.35s ease,
        border-color 0.35s ease;
}

.event-popup-trigger:hover,
.event-popup-trigger:focus-visible {
    color: #eb1616;
    border-color: #eb1616;
    outline: none;
}

.event-popup-trigger .event-arrow {
    transition: transform 0.35s ease;
}

.event-popup-trigger:hover .event-arrow,
.event-popup-trigger:focus-visible .event-arrow {
    transform: translateX(8px);
}

/* =========================================
   EVENT GALLERY MODAL
========================================= */

.event-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 26px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.event-gallery-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.event-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;

    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(14px);
}

.event-modal-card {
    position: relative;
    z-index: 1;

    width: min(1180px, 100%);
    max-height: 90vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #101010;
    border: 1px solid rgba(235, 22, 22, 0.55);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.85),
        0 0 55px rgba(235, 22, 22, 0.12);

    transform: translateY(30px) scale(0.98);

    transition: transform 0.4s ease;
}

.event-gallery-modal.is-open .event-modal-card {
    transform: translateY(0) scale(1);
}

/* Modal header */

.event-modal-header {
    min-height: 76px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 15px 18px 15px 26px;

    background: #0c0c0c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-modal-label {
    display: block;
    margin-bottom: 4px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.event-modal-header h3 {
    margin: 0;

    color: #ffffff;
    font-family: Syne, sans-serif;
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.event-modal-close {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #eb1616;
    background: #151515;
    border: 1px solid #eb1616;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.event-modal-close:hover {
    color: #ffffff;
    background: #eb1616;
    transform: rotate(90deg);
}

/* Scrollable body */

.event-modal-body {
    overflow-y: auto;
    padding: 22px;

    scrollbar-width: thin;
    scrollbar-color: #eb1616 #1a1a1a;
}

/* Gallery layout */

.event-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 16px;
}

.event-gallery-image {
    position: relative;
    margin: 0;
    overflow: hidden;

    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.event-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    filter:
        grayscale(1)
        brightness(0.72);

    transform: scale(1.01);

    transition:
        transform 0.8s ease,
        filter 0.7s ease;
}

.event-gallery-image:hover img {
    transform: scale(1.08);

    filter:
        grayscale(0)
        brightness(0.84);
}

.event-gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            transparent 55%
        );

    pointer-events: none;
}

.event-gallery-image figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;

    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    transform: translateY(15px);
    opacity: 0;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.event-gallery-image:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

body.event-modal-open {
    overflow: hidden;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
    .event-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }

    .event-gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {
    .event-popup-trigger {
        gap: 12px;
    }

    .event-popup-trigger > span:nth-child(2) {
        font-size: 10px;
        line-height: 1.5;
    }

    .event-gallery-modal {
        padding: 0;
    }

    .event-modal-card {
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border: 0;
    }

    .event-modal-header {
        min-height: 66px;
        padding: 10px 10px 10px 16px;
    }

    .event-modal-header h3 {
        max-width: 230px;
        font-size: 16px;
    }

    .event-modal-close {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .event-modal-body {
        padding: 12px;
    }

    .event-image-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 270px;
        gap: 12px;
    }

    .event-gallery-large {
        grid-column: auto;
        grid-row: auto;
    }

    .event-gallery-image figcaption {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   AWARD IMAGE GALLERY
========================================= */

.award-gallery-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(235, 22, 22, 0.09),
            transparent 34%
        ),
        #080808;
}

.award-gallery-container {
    width: min(calc(100% - 128px), 1320px);
    margin: 0 auto;
}

/* Heading */

.award-gallery-heading {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.award-gallery-label {
    display: block;
    margin-bottom: 16px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.award-gallery-heading h2 {
    margin: 0;

    color: #ffffff;
    font-family: Syne, sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.award-gallery-heading h2 span {
    color: #eb1616;
}

.award-gallery-heading p {
    max-width: 620px;
    margin: 22px auto 0;

    color: rgba(255, 255, 255, 0.62);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

/* Gallery grid */

.award-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Award card */

.award-image-card {
    position: relative;
    min-height: 390px;
    margin: 0;
    overflow: hidden;

    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);

    isolation: isolate;
    cursor: pointer;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.award-image-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 22, 22, 0.75);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.5),
        0 0 32px rgba(235, 22, 22, 0.12);
}

/* Image */

.award-image-card img {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        grayscale(1)
        brightness(0.66)
        contrast(1.05);

    transform: scale(1.01);

    transition:
        transform 0.9s ease,
        filter 0.7s ease;
}

.award-image-card:hover img {
    transform: scale(1.07);

    filter:
        grayscale(0)
        brightness(0.78)
        contrast(1.05);
}

/* Dark overlay */

.award-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.55) 42%,
            rgba(0, 0, 0, 0.06) 75%
        );
}

/* Red bottom line */

.award-image-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;

    width: 0;
    height: 3px;

    background: #eb1616;

    transition: width 0.5s ease;
}

.award-image-card:hover::after {
    width: 100%;
}

/* Caption */

.award-image-card figcaption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;

    transform: translateY(14px);
    transition: transform 0.45s ease;
}

.award-image-card:hover figcaption {
    transform: translateY(0);
}

.award-image-card figcaption > span {
    display: block;
    margin-bottom: 8px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.award-image-card h3 {
    margin: 0;

    color: #ffffff;
    font-family: Syne, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.award-image-card p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.62);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
    .award-gallery-container {
        width: min(calc(100% - 48px), 1320px);
    }

    .award-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {
    .award-gallery-section {
        padding: 78px 0;
    }

    .award-gallery-container {
        width: calc(100% - 36px);
    }

    .award-gallery-heading {
        margin-bottom: 42px;
    }

    .award-gallery-heading h2 {
        font-size: 38px;
        line-height: 1;
    }

    .award-gallery-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .award-image-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .award-image-card {
        min-height: 360px;
    }

    .award-image-card figcaption {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .award-image-card h3 {
        font-size: 20px;
    }
}

/* =========================================
   OMEGA MAKING GALLERY — CLEAN ALIGNMENT
========================================= */

.omega-gallery {
    overflow: hidden;
}

.omega-gallery-header {
    width: 100%;
    align-items: flex-end;
}

.omega-gallery-header > div:first-child {
    width: 100%;
    max-width: 760px;
}

.omega-gallery-header p {
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Main mosaic */

.omega-gallery-layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 310px);
    gap: 16px;
}

.omega-gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.omega-gallery-wide {
    grid-column: span 2;
}

/* Extra row */

.omega-extra-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.omega-extra-gallery .omega-gallery-card {
    aspect-ratio: 16 / 9;
    min-height: 250px;
}

/* Common card */

.omega-gallery-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.11);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.omega-gallery-card:hover {
    z-index: 2;
    border-color: rgba(235, 22, 22, 0.75);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(235, 22, 22, 0.14);
}

/* Image */

.omega-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        grayscale(0.8)
        brightness(0.72)
        contrast(1.05);

    transform: scale(1.01);

    transition:
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.omega-gallery-card:hover img {
    transform: scale(1.07);

    filter:
        grayscale(0)
        brightness(0.84)
        contrast(1.03);
}

/* Overlay */

.omega-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.34) 42%,
            transparent 72%
        );

    pointer-events: none;
}

.omega-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    padding: 26px;

    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.omega-gallery-card:hover .omega-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.omega-gallery-overlay span {
    display: block;
    margin-bottom: 7px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.omega-gallery-overlay h4 {
    margin: 0;

    color: #fff;
    font-family: Syne, sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
    .omega-gallery-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, 300px);
    }

    .omega-gallery-feature {
        grid-column: span 2;
        grid-row: span 1;
    }

    .omega-gallery-wide {
        grid-column: span 2;
    }

    .omega-extra-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .omega-extra-gallery .omega-gallery-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        justify-self: center;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
    .omega-gallery {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .omega-gallery-header {
        display: block !important;
        margin-bottom: 42px !important;
    }

    .omega-gallery-header > div:first-child {
        max-width: none;
    }

    .omega-gallery-header h3 {
        font-size: 36px !important;
        line-height: 1.05 !important;
    }

    .omega-gallery-header p {
        font-size: 15px !important;
        line-height: 1.75 !important;
        text-align: left;
    }

    .omega-gallery-header > div:last-child {
        margin-top: 24px;
        justify-content: flex-start;
    }

    .omega-gallery-layout {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .omega-gallery-feature,
    .omega-gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .omega-gallery-card {
        min-height: 300px;
        aspect-ratio: 4 / 3;
    }

    .omega-gallery-feature {
        min-height: 410px;
        aspect-ratio: 3 / 4;
    }

    .omega-extra-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .omega-extra-gallery .omega-gallery-card,
    .omega-extra-gallery .omega-gallery-card:last-child {
        grid-column: auto;
        width: 100%;
        min-height: 280px;
        aspect-ratio: 4 / 3;
    }

    .omega-gallery-overlay {
        padding: 22px;
        opacity: 1;
        transform: translateY(0);
    }

    .omega-gallery-overlay h4 {
        font-size: 20px;
    }
}

/* =========================================
   OMEGA AUDIO LAUNCH
========================================= */

.omega-audio-launch {
    overflow: hidden;
}

/* Heading */

.omega-audio-heading {
    margin-bottom: 72px;
}

.omega-audio-heading h3 {
    margin: 0;
    line-height: 1.05;
}

.omega-audio-heading-line {
    width: 128px;
    height: 4px;
    margin: 20px auto 0;
    background: #eb1616;
}

/* Gallery */

.omega-audio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card */

.omega-audio-card {
    position: relative;
    aspect-ratio: 16 / 10;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    isolation: isolate;

    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.omega-audio-card:hover {
    transform: translateY(-7px);
    border-color: rgba(235, 22, 22, 0.8);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.52),
        0 0 30px rgba(235, 22, 22, 0.14);
}

/* Image */

.omega-audio-card img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        grayscale(0.85)
        brightness(0.7)
        contrast(1.05);

    transform: scale(1.01);

    transition:
        transform 0.85s ease,
        filter 0.7s ease;
}

.omega-audio-card:hover img {
    transform: scale(1.08);

    filter:
        grayscale(0)
        brightness(0.82)
        contrast(1.03);
}

/* Dark gradient */

.omega-audio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.35) 42%,
            transparent 72%
        );

    pointer-events: none;
}

/* Caption */

.omega-audio-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    padding: 24px;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.omega-audio-card:hover .omega-audio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.omega-audio-overlay span {
    display: block;
    margin-bottom: 7px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.omega-audio-overlay h4 {
    margin: 0;

    color: #fff;
    font-family: Syne, sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

/* Tablet */

@media (max-width: 1000px) {
    .omega-audio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .omega-audio-launch {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .omega-audio-heading {
        margin-bottom: 44px;
    }

    .omega-audio-heading h3 {
        font-size: 35px !important;
        line-height: 1.08 !important;
        letter-spacing: 0.03em !important;
    }

    .omega-audio-heading-line {
        width: 90px;
        height: 3px;
        margin-top: 16px;
    }

    .omega-audio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .omega-audio-card {
        aspect-ratio: 4 / 3;
        min-height: 280px;
    }

    .omega-audio-overlay {
        padding: 20px;
        opacity: 1;
        transform: translateY(0);
    }

    .omega-audio-overlay h4 {
        font-size: 19px;
    }
}

/* =========================================
   COMMERCIAL VIDEO SHOWCASE
========================================= */

.commercial-video-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(235, 22, 22, 0.08),
            transparent 34%
        ),
        #0b0b0b;
}

/* Heading */

.commercial-video-heading {
    max-width: 780px;
    margin-bottom: 64px;
}

.commercial-video-label {
    margin: 0 0 14px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.commercial-video-heading h2 {
    margin: 0;
    line-height: 1;
}

.commercial-video-description {
    max-width: 650px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.65);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

/* Main player */

.commercial-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(235, 22, 22, 0.08);
}

/* Thumbnail */

.commercial-video-thumbnail {
    position: absolute;
    inset: 0;
    z-index: 2;

    overflow: hidden;
    cursor: pointer;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.commercial-video-thumbnail.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.commercial-video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        grayscale(0.75)
        brightness(0.68);

    transform: scale(1.01);

    transition:
        transform 1s ease,
        filter 0.7s ease;
}

.commercial-video-thumbnail:hover img {
    transform: scale(1.05);

    filter:
        grayscale(0.25)
        brightness(0.76);
}

.commercial-video-dark-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.18) 55%,
            rgba(0, 0, 0, 0.25)
        );
}

/* Play button */

.commercial-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;

    width: 92px;
    height: 92px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #ffffff;
    background: rgba(235, 22, 22, 0.92);
    border: 1px solid #eb1616;
    border-radius: 50%;

    cursor: pointer;

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 0 12px rgba(235, 22, 22, 0.1),
        0 18px 45px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.commercial-video-play:hover {
    background: #eb1616;

    transform:
        translate(-50%, -50%)
        scale(1.08);

    box-shadow:
        0 0 0 18px rgba(235, 22, 22, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.5);
}

.commercial-video-play .material-symbols-outlined {
    margin-left: 5px;
    font-size: 48px;
}

/* Bottom content */

.commercial-video-thumbnail-content {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 38px;
    z-index: 3;
}

.commercial-video-thumbnail-content span {
    display: block;
    margin-bottom: 10px;

    color: #eb1616;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.commercial-video-thumbnail-content h3 {
    max-width: 700px;
    margin: 0;

    color: #ffffff;
    font-family: Syne, sans-serif;
    font-size: clamp(25px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

/* Video */

.commercial-video-element {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    background: #000000;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
    .commercial-video-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .commercial-video-heading {
        margin-bottom: 42px;
    }

    .commercial-video-heading h2 {
        font-size: 37px !important;
        line-height: 1.04 !important;
    }

    .commercial-video-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .commercial-video-player {
        aspect-ratio: 16 / 10;
    }

    .commercial-video-play {
        width: 68px;
        height: 68px;

        box-shadow:
            0 0 0 9px rgba(235, 22, 22, 0.1),
            0 14px 35px rgba(0, 0, 0, 0.45);
    }

    .commercial-video-play .material-symbols-outlined {
        font-size: 38px;
    }

    .commercial-video-thumbnail-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .commercial-video-thumbnail-content h3 {
        max-width: 230px;
        font-size: 23px;
    }
}

/* Smaller centered video card */

.commercial-video-player {
    position: relative;

    width: min(900px, 100%);
    aspect-ratio: 16 / 9;

    margin: 0 auto;

    overflow: hidden;

    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(235, 22, 22, 0.08);
}

/* Video */

.commercial-video-element {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;

    background: #000;
}

/* Close button */

.commercial-video-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;

    width: 44px;
    height: 44px;

    display: none;
    place-items: center;

    padding: 0;

    color: #eb1616;
    background: rgba(8, 8, 8, 0.88);
    border: 1px solid #eb1616;
    border-radius: 50%;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.commercial-video-close.is-visible {
    display: grid;
}

.commercial-video-close:hover {
    color: #ffffff;
    background: #eb1616;
    transform: rotate(90deg);
}

.commercial-video-close .material-symbols-outlined {
    font-size: 25px;
}

/* Thumbnail must stay above video before playing */

.commercial-video-thumbnail {
    position: absolute;
    inset: 0;
    z-index: 3;

    overflow: hidden;
    cursor: pointer;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.commercial-video-thumbnail.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Tablet */

@media (max-width: 1024px) {
    .commercial-video-player {
        width: min(760px, 100%);
    }
}

/* Mobile */

@media (max-width: 768px) {
    .commercial-video-player {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .commercial-video-close {
        top: 10px;
        right: 10px;

        width: 40px;
        height: 40px;
    }
}

/* =========================================
   GLOBAL SCROLL REVEAL
========================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(55px);

    transition:
        opacity 1.3s ease,
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: opacity, transform;
}

/* Visible state */
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional stagger delays */

.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.4s;
}

/* Mobile — slightly smaller movement */

@media (max-width: 768px) {
    .scroll-reveal {
        transform: translateY(35px);

        transition-duration: 1.1s;
    }

    .scroll-reveal.is-visible {
        transform: translateY(0);
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}