/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg-black: #080808;
  --bg-dark: #111111;
  --bg-mid: #1a1a1a;
  --bg-maroon: #6B1212;
  --bg-maroon-deep: #4A0D0D;
  --accent-red: #CF393E;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #888888;

  /* Single source of truth for the cinematic frame border */
  --frame-border: 1px solid rgba(255, 255, 255, 0.42);
  --frame-corner-color: rgba(255, 255, 255, 0.16);
  --frame-inset: 16px;

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: 0.3s ease;
  --max-w: 1200px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Inter-section gap */
section {
  margin-bottom: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--accent-red);
}

.project-title-link {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.project-title-link:hover {
  transform: translateX(4px);
  color: var(--accent-red);
}

.mv-inline-link {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.mv-inline-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent-red);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.eyebrow--red {
  color: var(--accent-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-black);
}

.btn-primary:hover {
  background: #e8e8e8;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:active {
  transform: scale(0.98);
}

/* ============================================================
   NAVIGATION
   — Sits at the same inset as the hero frame (var(--frame-inset))
   — Uses identical border weight + colour so it looks like part
     of the cinematic frame, not a separate component.
============================================================ */
.nav {
  position: fixed;
  top: var(--frame-inset);
  left: var(--frame-inset);
  right: var(--frame-inset);
  z-index: 100;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 48px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--frame-border);
  animation: navFadeDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  /* Smooth transition to edge-to-edge on scroll */
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

.nav.scrolled {
  top: 0;
  left: 0;
  right: 0;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-icon {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 130px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transform: translateY(1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-socials-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.nav-socials-desktop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-socials-desktop svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-socials-desktop a:hover {
  color: var(--accent-red);
  background: rgba(207, 57, 62, 0.08);
  border-color: rgba(207, 57, 62, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-socials-desktop a:hover svg {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .nav-socials-desktop {
    display: none;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
  flex-shrink: 0;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  position: fixed;
  inset: 0;
  background: #080608;
  z-index: 99;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Subtle grain overlay */
.nav-mobile-grain {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(100, 15, 15, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Links section */
.nav-mobile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 36px 0 36px;
  position: relative;
  z-index: 1;
}

/* Each link row */
.nav-mobile-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Animated red underline */
.nav-mobile-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(207, 57, 62, 0.75);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-item:hover::after {
  width: 100%;
}

/* Stagger entrance */
.nav-mobile.open .nav-mobile-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.07s;
}

.nav-mobile.open .nav-mobile-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.13s;
}

.nav-mobile.open .nav-mobile-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.19s;
}

.nav-mobile.open .nav-mobile-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.nav-mobile.open .nav-mobile-item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.31s;
}

.nav-mobile.open .nav-mobile-item:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.37s;
}

/* Small index number */
.nav-mobile-num {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(207, 57, 62, 0.55);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 6px;
  transition: color 0.35s ease;
}

.nav-mobile-item:hover .nav-mobile-num {
  color: rgba(207, 57, 62, 1);
}

/* Link label */
.nav-mobile-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  padding: 0 16px;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-item:hover .nav-mobile-label {
  color: #ffffff;
  transform: translateX(6px);
}

/* Arrow indicator */
.nav-mobile-item .nav-mobile-arrow {
  font-size: 16px;
  color: rgba(207, 57, 62, 0);
  flex-shrink: 0;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-8px);
}

.nav-mobile-item:hover .nav-mobile-arrow {
  color: rgba(207, 57, 62, 0.9);
  transform: translateX(0);
}

/* Bottom brand bar */
.nav-mobile-footer {
  padding: 16px 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mobile-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.nav-mobile-socials {
  display: flex;
  gap: 16px;
}

.nav-mobile-socials a {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-mobile-socials a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   SHARED KEYFRAMES
============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

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

@keyframes heroBgZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 74s0px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/bg-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroBgZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

/* ── Cinematic frame: 16px inset, all sides ── */
.hero-frame {
  position: absolute;
  top: var(--frame-inset);
  left: var(--frame-inset);
  right: var(--frame-inset);
  bottom: var(--frame-inset);
  border: var(--frame-border);
  pointer-events: none;
  z-index: 5;
}


/* Statistics label */
.hero-award {
  position: absolute;
  top: 114px;
  right: 42px;
  z-index: 6;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  animation: fadeInUp 0.9s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Bottom content row */
.hero-bottom {
  isolation: isolate;
  /* stacking context without being a positioning ancestor */
  z-index: 4;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 48px 72px;
  /* bottom space reserved for hero-meta */
  gap: 2rem;
}

/* Left editorial block */
.hero-text-block {
  max-width: 620px;
}

.hero-title-box {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.42), rgba(20, 20, 20, 0.18));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--frame-border);
  padding: 20px 26px;
  display: inline-block;
  animation: fadeInUp 0.9s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title-box:hover {
  transform: translateY(-2px);
}

.hero-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.6px;
  color: #F5F1EA;
  white-space: nowrap;
}

.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  /* max-width: 420px; */
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 10px;
  animation: fadeInUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-meta {
  position: absolute;
  bottom: 30px;
  left: 48px;
  right: 48px;
  /* prevent overflow — constrain to hero width */
  z-index: 4;
  animation: fadeInUp 0.9s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-meta-divider {
  width: 92px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  margin-bottom: 14px;
}

.hero-meta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Bottom-right dock: two separate floating cards ── */
.hero-dock {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  animation: fadeInRight 0.9s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Card 1: Inspiration ── */
.hero-inspiration-card {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.hero-inspiration-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* Portrait image fills the card */
.hero-insp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(80%);
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.hero-inspiration-card:hover .hero-insp-img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

/* Hover overlay — slides up from bottom */
.hero-insp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 10px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-inspiration-card:hover .hero-insp-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hero-insp-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
  display: block;
}

.hero-insp-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.hero-insp-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ── Card 2: WhatsApp ── */
.hero-whatsapp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 130px;
  height: 130px;
  border-radius: 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-whatsapp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.2);
}

.hero-whatsapp-card svg {
  color: #25D366;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-whatsapp-card:hover svg {
  transform: scale(1.12);
}

.hero-wa-label {
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  max-width: 100%;
  padding: 0 6px;
}

/* ============================================================
   RECOGNITION
============================================================ */
.recognition {
  background: var(--bg-black);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  padding: calc(var(--nav-height, 82px) + clamp(16px, 2vh, 28px)) clamp(24px, 5vw, 72px) clamp(24px, 3vh, 40px);
  gap: clamp(16px, 2.5vh, 28px);
}

/* ── Header row ── */
.recognition-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 16px;
}

.recognition-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

/* Stat block — right side of header */
.recognition-stat-block {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.recognition-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.recognition-stat-plus {
  color: var(--accent-red);
}

.recognition-stat-label {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
  max-width: 120px;
}

/* ── Film panels — flex so cards animate width on hover ── */
.recognition-grid {
  display: flex;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

/* ── Individual award card ── */
.recog-film {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  flex: 1;
  min-width: 0;
  transition: flex 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

/* Featured card starts wider */
.recog-film--featured {
  flex: 1.55;
}

/* When ANY card is hovered — normalise all, then expand the hovered one */
.recognition-grid:has(.recog-film:hover) .recog-film {
  flex: 1;
}

.recog-film:hover {
  flex: 1.55 !important;
  border-color: rgba(207, 57, 62, 0.35);
}

/* Film still — visible base image */
.recog-film-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  filter: grayscale(40%) brightness(0.55) contrast(1.05);
  transition: filter 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.recog-film:hover .recog-film-bg {
  filter: grayscale(20%) brightness(0.65) contrast(1.1);
  transform: scale(1.12);
}

/* Blend layer hidden — single image only */
.recog-film-blend {
  display: none;
}

/* Dark gradient overlay — lets images show through at top, darker at bottom for text */
.recog-film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 2, 2, 0.45) 0%,
      rgba(8, 2, 2, 0.30) 30%,
      rgba(8, 2, 2, 0.55) 65%,
      rgba(8, 2, 2, 0.88) 100%);
}

/* Card body — three rows: header, award count, footer */
.recog-film-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px 22px;
}

/* Top: film name + year */
.recog-film-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.recog-film-genre {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 4px;
}

.recog-film-title {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.recog-film-year {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* ── Award count — the centrepiece ── */
.recog-award-center {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(6px, 1.2vh, 14px) 0;
}

.recog-award-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 7.5vw, 110px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.recog-film--featured .recog-award-num {
  font-size: clamp(80px, 10vw, 148px);
}

.recog-award-center-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.recog-award-meta-top {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.recog-award-meta-btm {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ── Award list — bottom, edge-to-edge ── */
.recog-film-footer {
  display: flex;
  flex-direction: column;
  margin-left: -22px;
  margin-right: -22px;
  margin-bottom: -22px;
  padding: 12px 0 13px;
}

.recog-award-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 22px 10px;
}

/* ── Award chips — auto-scrolling marquee ── */
@keyframes chips-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.recog-film-footer {
  position: relative;
  overflow: hidden;
}

/* Fade edges left & right */
.recog-film-footer::before,
.recog-film-footer::after {
  content: '';
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.recog-film-footer::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 2, 2, 0.9), transparent);
}

.recog-film-footer::after {
  right: 0;
  background: linear-gradient(to left, rgba(8, 2, 2, 0.9), transparent);
}

.recog-award-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: max-content;
  animation: chips-scroll 12s linear infinite;
  animation-play-state: paused;
  /* paused by default */
}

/* Start scrolling on card hover */
.recog-film:hover .recog-award-list {
  animation-play-state: running;
}

/* Featured card scrolls immediately on load */
.recog-film--featured .recog-award-list {
  animation-play-state: running;
}

/* Featured card pauses when a different card is hovered */
.recognition-grid:has(.recog-film:not(.recog-film--featured):hover) .recog-film--featured .recog-award-list {
  animation-play-state: paused;
}

.recog-award-list li {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: default;
  outline: none;
  transition: background 0.25s ease,
    border-color 0.25s ease;
}

.recog-award-list li:hover,
.recog-award-list li:focus {
  background: rgba(207, 57, 62, 0.12);
  border-color: rgba(207, 57, 62, 0.45);
  transform: translateY(-2px);
}

/* Award category name */
.recog-award-name {
  font-family: var(--font-body);
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.recog-award-list li:hover .recog-award-name,
.recog-award-list li:focus .recog-award-name {
  color: #fff;
}

/* Winner name — slides in below on hover */
.recog-award-winner {
  font-family: var(--font-body);
  font-size: clamp(8px, 0.65vw, 9px);
  font-weight: 500;
  color: var(--accent-red);
  letter-spacing: 0.03em;
  white-space: nowrap;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-3px);
  transition: max-height 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    padding-top 0.25s ease;
}

.recog-award-list li:hover .recog-award-winner,
.recog-award-list li:focus .recog-award-winner {
  max-height: 16px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 3px;
}

/* ── Tablet (601px – 1024px) — side by side ── */
@media (min-width: 601px) and (max-width: 1024px) {
  .recognition {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    padding: calc(var(--nav-height, 72px) + 20px) 24px 32px;
    gap: 16px;
  }

  .recognition-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .recognition-heading {
    font-size: clamp(22px, 3vw, 36px);
  }

  /* Keep side-by-side row layout */
  .recognition-grid {
    flex-direction: row;
    gap: 10px;
    flex: 1;
    min-height: 0;
  }

  .recog-film {
    flex: 1;
    height: 100%;
    min-height: 0;
    border-radius: 14px;
  }

  .recog-film--featured {
    flex: 1.4;
  }

  /* Re-enable hover expand on tablet landscape */
  .recognition-grid:has(.recog-film:hover) .recog-film {
    flex: 1;
  }

  .recog-film:hover {
    flex: 1.4 !important;
    border-color: rgba(207, 57, 62, 0.35);
  }

  .recog-film-body {
    padding: 16px 16px 14px;
  }

  .recog-award-num {
    font-size: clamp(48px, 7vw, 80px);
  }

  .recog-film--featured .recog-award-num {
    font-size: clamp(56px, 8vw, 96px);
  }

  .recog-award-meta-btm {
    font-size: 12px;
  }

  .recog-film-title {
    font-size: clamp(12px, 1.6vw, 16px);
  }

  /* Compact chips row — edge-to-edge */
  .recog-film-footer {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -14px;
  }

  .recog-award-divider {
    margin: 0 16px 8px;
  }

  .recog-award-list {
    flex-wrap: nowrap;
    gap: 5px;
  }

  .recog-award-list li {
    flex-shrink: 0;
    padding: 5px 10px;
  }

  .recog-award-name {
    font-size: 8px;
  }

  .recog-award-winner {
    font-size: 8px;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .recognition {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: calc(var(--nav-height, 64px) + 16px) 16px 28px;
    gap: 12px;
  }

  .recognition-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recognition-heading {
    font-size: clamp(22px, 7vw, 30px);
  }

  .recognition-stat-block {
    display: none;
  }

  .recognition-grid {
    flex-direction: column;
    gap: 10px;
  }

  /* Disable hover expand on mobile */
  .recognition-grid:has(.recog-film:hover) .recog-film,
  .recog-film:hover {
    flex: none !important;
  }

  .recog-film,
  .recog-film--featured {
    flex: none;
    width: 100%;
    height: 210px;
    border-radius: 12px;
  }

  .recog-film-body {
    padding: 12px 14px 12px;
    justify-content: space-between;
  }

  .recog-film-genre {
    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .recog-film-title {
    font-size: clamp(13px, 4vw, 16px);
  }

  .recog-film-year {
    font-size: 9px;
  }

  .recog-award-center {
    gap: 8px;
  }

  .recog-award-num {
    font-size: 52px;
  }

  .recog-film--featured .recog-award-num {
    font-size: 58px;
  }

  .recog-award-meta-top {
    font-size: 7px;
  }

  .recog-award-meta-btm {
    font-size: 11px;
  }

  /* Chips — edge-to-edge on mobile */
  .recog-film-footer {
    display: flex;
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: -12px;
    padding: 10px 0 12px;
  }

  .recog-award-divider {
    margin: 0 14px 8px;
  }

  .recog-award-list li {
    padding: 5px 10px;
  }

  .recog-award-name {
    font-size: 9px;
  }
}

/* ============================================================
   FEATURED PRODUCTIONS
============================================================ */

/* Section wrapper — full viewport height */
.productions {
  background: var(--bg-black);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height, 82px) + 28px) 0 clamp(16px, 2.5dvh, 28px);
  box-sizing: border-box;
}

/* Deep crimson card — inset from page edges, fills available space */
.productions-card {
  margin: 0 clamp(16px, 3vw, 48px);
  background: linear-gradient(135deg, #2A0606 0%, #5A1010 25%, #7B1C1C 50%, #9B2525 75%, #4A0D0D 100%);
  border-radius: 16px;
  padding: clamp(28px, 5dvh, 64px) clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 0;
}

/* Subtle noise texture for richness */
.productions-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* Radial vignette overlay for depth */
.productions-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(160, 30, 30, 0.18) 0%, rgba(10, 2, 2, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above pseudo-element overlays */
.productions-left,
.productions-right {
  position: relative;
  z-index: 1;
}

/* Left column: slide from left on reveal */
.productions-left.reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.productions-left.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Right column: slide from right on reveal */
.productions-right.reveal {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.productions-right.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Eyebrow tinted for dark-red background */
.productions-card .eyebrow {
  color: rgba(255, 255, 255, 0.50);
}

/* Section heading */
.productions-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: clamp(0.75rem, 1.5dvh, 1.25rem);
}

/* Body paragraph */
.productions-body {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2dvh, 2rem);
  max-width: 320px;
}

/* Ghost / outline CTA button */
.productions-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 13px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.productions-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.productions-cta svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.productions-cta:hover svg {
  transform: translateX(4px);
}

/* ── Right column centring ── */
.productions-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Poster stack container ── */
.poster-stack {
  position: relative;
  width: 100%;
  height: clamp(300px, 58dvh, 560px);
}

/* Base poster tile */
.poster-item {
  position: absolute;
  width: clamp(170px, 18vw, 290px);
  height: clamp(255px, 43dvh, 430px);
  border-radius: 6px;
  overflow: hidden;
  outline: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

/* Left poster — tilted back-left */
.poster-left {
  left: calc(50% - 255px);
  top: 50px;
  transform: rotate(-7deg);
  opacity: 0.88;
  z-index: 1;
}

/* Center poster — frontmost, slightly raised */
.poster-center {
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  opacity: 1;
  z-index: 3;
}

/* Right poster — tilted back-right */
.poster-right {
  left: calc(50% + 15px);
  top: 55px;
  transform: rotate(6deg);
  opacity: 0.88;
  z-index: 2;
}

/* Hover: bring to front, scale, full opacity */
.poster-item:hover {
  opacity: 1;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.poster-left:hover {
  transform: rotate(-7deg) scale(1.04);
}

.poster-center:hover {
  transform: translateX(-50%) scale(1.04);
}

.poster-right:hover {
  transform: rotate(6deg) scale(1.04);
}

/* Focus ring for keyboard nav */
.poster-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
  z-index: 10;
}

/* Stagger entrance delays (handled via delay-* on the poster-item elements if needed) */
.poster-stack .poster-left {
  transition-delay: 0s;
}

.poster-stack .poster-center {
  transition-delay: 0.1s;
}

.poster-stack .poster-right {
  transition-delay: 0.2s;
}

/* Full-height inner fill */
.poster-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px;
  position: relative;
}

/* Subtle bottom gradient for poster title legibility */
.poster-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.05) 40%, transparent 100%);
  pointer-events: none;
}

