/* --- Design tokens --- */
:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-muted: #9aa0a6;
  --color-accent: #c9a227;
  --header-h: 0px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 64px;
  --font-heading: "Cinzel", Georgia, serif;
  --font-body: "Inter", sans-serif;
}

/* --- Base --- */
html {
  scroll-padding-top: 80px; /* prevent fixed nav from covering anchor targets */
}

body {
  margin: 0;
  background: var(--color-bg);
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--color-text);
}

/* --- Skip link (a11y) --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 1000;
}

/* Premium focus: gold accent, consistent with brand */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Loader (full-screen logo image + spinner) --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.loader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-muted);
  border-top-color: var(--color-text);
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}

.loader-text {
  margin: 0;
  font-size: 1rem;
  color: var(--color-muted);
}

.loader-progress {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Stage (scroll area) --- */

.stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  background: var(--color-bg);
  margin-top: 56px;
}

#macho-canvas,
#mvk-canvas,
#boyfriend-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
  margin: 0;
  padding: 0;
  background: transparent;
  transform-origin: top left;
}

#macho-canvas {
  z-index: 10;
}
#mvk-canvas {
  z-index: 11;
}
#boyfriend-canvas {
  z-index: 12;
}

/* --- Hero header: minimal at top, docked glass bar after scroll --- */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--space-lg);
  pointer-events: auto;
  min-height: 45px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.11);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-header.is-docked {
  background: rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-header.is-docked .site-nav a.is-active {
  color: var(--color-accent);
}

.site-brand {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.75rem, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  text-decoration: none;
  text-shadow:
    0 0 20px rgba(201, 162, 39, 0.5),
    0 0 40px rgba(201, 162, 39, 0.3),
    0 0 60px rgba(201, 162, 39, 0.2);
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-brand-logo {
  height: 56px;
  width: auto;
  display: block;
  vertical-align: middle;
  transform: translateY(3px);
}

.site-brand-logo-mobile {
  display: none;
  height: 56px;
  width: auto;
  vertical-align: middle;
  transform: translateY(3px);
}

.site-brand:hover {
  color: #e0b83a;
  text-shadow:
    0 0 24px rgba(224, 184, 58, 0.6),
    0 0 48px rgba(224, 184, 58, 0.35),
    0 0 72px rgba(224, 184, 58, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-muted);
}

.site-nav a:focus-visible,
.site-brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* --- Scroll down indicator: fades after first scroll or 1.5s, never reappears --- */
.scroll-hint {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: var(--space-lg);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.scroll-hint--hidden {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

.about-intro {
  font-size: 1.25rem;
  font-weight: 700;
}

.about-section-image-mobile {
  display: none;
}

.scroll-hint-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-hint-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #c9a227;
  border-bottom: 2px solid #c9a227;
  border-color: #c9a227;
  transform: rotate(45deg);
  animation: scroll-hint-bounce 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

@keyframes scroll-hint-bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* --- Canvases: keep below Section 3 so MIDAS background can show --- */
/* (Deduplicated .stage canvas rule above) */

@media (max-width: 400px) {
  /* No mobile override for .stage; canvases remain absolutely positioned and layered. */
  .hero-header {
    background: #000 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  #press,
  #press.news-hero {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #press,
  #press.news-hero {
    margin-top: 40px;
  }
  .hero-header,
  .hero-header.is-docked {
    background: #000 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
  }
  .hero-header .site-brand-text {
    display: none;
  }
  .hero-header .site-brand-logo {
    display: none;
  }
  .hero-header .site-brand-logo-mobile {
    display: block;
    height: 36px;
  }
  .hero-header {
    min-height: 44px;
    padding: 4px var(--space-md);
  }
  #about .parallax-bg {
    display: none;
  }
  #about.screen-bg-section {
    background: #0a0a0a;
    min-height: 0;
    height: auto;
    padding: 3rem 1rem 4rem;
    overflow: visible;
  }
  .about-section-image-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    margin: 2rem auto 0;
    padding-bottom: 2rem;
    vertical-align: middle;
    object-fit: contain;
    object-position: center;
  }
  /* No mobile override for .stage; canvases remain absolutely positioned and layered. */
}

/* Tablet: About section — same as mobile (no bg image, image below text) */
@media (min-width: 769px) and (max-width: 1024px) {
  #about .parallax-bg {
    display: none;
  }
  #about.screen-bg-section {
    background: #0a0a0a;
    min-height: 0;
    height: auto;
    padding: 3rem 1rem 4rem;
    overflow: visible;
  }
  .about-section-image-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    margin: 2rem auto 0;
    padding-bottom: 2rem;
    vertical-align: middle;
    object-fit: contain;
    object-position: center;
  }
}

