/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — CSS Custom Properties
═══════════════════════════════════════════════════════════════ */
:root {
  --black: #000000;
  --black-soft: #020408;
  --black-mid: #07090f;
  --navy-deep: #0a1220;
  --navy: #1a2a42;
  --blue-accent: #3d6cbf;
  --blue-muted: #7b9cce;
  --white-bright: #f4f5f9;
  --white-dim: #e0e4f0;
  --white-ghost: rgba(210, 220, 245, 0.55);
  --border: rgba(61, 108, 191, 0.12);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  cursor: none;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  background: var(--black);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button, input, textarea {
  font-family: inherit;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
}

.grain svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease;
}

.loader--hidden {
  opacity: 0;
  pointer-events: none;
}

.loader__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: var(--white-bright);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--white-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-dot--hover {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-ring--hover {
  width: 48px;
  height: 48px;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════════════════════════
   PLACEHOLDERS (graceful image fallback)
═══════════════════════════════════════════════════════════════ */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--black-soft);
  border: 0.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
  text-transform: uppercase;
}

.placeholder--small {
  width: 160px;
  height: 100px;
}

/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════════════════════ */
.section-ghost-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 160px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(123, 156, 206, 0.18);
  margin-bottom: 16px;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--blue-accent);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--blue-accent);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--white-dim);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  font-weight: 700;
  background: var(--blue-accent);
  color: #000;
  padding: 10px 24px;
  border: none;
  transition: background 0.2s ease;
}

.nav__cta:hover {
  background: var(--blue-muted);
}

.nav__hamburger {
  display: none;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  background: none;
  border: none;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 99;
}

.mobile-nav--open {
  display: flex;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white-dim);
  transition: color 0.2s ease;
}

.mobile-nav__link:hover {
  color: var(--blue-accent);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
}

.hero__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  flex: 1;
  min-height: calc(100vh - 52px);
}

.hero__left {
  padding: 160px 72px 80px;
  display: flex;
  flex-direction: column;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue-accent);
}

.hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--blue-accent);
}

.hero__headline {
  margin-bottom: 0;
}

.hero__headline-line {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 88px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white-bright);
}

.hero__headline-line--ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(180, 200, 240, 0.18);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--white-ghost);
  line-height: 2.2;
  margin-top: 36px;
  letter-spacing: 0.04em;
}

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
  padding-top: 16px;
}

.hero__scroll-line {
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--white-ghost);
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: 40px;
  border-top: 0.5px solid var(--border);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--white-bright);
}

.hero__stat-plus {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--blue-accent);
  vertical-align: super;
}

.hero__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  margin-top: 8px;
}

/* Hero Right */
.hero__right {
  background: var(--black-soft);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__orb {
  display: none;
}

/* Hero Slideshow */
.hero__slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide--active {
  opacity: 1;
}

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

.hero__slide .placeholder {
  position: absolute;
  inset: 0;
}

.hero__slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero__vertical-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
  opacity: 0.15;
  white-space: nowrap;
}

.hero__floating-card {
  position: absolute;
  bottom: 120px;
  left: 40px;
  background: rgba(2, 4, 8, 0.94);
  border: 0.5px solid var(--border);
  padding: 18px 22px;
}

.hero__floating-card-label {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
  margin-bottom: 8px;
}

.hero__floating-card-title {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--white-dim);
}

.hero__floating-card-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--blue-accent);
  margin-top: 6px;
}

.hero__badge {
  position: absolute;
  top: 120px;
  right: 40px;
  background: rgba(2, 4, 8, 0.94);
  border: 0.5px solid var(--border);
  padding: 18px 22px;
  text-align: center;
}

.hero__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-accent);
}

.hero__badge-label {
  display: block;
  font-family: var(--font-body);
  font-size: 7px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
  margin-top: 4px;
}

.hero__dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__dot {
  display: block;
  width: 6px;
  height: 6px;
  border: 0.5px solid var(--white-ghost);
  border-radius: 50%;
}

.hero__dot--active {
  width: 6px;
  height: 16px;
  border-radius: 0;
  background: var(--blue-accent);
  border-color: var(--blue-accent);
}

/* Hero Bottom Bar */
.hero__bottom {
  border-top: 0.5px solid var(--border);
  padding: 16px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__tabs {
  display: flex;
  gap: 0;
}

.hero__tab {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  padding: 0 20px;
  border-right: 0.5px solid var(--border);
}

.hero__tab:first-child {
  padding-left: 0;
}

.hero__tab--active {
  color: var(--blue-accent);
}

.hero__bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__socials {
  display: flex;
  gap: 12px;
}

.hero__social {
  width: 28px;
  height: 28px;
  border: 0.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--white-ghost);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero__social:hover {
  border-color: var(--blue-accent);
  color: var(--blue-accent);
}

.hero__copyright {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--black);
  padding: 120px 72px;
}

.about__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
}

.about__left {
  display: flex;
  flex-direction: column;
}

.about__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

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

.about__right {
  padding-top: 80px;
}

.about__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.about__eyebrow-line {
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--white-ghost);
}

.about__eyebrow-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
}