/* Poster actual images */
.poster-bg-1 {
  background: url('../assets/vasantroa.png') center/cover no-repeat;
}

.poster-bg-2 {
  background: url('../assets/amaltash.png') center/cover no-repeat;
}

.poster-bg-3 {
  background: url('../assets/teen-payancha-ghoda.png') center/cover no-repeat;
}

/* Info block (above gradient layer) */
.poster-info {
  position: relative;
  z-index: 1;
}

.poster-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  margin-bottom: 4px;
}

.poster-meta {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

/* ============================================================
   ABOUT — WHO WE ARE
============================================================ */
.about {
  background: #2D0A0A;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height, 82px) + 16px) 0 clamp(16px, 2dvh, 32px);
  box-sizing: border-box;
}

.about-inner {
  width: 100%;
  padding: 0 clamp(20px, 5vw, 72px);
  box-sizing: border-box;
}

/* ── Zone 1: header row ── */
.about-zone1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3dvh, 4rem);
  align-items: center;
  margin-bottom: clamp(16px, 3dvh, 40px);
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 16px;
}

.about-philosophy {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: #E8E0D8;
  line-height: 1.7;
  max-width: 380px;
  margin-left: auto;
}

/* ── Zone 2: inner card ── */
.about-card {
  border: none;
  border-radius: 10px;
  padding: clamp(24px, 3dvh, 44px) clamp(20px, 3vw, 48px);
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card reveal: subtle scale-up */
.about-card.reveal {
  transform: translateY(28px) scale(0.98);
}

.about-card.reveal.visible {
  transform: translateY(0) scale(1);
}

.about-body {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  /*max-width: 420px; */
  margin-bottom: clamp(12px, 2dvh, 24px);
}

/* Ghost / outline CTA — same style as productions section */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 13px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.about-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.about-cta svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.about-cta:hover svg {
  transform: translateX(4px);
}

/* BTS / Portrait image */
.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card:hover .about-img {
  transform: scale(1.03);
}

/* ============================================================
   AWARDS — Cinematic playing-card stack
============================================================ */
.awards {
  display: none;
}

/* ── Pin zone ── */
.awards-pin-zone {
  height: 350vh;
  position: relative;
}

/* ── Sticky stage: title top, cards below ── */
.awards-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 56px 80px 44px;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Header row: text left, CTA right ── */
.awards-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-shrink: 0;
}