/* Removed duplicate and conflicting .stage canvas rules and extra closing braces */

/* Film grain + vignette overlay (above canvases, below UI). Vignette works without grain asset. */
.film-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
  mix-blend-mode: overlay;
  opacity: 0.22;
}


#press,
#press.news-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin-top: 0;
  z-index: 5;
  color: var(--color-text);
  background: #000;
  isolation: isolate;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.8s ease;
}

@media (max-width: 768px) {
}


#press.active,
#press.news-hero.active {
  opacity: 1;
}

#press .news-container {
  pointer-events: auto;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.press-logos img {
  height: 21px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.press-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .press-logos {
    gap: 22px;
  }

  .press-logos img {
    height: 11px;
  }
}

/* --- Phone view: constrain images and spacing --- */
@media (max-width: 640px) {
  .news-container img,
  .studio-overview img {
    max-width: 100%;
    height: auto;
  }

  .news-hero-bg img {
    object-position: 80% center;
  }

  .hero-header {
    min-height: 44px;
    padding: 4px var(--space-md);
  }

  .site-brand {
    font-size: 0.9375rem;
  }

  .site-nav {
    gap: var(--space-md);
  }

  .site-nav a {
    font-size: 0.75rem;
  }

  .news-container {
    padding: 24px 16px;
    padding-top: 72px;
    gap: 24px;
    min-height: 100vh;
    align-content: start;
  }

  .news-main {
    max-width: 100%;
    transform: none;
  }

  .news-hero .news-main h1 {
    font-size: clamp(1.35rem, 5vw, 2rem);
    line-height: 1.2;
  }

  .news-sub {
    font-size: 0.9375rem;
  }

  .press-logos {
    gap: 14px;
    margin-top: 20px;
    padding-top: 14px;
  }

  .press-logos img {
    height: 8px;
  }

  .news-featured {
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }

  .featured-card img {
    max-height: 180px;
    object-fit: cover;
  }

  .featured-card h3 {
    font-size: 0.9375rem;
  }

  .news-sidebar .press-card {
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 12px 14px;
  }

  .news-sidebar .press-card img {
    width: 60px;
    min-width: 60px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .news-sidebar .press-card h4 {
    font-size: 0.8125rem;
  }

  .news-sidebar .press-card p {
    font-size: 0.75rem;
  }

  .studio-overview {
    padding: 0 5vw 48px;
  }

  .studio-top {
    padding-top: 0;
  }

  .studio-top {
    gap: 32px;
    margin-bottom: 48px;
  }

  .studio-logo img {
    max-width: 100%;
  }

  .studio-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .studio-text p {
    font-size: 0.9375rem;
    margin-bottom: 14px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project-card span {
    font-size: 11px;
    padding: 8px 10px 10px;
  }

  .theh-section {
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
  }

  .theh-section #theh-canvas {
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    width: 100%;
  }
}

/* Section 3 background layer removed — keep this section as normal content */

.news-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 80px;
  min-height: 100vh;
  align-content: center;
  pointer-events: auto;
}

.news-main {
  position: relative;
  z-index: 1;
  max-width: 700px;
  transform: translateY(-5vh);
}

.news-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.news-hero .news-main h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.news-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-md);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.news-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.news-btn-primary {
  background: #fff;
  color: #000;
  border-color: #000;
}

.news-btn-primary:hover {
  background: #e8e8e8;
  border-color: #333;
}

.news-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.news-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.news-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.featured-card {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
}

.featured-card:hover {
  border-left-color: #e0b83a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.featured-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-meta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin: var(--space-sm) var(--space-md) 6px;
}

.featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 var(--space-md) 8px;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.featured-card a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  margin: 0 var(--space-md) var(--space-md);
  transition: color 0.2s ease;
}

.featured-card a:hover {
  color: #e0b83a;
}

@media (max-width: 768px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
}

/* Sidebar: editorial stack — your .press-card structure */
.news-sidebar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 162, 39, 0.3) transparent;
}

.news-sidebar::-webkit-scrollbar {
  width: 6px;
}

.news-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.news-sidebar::-webkit-scrollbar-thumb {
  background: rgba(201, 162, 39, 0.25);
  border-radius: 3px;
}

.news-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 162, 39, 0.4);
}

