:root {
  --color-bg: #0a0a0a;
  --color-text: #e5e2e1;
  --color-muted: #c4c7c8;
  --color-red: #eb1616;
  --color-green: #0d6b68;
  --color-blue: #004aad;
  --max-width: 1440px;
  --page-x: clamp(20px, 5vw, 64px);
  --nav-height: 78px;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
}

.page-x {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

/* NAVBAR */
#site-navbar,
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: 0.35s ease;
}

#site-navbar.scrolled,
.site-navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1400px;
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.navbar-logo {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 7px;
  height: 7px;
  background: var(--color-red);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  background: transparent;
  border: 1px solid rgba(235, 22, 22, 0.65);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
}

/* HERO */
.page-main {
  padding-top: var(--nav-height);
}

.hub-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vh, 110px) var(--page-x);
  overflow: hidden;
  background: var(--color-bg);
}

.hub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(235, 22, 22, 0.2),
      transparent 35%
    ),
    linear-gradient(
      90deg,
      #080808 0%,
      #080808 43%,
      #0b0808 63%,
      #230303 100%
    );
}

.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 1) 0%,
    rgba(8, 8, 8, 0.98) 31%,
    rgba(8, 8, 8, 0.78) 47%,
    rgba(8, 8, 8, 0.18) 68%,
    transparent 100%
  );
}

.hub-hero-image {
  position: absolute;
  top: 50%;
  right: clamp(-130px, -5vw, -40px);
  z-index: -2;
  width: clamp(610px, 57vw, 900px);
  max-width: none;
  min-width: 0;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transform: translateY(-48%);
  filter:
    drop-shadow(0 35px 60px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 35px rgba(235, 22, 22, 0.09));
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 7%,
    black 18%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 7%,
    black 18%
  );
  will-change: transform;
}

.hub-hero-content {
  position: relative;
  z-index: 3;
  width: min(50%, 720px);
  max-width: 720px;
  padding: 20px 0;
  will-change: transform, opacity;
}

.hub-hero-tags {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.hub-hero-tags span,
.hub-hero-tags i {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--color-red);
  border-radius: 50%;
}

.hub-hero-tags p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hub-hero-content h1 {
  max-width: 100%;
  margin: 0;
  color: #f5f5f5;
  font-family: Syne, sans-serif;
  font-size: clamp(58px, 6.8vw, 104px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hub-hero-content h1 span {
  color: var(--color-red);
}

.hub-hero-line {
  width: 90px;
  height: 3px;
  margin: 38px 0 28px;
  background: var(--color-red);
}

.hub-hero-text,
.hub-hero-content p {
  max-width: 500px;
  margin: 0;
  color: #cfcfcf;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.75;
  font-weight: 400;
}

.hub-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(10, 10, 10, 0.8)
  );
}

.hub-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 4;
  transform: translateX(-50%);
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.hub-scroll-indicator div {
  margin-top: 8px;
  color: var(--color-red);
  animation: hubBounce 2s infinite;
}