.awards-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Deck column (below header) ── */
.awards-deck-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* ── Eyebrow ── */
.awards-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(211, 47, 47, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.awards-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(211, 47, 47, 0.4);
}

/* ── Heading ── */
.awards-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  max-width: 460px;
}

.awards-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Meta ── */
.awards-meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}

/* ── CTA ── */
.awards-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Ambient glow behind deck ── */
.awards-deck::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(211, 47, 47, 0.055) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* ── Deck container ── */
.awards-deck {
  position: relative;
  width: 100%;
  height: 280px;
}

/* ── Individual card wrap ── */
.award-card-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  /* overridden by JS */
  height: 280px;
  will-change: transform, opacity;
  transform-origin: center bottom;
}

/* ── Decorative rotated outline rect ── */
.award-card-deco {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-5deg) translate(-10px, -12px);
  pointer-events: none;
  z-index: 0;
}

/* ── Card face ── */
.award-card {
  position: absolute;
  inset: 0;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 2px solid rgba(211, 47, 47, 0.55);
  display: grid;
  grid-template-columns: auto 1px 1fr;
  overflow: hidden;
  user-select: none;
  cursor: default;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}

/* Top-edge shimmer */
.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06) 40%, transparent);
  pointer-events: none;
}

/* ── Number ── */
.award-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.04em;
  padding: 28px 28px 28px 24px;
  display: flex;
  align-items: center;
  align-self: center;
  line-height: 1;
}