.news-sidebar .press-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid rgba(201, 162, 39, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.news-sidebar .press-card:hover {
  background: rgba(0, 0, 0, 0.5);
  border-left-color: var(--color-accent);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.news-sidebar .press-card img {
  width: 80px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-sidebar .press-card > div {
  min-width: 0;
}

.news-sidebar .press-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.news-sidebar .press-card p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin: 0 0 10px;
  line-height: 1.45;
}

.news-sidebar .press-card a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-sidebar .press-card a:hover {
  color: #e0b83a;
}

@media (max-width: 768px) {
  .news-container {
    grid-template-columns: 1fr;
    padding: 60px var(--space-md);
    align-content: start;
    padding-top: 100px;
  }

  .news-sidebar {
    max-height: none;
  }

  .news-sidebar .press-card {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 16px;
  }
}

/* --- Section 4: Press in Section 3 layout (announcement + 2 large left, glass sidebar right) --- */
#section-4.section-4-press {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  background: var(--color-bg);
  color: var(--color-text);
}

#section-4 .section-4-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 80px;
  min-height: 100vh;
  align-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

#section-4 .section-4-main {
  max-width: 700px;
}

#section-4 .section-4-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

#section-4 .section-4-dateline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 var(--space-sm);
}

#section-4 .section-4-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.02em;
  color: var(--color-text);
}

#section-4 .section-4-body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 var(--space-sm);
}

#section-4 .section-4-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

#section-4 .section-4-featured .featured-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
}

#section-4 .section-4-featured .featured-card:hover {
  border-left-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

#section-4 .section-4-featured .featured-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 0;
}

#section-4 .section-4-featured .featured-meta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 12px 16px 0;
}

#section-4 .section-4-featured .featured-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  line-height: 1.25;
  font-weight: 600;
  margin: 6px 16px 12px;
  color: var(--color-text);
}

#section-4 .section-4-featured .featured-card a {
  display: inline-block;
  margin: 0 16px 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

#section-4 .section-4-featured .featured-card a:hover {
  color: #e0b83a;
}

/* Section 4 sidebar — glass containers (same as Section 3) */
#section-4 .section-4-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 162, 39, 0.3) transparent;
}

#section-4 .section-4-sidebar .press-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(201, 162, 39, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#section-4 .section-4-sidebar .press-card:hover {
  background: rgba(0, 0, 0, 0.5);
  border-left-color: var(--color-accent);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

#section-4 .section-4-sidebar .press-card img {
  width: 80px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#section-4 .section-4-sidebar .press-card > div {
  min-width: 0;
}

#section-4 .section-4-sidebar .press-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

#section-4 .section-4-sidebar .press-card p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin: 0 0 10px;
  line-height: 1.45;
}

#section-4 .section-4-sidebar .press-card a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

#section-4 .section-4-sidebar .press-card a:hover {
  color: #e0b83a;
}

@media (max-width: 900px) {
  #section-4 .section-4-container {
    grid-template-columns: 1fr;
    padding: 60px var(--space-md);
    align-content: start;
    padding-top: 100px;
  }

  #section-4 .section-4-sidebar {
    max-height: none;
  }

  #section-4 .section-4-featured {
    grid-template-columns: 1fr;
  }

  #section-4 .section-4-sidebar .press-card {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 16px;
  }
}

.press-dateline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 var(--space-lg);
}

.press-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.25rem);
  line-height: 1.2;
  margin: 0 0 var(--space-lg);
  font-weight: 600;
}

.press-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw + 0.8rem, 1.25rem);
  line-height: 1.9;
  color: var(--color-muted);
  margin: 0 0 var(--space-md);
}

.press-body:last-child {
  margin-bottom: 0;
}

/* --- Full press section (after scroll: Industry Coverage + grid + announcement) --- */
.press-section {
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-lg) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.press-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.press-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.press-section-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-muted);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.press-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.press-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.press-card .press-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.press-info {
  padding: var(--space-md);
}

.press-card .press-logo {
  width: 80px;
  height: 24px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 8px;
  opacity: 0.9;
}

.press-source {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.press-card .press-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-muted);
  margin: 0 0 12px;
}

.press-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.press-link:hover,
.press-link:focus-visible {
  color: #e0b83a;
}

.press-announcement-block {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.press-announcement-block .press-dateline {
  margin-bottom: var(--space-md);
}

.press-announcement-block .press-headline {
  margin-bottom: var(--space-md);
}

.press-announcement-block .press-body {
  text-align: left;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}

/* --- Collection form section --- */
.collect-section {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px var(--space-lg) 120px;
}

/* Background animation canvas (theh frames) */
.collect-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -2;
  pointer-events: none;
  object-fit: cover;
}

.collect-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
  z-index: -1;
}

.collect-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/filmgrain.png);
  opacity: .15;
  pointer-events: none;
  z-index: 1;
}

.collect-container {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  padding: 2rem 1rem;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.collect-close {
  display: none;
}

@media (max-width: 900px) {
  /* Remove all modal styles for contact form */
}

body.modal-open {
  /* Remove modal open styles */
}

.collect-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  border-radius: 999px;
}