.about__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white-bright);
  line-height: 1.1;
  margin-bottom: 40px;
}

.about__body p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white-ghost);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.about__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about__tag {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  border: 0.5px solid var(--border);
  padding: 8px 16px;
  color: var(--blue-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FILMS
═══════════════════════════════════════════════════════════════ */
.films {
  background: var(--black-mid);
  padding: 120px 72px;
}

.films__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 64px;
}

.films__header-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.films__header-left .section-ghost-number {
  font-size: 80px;
  margin-bottom: 16px;
}

.films__header-right {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--white-ghost);
  letter-spacing: 0.18em;
}

.films__row {
  display: grid;
  grid-template-columns: 60px 1fr 200px;
  align-items: start;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 0.5px solid var(--border);
  transition: background 0.25s ease;
}

.films__row:hover {
  background: rgba(10, 18, 32, 0.6);
}

.films__row:hover .films__title {
  color: var(--blue-muted);
}

.films__number {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--blue-accent);
  letter-spacing: 0.2em;
}

.films__info {
  min-width: 0;
}

.films__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: var(--white-bright);
  transition: color 0.25s ease;
}

.films__credit {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--white-ghost);
  margin-top: 8px;
  letter-spacing: 0.18em;
}

.films__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-ghost);
  max-width: 480px;
  margin-top: 12px;
  line-height: 1.8;
}

.films__tag {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--blue-muted);
  border: 0.5px solid var(--border);
  padding: 6px 14px;
  white-space: nowrap;
}

.films__year {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--blue-accent);
}

.films__meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.films__status {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  font-variant: small-caps;
  color: var(--blue-accent);
  border: 0.5px solid var(--blue-accent);
  padding: 4px 10px;
}

.films__link {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  font-variant: small-caps;
  color: var(--blue-muted);
  transition: color 0.2s ease;
}

.films__link:hover {
  color: var(--white-dim);
}

.films__link-arrow {
  color: var(--blue-accent);
  margin-right: 4px;
}

.films__thumb {
  width: 100%;
  max-width: 160px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  grid-row: 1;
  grid-column: 3;
  border-radius: 4px;
  justify-self: end;
  margin-right: 24px;
}

.films__thumb--landscape {
  width: 100%;
  max-width: 200px;
  height: 130px;
}

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

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.gallery {
  background: var(--black);
  padding: 120px 72px;
}

.gallery__header {
  margin-bottom: 48px;
}

.gallery__filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.gallery__pill {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  border: 0.5px solid var(--border);
  padding: 8px 18px;
  background: transparent;
  color: var(--white-ghost);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery__pill--active {
  background: var(--blue-accent);
  color: #000;
  border-color: var(--blue-accent);
}

.gallery__pill:hover:not(.gallery__pill--active) {
  border-color: var(--blue-muted);
  color: var(--white-dim);
}

.gallery__grid {
  columns: 4;
  column-gap: 4px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
  border: 0.5px solid var(--border);
  margin-bottom: 4px;
  break-inside: avoid;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.gallery__caption-title {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--white-dim);
  letter-spacing: 0.18em;
}

.gallery__caption-cat {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--blue-accent);
  margin-top: 4px;
  letter-spacing: 0.18em;
}

/* Hidden state handled by JS removing/re-adding items */

/* ═══════════════════════════════════════════════════════════════
   EXHIBITIONS
═══════════════════════════════════════════════════════════════ */
.exhibitions {
  background: var(--black-soft);
  padding: 120px 72px;
}

.exhibitions__header {
  margin-bottom: 64px;
}

.exhibitions__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.exhibitions__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.exhibitions__date {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
}

.exhibitions__status {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  font-variant: small-caps;
  color: var(--blue-accent);
  border: 0.5px solid var(--blue-accent);
  padding: 4px 10px;
}

.exhibitions__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--white-bright);
  line-height: 1.1;
  margin-bottom: 12px;
}

.exhibitions__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--blue-muted);
  margin-bottom: 24px;
}

.exhibitions__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-ghost);
  line-height: 1.9;
  margin-bottom: 16px;
}

.exhibitions__purpose {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--blue-accent);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}

.exhibitions__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.exhibitions__tag {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  border: 0.5px solid var(--border);
  padding: 8px 16px;
  color: var(--blue-muted);
}

.exhibitions__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.exhibitions__images--portrait {
  grid-template-columns: 1fr 1fr 1fr;
}

.exhibitions__img {
  overflow: hidden;
  background: var(--black-mid);
  border: 0.5px solid var(--border);
  aspect-ratio: 3/4;
}

.exhibitions__images--portrait .exhibitions__img:first-child {
  grid-column: auto;
  aspect-ratio: 3/4;
}

.exhibitions__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exhibitions__img:hover img {
  transform: scale(1.04);
}

.exhibitions__link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-accent);
  border-bottom: 1px solid var(--blue-accent);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.exhibitions__link:hover {
  color: var(--blue-muted);
  border-color: var(--blue-muted);
}