/* ── Divider ── */
.award-divider-v {
  background: rgba(255, 255, 255, 0.07);
  align-self: stretch;
}

/* ── Info block ── */
.award-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px 24px 28px 22px;
}

.award-category {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(211, 47, 47, 0.75);
}

.award-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.award-event {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

/* ── View All CTA card ── */
.award-card--viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 2px solid rgba(211, 47, 47, 0.55);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.award-card--viewall:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.22);
  border-left-color: rgba(211, 47, 47, 0.85);
}

.award-viewall-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
}

.award-viewall-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(211, 47, 47, 0.75);
}

.award-viewall-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
}

.award-viewall-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.award-card--viewall:hover .award-viewall-arrow {
  border-color: rgba(211, 47, 47, 0.6);
  color: #fff;
  transform: translateX(4px);
}

/* ── Controls row ── */
.awards-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.awards-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, opacity 0.25s;
}

.awards-nav-btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.awards-nav-btn:disabled {
  opacity: 0.22;
  cursor: default;
}

.awards-counter {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.3);
  min-width: 52px;
  text-align: center;
}

.awards-cta {
  flex-shrink: 0;
}

/* ── Tablet (601–1100px): 2 cards, tighter padding ── */
@media (max-width: 1100px) {
  .awards-stage {
    padding: 48px 40px 32px;
    gap: 24px;
  }

  .awards-deck {
    height: 240px;
  }

  .award-card-wrap {
    height: 240px;
  }

  .award-num {
    font-size: 64px;
    padding: 22px 22px 22px 18px;
  }

  .award-name {
    font-size: 15px;
  }

  .award-info {
    padding: 22px 18px 22px 16px;
  }
}