.collect-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 18px 0 10px;
  letter-spacing: 0.02em;
}

.collect-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
  max-width: 60ch;
}

.collect-form {
  display: grid;
  gap: 18px;
}

.collect-field {
  display: grid;
  gap: 10px;
}

.collect-field label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.collect-field input,
.collect-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px); /* previously likely 10px, now 60% */
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}

.collect-field input {
  border-radius: 999px;
}

.collect-field textarea {
  border-radius: 28px;
  resize: vertical;
  min-height: 160px;
}

.collect-field input::placeholder,
.collect-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.collect-field input:focus-visible,
.collect-field textarea:focus-visible {
  outline: none;
  border-color: rgba(201, 162, 39, 0.6);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow:
    0 0 0 1px var(--color-accent),
    0 0 0 6px color-mix(in srgb, var(--color-accent) 28%, transparent),
    0 0 40px color-mix(in srgb, var(--color-accent) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.collect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}

.collect-submit {
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.collect-submit:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px var(--color-accent),
    0 0 0 6px color-mix(in srgb, var(--color-accent) 28%, transparent),
    0 0 46px color-mix(in srgb, var(--color-accent) 30%, transparent);
}

.collect-submit:active {
  transform: translateY(1px);
}

.collect-status {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.collect-status.success {
  color: #2ecc40;
}

.collect-status.error {
  color: #ff4136;
}

.collect-status.info {
  color: #c9a227;
}

@media (max-width: 640px) {
  .collect-section {
    padding: max(86px, calc(var(--header-h, 0px) + 32px)) 16px 110px;
  }

  /* Prevent iOS Safari input zoom */
  .collect-field input,
  .collect-field textarea {
    font-size: 16px;
  }

  .collect-actions {
    align-items: stretch;
  }

  .collect-submit {
    width: 100%;
    justify-content: center;
  }
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

/* --- Studio Overview + Projects --- */
.studio-overview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 6vw 120px;
  background: rgba(11, 11, 11, 0.9);
  color: #fff;
  --overview-logo-opacity: 0.12;
  --overview-logo-scale: 1;
  --overview-logo-y: 0px;
  --overview-logo-inset: -14vh -18vw;
  --overview-logo-size: min(140vw, 980px);
}

.studio-overview::before {
  content: none;
}

.studio-overview > * {
  position: relative;
  z-index: 1;
}

.studio-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 80px;
}

.studio-logo {
  min-width: 0;
}

.studio-logo img {
  width: 100%;
  max-width: 50%;
}

.studio-text h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-family: var(--font-heading);
  color: var(--color-accent);
}

.studio-text p {
  margin-bottom: 18px;
  line-height: 1.6;
  color: #d4d4d4;
}

.projects-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.projects-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.project-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.project-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px 14px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
}

.project-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.project-card:hover {
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.15);
}

@media (max-width: 900px) {
  .studio-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .studio-overview {
    padding: 0 4vw 40px;
  }
  .studio-text h2 {
    font-size: 1.35rem;
  }
  .projects-grid {
    gap: 10px;
  }
  .news-container {
    padding: 20px 12px;
    padding-top: 64px;
  }
  .news-sidebar .press-card {
    grid-template-columns: 52px 1fr;
    padding: 10px 12px;
  }
  .news-sidebar .press-card img {
    width: 52px;
    min-width: 52px;
  }
  .featured-card img {
    max-height: 140px;
  }

  .press-logos {
    gap: 10px;
    margin-top: 16px;
    padding-top: 12px;
  }

  .press-logos img {
    height: 6px;
  }
}

/* --- Sections flush, no gap between --- */
.stage,
.studio-overview,
.site-footer {
  margin: 0;
}

.theh-section {
  margin-top: 0;
}


.studio-overview {
  padding-top: 0;
}

.studio-top {
  padding-top: 0;
}

/* --- The H sequence (after Industry Coverage) --- */
@media (min-width: 901px) {
  .theh-section {
    position: relative;
    z-index: 5;
    height: 150vh;
    background: #000;
  }

  .theh-section #theh-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .theh-section {
    position: relative;
    z-index: 5;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    background: #000;
  }

  .theh-section #theh-canvas {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    display: block;
    opacity: 0;
    pointer-events: none;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .stage canvas {
    animation: none !important;
    transition: none !important;
  }

  .loader-spinner {
    animation: none;
  }

  .scroll-hint-arrow {
    animation: none;
  }
}

/* Hidden SEO context (not visible to users) */
.seo-context{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
  opacity:0;
  color:#000;
  background:transparent;
}