@media (max-width: 768px) {
  .exhibitions {
    padding: 80px 32px;
  }

  .exhibitions__featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exhibitions__title {
    font-size: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RECOGNITION
═══════════════════════════════════════════════════════════════ */
.recognition {
  background: var(--black-mid);
  padding: 120px 72px;
  overflow: hidden;
}

.recognition__header {
  margin-bottom: 64px;
}

/* Marquee */
.marquee {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 32px 0;
  margin-bottom: 80px;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.marquee__item {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--white-ghost);
  white-space: nowrap;
}

.marquee__sep {
  color: var(--blue-accent);
  font-size: 20px;
}

.marquee__item--logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.marquee__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%) brightness(1.8);
  transition: opacity 0.3s, filter 0.3s;
}

.marquee__logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Awards Logos */
.awards-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.awards-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-logos__item img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.awards-logos__item img:hover {
  opacity: 1;
}

/* Awards List */
.awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.awards__item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 0.5px solid var(--border);
}

.awards__number {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--blue-accent);
  letter-spacing: 0.2em;
}

.awards__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--white-bright);
  margin-top: 8px;
}

.awards__context {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--white-ghost);
  margin-top: 6px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--black);
  padding: 120px 72px;
}

.services__header {
  margin-bottom: 24px;
}

.services__subheading {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--white-dim);
  margin-bottom: 80px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.services__card {
  background: var(--black);
  padding: 48px 40px;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.services__card:hover {
  background: var(--black-soft);
  border-left-color: var(--blue-accent);
}

.services__card-number {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--blue-accent);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.services__icon {
  width: 32px;
  height: 32px;
}

.services__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white-bright);
  margin-top: 20px;
}

.services__card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-ghost);
  line-height: 1.9;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--black-soft);
  padding: 120px 72px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact__heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  color: var(--white-bright);
  line-height: 1.0;
  margin-top: 16px;
}

.contact__body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-ghost);
  line-height: 1.9;
  margin-top: 32px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.contact__ext-link {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--blue-muted);
  transition: color 0.2s ease;
}

.contact__ext-link:hover {
  color: var(--white-dim);
}

.contact__arrow {
  color: var(--blue-accent);
  margin-right: 8px;
}

.contact__right {
  padding-top: 60px;
}

.contact__field {
  margin-bottom: 40px;
}

.contact__label {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  margin-bottom: 12px;
}

.contact__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border);
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white-dim);
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}

.contact__input:focus {
  border-bottom-color: var(--blue-accent);
}

.contact__input::placeholder {
  color: var(--white-ghost);
}

/* Kill browser autofill white background */
.contact__input:-webkit-autofill,
.contact__input:-webkit-autofill:hover,
.contact__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--black-soft) inset;
  -webkit-text-fill-color: var(--white-dim);
  border-bottom: 0.5px solid var(--border);
  transition: background-color 5000s ease-in-out 0s;
}

/* Success message after form submit */
.contact__success {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--blue-accent);
  letter-spacing: 0.04em;
  line-height: 1.9;
  padding: 48px 0;
}

.contact__success span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  margin-top: 12px;
}

.contact__submit {
  width: 100%;
  background: var(--blue-accent);
  color: #000;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  font-weight: 700;
  padding: 16px;
  border: none;
  margin-top: 16px;
  transition: background 0.2s ease;
}

.contact__submit:hover {
  background: var(--blue-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: #000;
  border-top: 0.5px solid var(--border);
  padding: 32px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
}

.footer__center {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.22em;
  font-variant: small-caps;
  color: var(--white-ghost);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--blue-accent);
}

.footer__right {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 28px;
  height: 28px;
  border: 0.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--white-ghost);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__social:hover {
  border-color: var(--blue-accent);
  color: var(--blue-accent);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 20px 32px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: block;
  }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__left {
    padding: 140px 32px 60px;
  }

  .hero__headline-line {
    font-size: 56px;
  }

  .hero__right {
    display: none;
  }

  .hero__bottom {
    padding: 16px 32px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__tabs {
    display: none;
  }

  /* About */
  .about {
    padding: 80px 32px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__right {
    padding-top: 0;
  }

  .about__heading {
    font-size: 36px;
  }

  .section-ghost-number {
    font-size: 100px;
  }

  /* Films */
  .films {
    padding: 80px 32px;
  }

  .films__row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .films__tag,
  .films__thumb {
    display: none;
  }

  .films__year {
    grid-column: 2;
    margin-top: -8px;
  }

  .films__title {
    font-size: 22px;
  }

  /* Gallery */
  .gallery {
    padding: 80px 32px;
  }

  .gallery__grid {
    columns: 2;
  }

  /* Recognition */
  .recognition {
    padding: 80px 32px;
  }

  .awards-logos {
    gap: 12px;
  }

  .awards-logos__item img {
    height: 60px;
  }

  .awards {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services {
    padding: 80px 32px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__subheading {
    font-size: 20px;
    margin-bottom: 48px;
  }

  /* Contact */
  .contact {
    padding: 80px 32px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__heading {
    font-size: 40px;
  }

  .contact__right {
    padding-top: 0;
  }

  /* Footer */
  .footer {
    padding: 32px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__left {
    flex-direction: column;
    gap: 8px;
  }

  .footer__center {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Tablet tweaks */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery__grid {
    columns: 3;
  }
}