/* ── Tablet portrait / large phone (601–768px): still 2 cards ── */
@media (max-width: 768px) and (min-width: 601px) {
  .awards-stage {
    padding: 56px 24px 28px;
    gap: 20px;
  }

  .awards-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .awards-cta {
    display: none;
  }

  .awards-heading {
    font-size: clamp(18px, 3vw, 24px);
  }

  .awards-deck {
    height: 210px;
  }

  .award-card-wrap {
    height: 210px;
  }

  .award-num {
    font-size: 52px;
    padding: 18px 16px;
  }

  .award-name {
    font-size: 13px;
  }

  .award-info {
    padding: 18px 14px;
    gap: 5px;
  }

  .award-category {
    font-size: 8px;
  }
}

/* ── Mobile (≤ 600px): single card, button-only navigation ── */
@media (max-width: 600px) {

  /* Pin zone collapses to 1 viewport — scroll goes to next section */
  .awards-pin-zone {
    height: 100vh;
  }

  .awards-stage {
    padding: 64px 20px 32px;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .awards-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .awards-heading {
    font-size: clamp(17px, 5vw, 22px);
    max-width: 100%;
  }

  .awards-cta {
    display: none;
  }

  .awards-meta {
    font-size: 9px;
  }

  /* Deck: relative container, cards stacked absolutely at full width */
  .awards-deck {
    position: relative;
    height: 210px;
    display: block;
    width: 100%;
  }

  .award-card-wrap {
    position: absolute;
    /* keep absolute so only visible card shows */
    top: 0;
    left: 0;
    height: 210px;
    width: 100% !important;
    /* override JS inline width */
  }

  /* Card face fills the wrap */
  .award-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .award-num {
    font-size: 52px;
    padding: 16px 18px 16px 16px;
  }

  .award-name {
    font-size: 14px;
  }

  .award-info {
    padding: 16px 14px;
    gap: 5px;
  }

  .award-category {
    font-size: 8px;
  }

  .award-event {
    font-size: 9px;
  }

  .award-viewall-text {
    font-size: 15px;
  }

  .award-viewall-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ── Small mobile (≤ 400px) ── */
@media (max-width: 400px) {
  .awards-stage {
    padding: 56px 16px 28px;
    gap: 16px;
  }

  .awards-deck {
    height: 190px;
  }

  .award-card-wrap {
    height: 190px !important;
  }

  .award-num {
    font-size: 44px;
  }

  .award-name {
    font-size: 12px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .awards-pin-zone {
    height: auto;
  }

  .awards-stage {
    position: static;
    grid-template-columns: 1fr;
    height: auto;
    padding: 80px 48px;
    gap: 48px;
  }

  .awards-content {
    align-items: flex-start;
    padding: 0;
  }

  .awards-deck {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 680px;
    height: auto;
    position: static;
  }

  .award-card-wrap {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    height: 220px;
  }

  .awards-controls {
    display: none;
  }
}

/* ============================================================
   NEWS / FROM THE STUDIO
============================================================ */
.news {
  background: var(--bg-black);
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: stretch;
  padding: calc(var(--nav-height, 82px) + 12px) 0 clamp(12px, 2dvh, 24px);
  box-sizing: border-box;
}

/* ── Inset rounded card — mirrors .productions-card ── */
.news-wrap {
  margin: 0 clamp(16px, 3vw, 48px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg, #2A0606 0%, #5A1010 25%, #7B1C1C 50%, #9B2525 75%, #4A0D0D 100%);
  border-radius: 16px;
  padding: clamp(18px, 2.5dvh, 36px) clamp(20px, 3vw, 48px);
  position: relative;
  overflow: hidden;
}

/* Noise texture */
.news-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.035;
  pointer-events: none;
  border-radius: 16px;
  z-index: 0;
}


/* ── Header row ── */
.news-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(10px, 1.8dvh, 22px);
  position: relative;
  z-index: 1;
}

/* Button floats to top-right on desktop */
.news-cta {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 2;
}

/* Scroll dots — hidden on desktop, shown on mobile */
.news-dots {
  display: none;
}

.news-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.news-dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* Header slides in from top */
.news-header.reveal {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.news-header.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 10px;
}

.news-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ── Card grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  position: relative;
  z-index: 1;
  margin: auto 0;
}

/* Entire card is a link */
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #1a0808;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.news-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* Card reveal — fade + rise */
.news-card.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.news-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-card.reveal.delay-1 {
  transition-delay: 100ms;
}

.news-card.reveal.delay-2 {
  transition-delay: 200ms;
}

.news-card.reveal.delay-3 {
  transition-delay: 300ms;
}

/* ── Card image ── */
.news-img-wrap {
  flex-shrink: 0;
  height: clamp(140px, 22dvh, 210px);
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: filter 0.3s ease;
}

.news-card:hover .news-img {
  filter: brightness(1.08);
}

/* ── Card body ── */
.news-body {
  flex: 1;
  padding: clamp(14px, 2dvh, 22px) clamp(14px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
}

.news-category {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: #E8634A;
  margin-bottom: 6px;
}

.news-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  font-size: 13px;
  color: #BBBBBB;
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more — pinned to bottom of card body */
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-top: clamp(10px, 1.5dvh, 16px);
  transition: color 0.25s ease;
}

.news-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.news-card:hover .news-read-more {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.news-card:hover .news-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   FOOTER
============================================================ */
/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #0A0A0A;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Zone 1: Main body ── */
.footer-body {
  padding: clamp(40px, 6dvh, 72px) 0 clamp(24px, 3dvh, 48px);
}

.footer-inner {
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Column widths */
.footer-col {
  flex: 1;
}

.footer-col--brand {
  flex: 1.2;
}

/* Brand logo */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo {
  width: 120px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
  text-decoration: none;
  margin-bottom: 24px;
  opacity: 0.85;
  transition: opacity 0.25s ease, gap 0.25s ease;
}

.footer-about-link:hover {
  opacity: 1;
  gap: 10px;
}

.footer-about-link svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer-about-link:hover svg {
  transform: translateX(3px);
}

/* Social links */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-social svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.footer-social:hover {
  color: #fff;
  text-decoration: none;
}

.footer-social:hover svg {
  opacity: 1;
}

.footer-sep {
  color: #666;
  font-size: 13px;
}

/* Nav links */
.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-nav-links li {
  line-height: 1.9;
}

.footer-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: color 200ms ease;
}

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

/* Contact column */
.footer-contact-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}

.footer-contact-item a {
  color: #ccc;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-contact-item a:hover {
  color: var(--accent-red);
}

.footer-address {
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  font-style: normal;
  white-space: pre-line;
  margin-top: 20px;
}

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin: 0;
}