/* SERVICE CARDS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 90px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.45s ease;
}

.service-card {
  min-height: 430px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card:nth-child(2) {
  transition-delay: 0.25s;
}

.service-card:nth-child(3) {
  transition-delay: 0.4s;
}

.service-title,
.spotlight-title {
  font-family: Syne, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 700;
  color: #fff;
}

.service-text,
.spotlight-text {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.8;
}

.film-glow:hover {
  border-color: rgba(235, 22, 22, 0.5);
  box-shadow: 0 0 60px -10px rgba(235, 22, 22, 0.3);
}

.shooting-glow:hover {
  border-color: rgba(13, 107, 104, 0.5);
  box-shadow: 0 0 60px -10px rgba(13, 107, 104, 0.3);
}

.music-glow:hover {
  border-color: rgba(0, 74, 173, 0.5);
  box-shadow: 0 0 60px -10px rgba(0, 74, 173, 0.3);
}

.recording-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s infinite;
}

.studio-btn {
  position: relative;
  width: fit-content;
  margin-top: 48px;
  padding: 16px 32px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.4s ease;
}

.studio-btn span {
  position: relative;
  z-index: 1;
}

.studio-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
}

.studio-btn:hover {
  color: #fff;
}

.studio-btn:hover::before {
  transform: translateY(0);
}

.red-btn {
  color: var(--color-red);
}

.green-btn {
  color: var(--color-green);
}

.blue-btn {
  color: var(--color-blue);
}

.red-btn::before {
  background: var(--color-red);
}

.green-btn::before {
  background: var(--color-green);
}

.blue-btn::before {
  background: var(--color-blue);
}

/* SPOTLIGHT */
.spotlight-section {
  margin-top: clamp(72px, 9vw, 128px);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.spotlight-image-content {
  padding: clamp(28px, 3vw, 48px);
}

.project-label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-title {
  margin: 0;
  color: #fff;
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.spotlight-card {
  padding: clamp(32px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MISSION CARD */
.mission-card {
  position: relative;
  overflow: hidden;
  padding: 56px 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s ease;
}

.mission-card:hover {
  border-color: rgba(235, 22, 22, 0.55);
  box-shadow: 0 0 35px rgba(235, 22, 22, 0.18);
}

.mission-block,
.vision-section {
  position: relative;
  z-index: 2;
}

.mission-card .spotlight-title,
.vision-title {
  color: #fff;
  font-family: Syne, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 24px;
}

.spotlight-title::after,
.vision-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  margin-top: 14px;
  background: var(--color-red);
}

.vision-title {
  text-align: right;
  padding-right: 10px;
}

.vision-title::after {
  margin-left: auto;
}

.mission-card .spotlight-text {
  color: #b8b8b8;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
}

.vision-section {
  margin-top: 70px;
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 80px 0;
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  color: #fff;
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.footer-brand-block p {
  max-width: 320px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.6;
}

.footer-links-block h5,
.session-status span:last-child {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links-block nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-links-block a {
  color: var(--color-muted);
  transition: 0.3s ease;
}

.footer-links-block a:hover {
  color: var(--color-red);
}

.footer-status-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
}

.session-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright {
  margin-top: 32px;
  color: var(--color-muted);
  opacity: 0.4;
}

/* ANIMATIONS */
.cinematic-fade-in {
  animation: fadeIn 1.3s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes hubBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    position: static;
    margin-left: auto;
  }

  .nav-container {
    padding: 0 24px;
  }

  .mobile-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(8, 8, 8, 0.98);
    border-top: 1px solid transparent;
    transition: 0.35s ease;
  }

  .mobile-menu.open {
    max-height: 320px;
    opacity: 1;
    padding: 14px 0;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .mobile-link {
    display: block;
    padding: 15px 24px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-link:hover,
  .mobile-link.active {
    color: var(--color-red);
  }

  .service-grid,
  .spotlight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 360px;
  }

  .footer-status-block {
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }

.hub-hero {
    min-height: 720px;
    padding: 90px clamp(28px, 5vw, 48px);
  }

  .hub-hero-content {
    width: 58%;
    max-width: 580px;
  }

  .hub-hero-content h1 {
    font-size: clamp(56px, 7.7vw, 78px);
  }

  .hub-hero-image {
    right: -22%;
    width: clamp(620px, 78vw, 800px);
    opacity: 0.78;
    transform: translateY(-47%);
  }

  .hub-hero::before {
    background: linear-gradient(
      90deg,
      rgba(8, 8, 8, 1) 0%,
      rgba(8, 8, 8, 0.95) 38%,
      rgba(8, 8, 8, 0.62) 59%,
      transparent 100%
    );
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 76px;
    --page-x: 24px;
  }

  #site-navbar,
  .site-navbar {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-container {
    height: var(--nav-height);
    padding: 0 22px;
  }

  .navbar-logo {
    width: 160px;
  }

  .mobile-menu-btn {
    width: 46px;
    height: 46px;
  }

  .page-main {
    padding-top: var(--nav-height);
  }

  /* =========================================
     Mobile Hero
  ========================================= */

  .hub-hero {
    position: relative;

    min-height: calc(100vh - var(--nav-height));

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

    padding: 70px 22px;

    text-align: center;
    overflow: hidden;

    background: #050505;
  }

  /* Hide the camera image completely */
  .hub-hero-image {
    display: none;
  }

  /* Gradient background */
  .hub-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
      radial-gradient(
        circle at 50% 30%,
        rgba(235, 22, 22, 0.28),
        transparent 34%
      ),
      radial-gradient(
        circle at 50% 70%,
        rgba(235, 22, 22, 0.12),
        transparent 48%
      ),
      linear-gradient(
        180deg,
        #050505 0%,
        #090909 48%,
        #130202 100%
      );
  }

  /* Soft shadow behind the content */
  .hub-hero::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;

    width: 420px;
    height: 420px;

    background: rgba(235, 22, 22, 0.12);
    border-radius: 50%;

    filter: blur(100px);

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

    pointer-events: none;
  }

  /* Bottom dark fade */
  .hub-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    height: 140px;

    background:
      linear-gradient(
        to bottom,
        transparent,
        rgba(5, 5, 5, 0.95)
      );

    pointer-events: none;
  }

  .hub-hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 520px;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0 auto;
    padding: 0;
  }

.hub-hero-content h1 {
    width: 100%;
    margin: 0;

    color: #f5f5f5;

    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.045em;

    text-align: center;
  }

  .hub-hero-content h1 span {
    color: var(--color-red);
  }

  .hub-hero-line {
    width: 76px;
    height: 3px;

    margin: 30px auto 24px;

    background: var(--color-red);
  }

  .hub-hero-content p,
  .hub-hero-text {
    max-width: 390px;
    margin: 0;

    color: #c7c7c7;

    font-size: 15px;
    line-height: 1.75;

    text-align: center;
  }

  .hub-scroll-indicator {
    display: none;
  }

  .service-grid {
    padding-top: 70px;
    gap: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 34px 28px;
  }

  .studio-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .spotlight-section {
    margin-top: 80px;
  }

  .spotlight-grid {
    gap: 22px;
  }

  .spotlight-section article:first-child {
    min-height: 260px !important;
    aspect-ratio: 1 / 1;
  }

  .project-title {
    font-size: 24px;
    line-height: 1.15;
    white-space: normal;
  }

  .spotlight-image-content {
    padding: 28px;
  }

  .mission-card {
    padding: 38px 28px;
    text-align: left;
  }

  .mission-card .spotlight-title,
  .vision-title {
    font-size: 36px;
  }

  .mission-card .spotlight-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .vision-section {
    margin-top: 48px;
  }

  .vision-title {
    text-align: right;
    padding-right: 0;
  }

  .vision-title::after {
    width: 90px;
  }

  .site-footer {
    padding: 56px 0;
  }
}

/* ================================
   HUB FOOTER
================================ */

.hub-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px 0 20px; /* reduced */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
}

/* Left */
.footer-about h3 {
    margin: 0 0 25px;

    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-about p {
    max-width: 390px;
    margin: 0;

    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    line-height: 1.8;
}

/* Headings */
.footer-links h4,
.footer-social h4 {
    margin: 0 0 22px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Navigation */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;

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

.footer-links a:hover {
    color: #eb1616;
    transform: translateX(4px);
}

/* Social */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;
}

.footer-social a i {
    width: 18px;
    text-align: center;

    font-size: 16px;
    color: #eb1616;

    transition: transform 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social a:hover i {
    transform: scale(1.15);
}

/* Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 25px 40px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;

    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    letter-spacing: 0.2em;
}


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

@media (max-width: 768px) {

    .hub-footer {
        padding: 40px 0 18px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 25px;
    }

    .footer-about h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .footer-about p {
        font-size: 14px;
    }

    .footer-links,
    .footer-social {
        gap: 12px;
    }

    .footer-links h4,
    .footer-social h4 {
        margin-bottom: 8px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 20px 20px 0;

        font-size: 10px;
        letter-spacing: 0.12em;
    }
}