/* ── Zone 2: Bottom bar ── */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666;
  font-style: normal;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 11px;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 150ms ease;
}

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

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

/* ── Small desktop (1024–1280px) ── */
@media (max-width: 1280px) {
  .nav {
    height: 68px;
    padding: 0 36px;
  }

  .hero-award {
    top: 100px;
    /* 68px nav + 16px inset + 16px gap */
  }

  .hero-bottom {
    padding: 0 36px 76px;
    gap: 1.5rem;
    align-items: flex-end;
  }

  .hero-text-block {
    /* max-width: 380px; */
    transform: none;
    margin-bottom: 0;
  }

  .hero-title {
    font-size: clamp(38px, 4vw, 54px) !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    letter-spacing: -1.2px;
  }

  .hero-title-box {
    padding: 22px 22px;
    margin-bottom: 14px;
    display: block;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 13px;
    margin-top: 14px;
    margin-bottom: 14px;
    line-height: 1.65;
  }

  .hero-meta {
    left: 36px;
    bottom: 36px;
  }

  .hero-meta-divider {
    margin-bottom: 10px;
  }

  .hero-inspiration-card {
    width: 96px;
    height: 96px;
  }

  .hero-whatsapp-card {
    width: 96px;
    height: 96px;
  }

  .about-img {
    height: auto;
  }
}

/* ── Short viewport fix (laptops with < 720px height) ── */
@media (max-height: 720px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* override the fixed 820px min-height */
  }

  .nav {
    height: 60px;
    padding: 0 32px;
  }

  .hero-award {
    top: 92px;
    /* 60px nav + 16px inset + 16px gap */
  }

  .hero-text-block {
    transform: none;
    margin-bottom: 0;
  }

  .hero-title-box {
    padding: 18px 20px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(30px, 3vw, 42px) !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .hero-meta {
    left: 32px;
    bottom: 32px;
  }

  .hero-meta-divider {
    margin-bottom: 8px;
  }

  .hero-inspiration-card,
  .hero-whatsapp-card {
    width: 86px;
    height: 86px;
  }

}


/* ── Small desktop: 3-card horizontal scroll (961px – 1280px) ── */
@media (min-width: 961px) and (max-width: 1280px) {
  .news-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    margin-left: -48px;
    margin-right: -48px;
    padding-right: 48px;
    scrollbar-width: none;
    align-items: stretch;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex: 0 0 30% !important;
    scroll-snap-align: start;
    height: auto !important;
  }

  .news-card:first-child {
    margin-left: 48px;
    scroll-margin-left: 48px;
  }

  .news-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }
}

@media (max-width: 960px) {

  /* Productions card scales down */
  .productions-card {
    margin: 0 24px;
    padding: 48px 36px;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: unset;
  }

  .poster-stack {
    height: clamp(260px, 45dvh, 400px);
  }

  .poster-item {
    width: clamp(140px, 16vw, 200px);
    height: clamp(210px, 30dvh, 300px);
  }

  .poster-left {
    left: calc(50% - 215px);
    top: 44px;
  }

  .poster-center {
    left: 50%;
    top: 16px;
  }

  .poster-right {
    left: calc(50% + 15px);
    top: 48px;
  }

  /* About — tablet */
  .about-inner {
    padding: 0 32px;
  }

  .about-zone1 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-philosophy {
    margin-left: 0;
    max-width: 100%;
  }

  .about-card {
    padding: 28px 28px;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-wrap {
    margin: 0 24px;
    padding: 40px 32px;
  }

  .news-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    margin-left: -32px;
    margin-right: -32px;
    padding-right: 32px;
    scrollbar-width: none;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex: 0 0 46%;
    scroll-snap-align: start;
    height: auto;
  }

  .news-card:first-child {
    margin-left: 32px;
    scroll-margin-left: 32px;
  }

  .news-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }

  /* Footer tablet */
  .footer-inner {
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
  }

  .footer-col--brand {
    flex: 1 1 100%;
  }

  .footer-col--nav {
    flex: 1;
  }

  .footer-col--contact {
    flex: 1;
  }

  .footer-nav-links a {
    font-size: 18px;
  }

  .footer-bottom-inner {
    padding: 0 40px;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    top: var(--frame-inset);
    left: var(--frame-inset);
    right: var(--frame-inset);
    height: 64px;
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-award {
    top: 96px;
    right: 24px;
    left: 24px;
    justify-content: center;
  }

  .hero-meta {
    left: 28px;
    right: 28px;
    bottom: 40px;
  }

  .hero-meta .hero-meta-divider {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 28px 88px;
    /* extra bottom space for hero-meta */
    gap: 1.5rem;
  }

  .hero-text-block {
    max-width: 100%;
    transform: none;
    margin-bottom: 0;
  }

  .hero-title-box {
    padding: 28px 24px;
    display: block;
    width: 100%;
  }

  .hero-title {
    font-size: 52px !important;
    white-space: normal;
    letter-spacing: -1px;
    line-height: 1.0 !important;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-dock {
    align-self: flex-start;
  }

  .hero-inspiration-card {
    width: 112px;
    height: 112px;
  }

  .hero-whatsapp-card {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 1280px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {

  /* About — mobile: free height, no 100vh lock */
  .about {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding: calc(var(--nav-height, 82px) + 16px) 0 40px;
  }

  .about-inner {
    padding: 0 20px;
  }

  .about-card {
    padding: clamp(20px, 3dvh, 40px) clamp(16px, 4vw, 24px);
  }

  .about-cta {
    width: 100%;
    justify-content: center;
  }

  /* Allow taller portrait on mobile */
  .about-img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .news-wrap {
    margin: 0 16px;
    padding: 32px 20px;
    border-radius: 12px;
    /* No overflow:hidden — lets the grid scroll horizontally */
  }

  /* Contain horizontal overflow at section level */
  .news {
    overflow-x: hidden;
  }

  .news-cta {
    position: static;
    width: auto;
    align-self: center;
    margin-top: 20px;
  }

  .news-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .news-grid {
    gap: 16px;
    /* Full-bleed scrollable row: break out of wrap padding */
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-left: 20px;
    /* Ensure scroll works on mobile */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* First card: left edge aligned to wrap padding */
  .news-card:first-child {
    margin-left: 0;
    scroll-margin-left: 0;
  }

  .news-card {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .news-img-wrap {
    height: 180px;
  }

  /* Productions: full-width card on mobile */
  .productions-card {
    margin: 0 16px;
    padding: 40px 24px;
    border-radius: 12px;
  }

  .productions-body {
    max-width: 100%;
  }

  /* Poster stack: compact horizontal layout */
  .poster-stack {
    height: clamp(200px, 36dvh, 280px);
  }

  .poster-item {
    width: clamp(110px, 28vw, 140px);
    height: clamp(160px, 26dvh, 210px);
  }

  .poster-left {
    left: calc(50% - 36vw);
    top: 30px;
  }

  .poster-center {
    left: 50%;
    top: 10px;
  }

  .poster-right {
    left: calc(50% + 8vw);
    top: 36px;
  }

  /* Footer mobile */
  .footer-body {
    padding: 48px 0 40px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 36px;
    padding: 0 24px;
  }

  .footer-col--brand,
  .footer-col--nav,
  .footer-col--contact {
    flex: 1 1 100%;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-nav-links a {
    font-size: 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 24px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: unset;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px 160px;
    gap: 28px;
    /* extra bottom space for dock + hero-meta */
  }

  .hero-text-block {
    max-width: 100%;
    margin-bottom: 0;
    transform: none;
  }

  .hero-title {
    font-size: 42px !important;
    white-space: normal;
    letter-spacing: -0.5px;
    line-height: 1.0 !important;
  }

  .hero-title-box {
    padding: 24px 22px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-meta {
    display: block;
    left: 24px;
    right: 24px;
    bottom: 24px;
    text-align: center;
  }

  /* font style intentionally unchanged — matches desktop */

  /* Hide the divider line on mobile */
  .hero-meta .hero-meta-divider {
    display: none;
  }

  .hero-dock {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-inspiration-card {
    width: 100px;
    height: 120px;
  }

  .hero-inspiration-card {
    width: 100px;
    height: 100px;
  }

  .hero-whatsapp-card {
    width: 100px;
    height: 100px;
  }
}

/* ============================================================
   CUSTOM CURSOR  (mouse/trackpad only)
============================================================ */
@media (pointer: fine) {

  body,
  a,
  button {
    cursor: none !important;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    will-change: left, top;
  }

  .cursor-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.45s ease,
      background 0.45s ease;
  }

  /* Hover: ring expands, dot shrinks */
  body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
  }

  body.cursor-hover .cursor-ring {
    width: 52px;
    height: 52px;
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Click: both compress */
  body.cursor-click .cursor-dot {
    transform: translate(-50%, -50%) scale(1.8);
  }

  body.cursor-click .cursor-ring {
    width: 24px;
    height: 24px;
    border-color: rgba(255, 255, 255, 1);
  }

  /* Hide when cursor leaves window */
  body.cursor-out .cursor-dot,
  body.cursor-out .cursor-ring {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }

  .nav {
    animation: none;
  }

  .hero-title-box,
  .hero-sub,
  .hero-meta,
  .hero-dock {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hide on mobile utility */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}