/* ============================================
   121212.CULTURE — Design System
   ============================================ */

:root {
  --black: #1a1a1a;
  --black-mid: #2a2a2a;
  --red: #c41e3a;
  --red-dark: #8b1528;
  --green: #2d5f3f;
  --tan: #f4e4c1;
  --white: #ffffff;
  --gold: #D4AF37;
  --gold-dim: #a88c28;

  /* Category colors */
  --cat-art: #c41e3a;
  --cat-fashion: #2d5f3f;
  --cat-film: #8b6914;
  --cat-design: #1a4a7a;
  --cat-photography: #5a3a6a;

  /* Typography */
  --font-editorial: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --nav-height: 70px;
  --section-pad: 80px;

  /* Transitions */
  --ease: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-editorial);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.serif { font-family: var(--font-editorial); }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.gold { color: var(--gold); }
.red { color: var(--red); }
.tan { color: var(--tan); }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--ease);
  cursor: pointer;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,30,58,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--black);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--ease);
}

#main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo .logo-num { color: var(--gold); }
.nav-logo .logo-ext { color: var(--white); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1508214751196-bcfd4ca60f91?w=1400&fit=crop');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.35;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(196,30,58,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline .accent-red {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  opacity: 0.4;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   CATEGORY FILTER PILLS
   ============================================ */

#category-bar {
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 0;
  transition: box-shadow var(--ease);
}

#category-bar.stuck {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.pill-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pill-scroll::-webkit-scrollbar { display: none; }

.pill {
  flex-shrink: 0;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: all var(--ease);
}
.pill:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================
   FEATURED SPOTLIGHT
   ============================================ */

#spotlight {
  background: var(--black);
  padding: var(--section-pad) 0;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background: var(--black-mid);
}

.spotlight-image-wrap {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.spotlight-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spotlight-card:hover .spotlight-image-wrap img {
  transform: scale(1.03);
}

.spotlight-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  z-index: 2;
}

.spotlight-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-discipline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.spotlight-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.spotlight-content p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 420px;
}

.spotlight-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.spotlight-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.spotlight-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-meta-text .name {
  font-weight: 700;
  font-size: 0.95rem;
}
.spotlight-meta-text .title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}

/* ============================================
   CULTURE GRID (MASONRY)
   ============================================ */

#culture-grid-section {
  background: var(--black);
  padding: var(--section-pad) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header h2 {
  max-width: 600px;
}

.view-all-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color var(--ease);
}
.view-all-link:hover { border-color: var(--gold); }

.masonry-grid {
  columns: 3;
  column-gap: 1.25rem;
}

.culture-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.culture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.culture-card-img {
  position: relative;
  overflow: hidden;
}

.culture-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.culture-card:hover .culture-card-img img {
  transform: scale(1.05);
}

.cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  color: var(--white);
}

.cat-art    { background: var(--cat-art); }
.cat-fashion { background: var(--cat-fashion); }
.cat-film   { background: var(--cat-film); }
.cat-design { background: var(--cat-design); }
.cat-photography { background: var(--cat-photography); }

.culture-card-body {
  padding: 1.25rem;
}

.culture-card-body h4 {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.card-creator {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.card-excerpt {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Hidden state for filter */
.culture-card.hidden {
  display: none;
}

/* ============================================
   FASHION EDITORIAL STRIP
   ============================================ */

#fashion {
  background: #111111;
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fashion-headline-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.fashion-headline-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.fashion-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
  -webkit-overflow-scrolling: touch;
}
.fashion-scroll-track::-webkit-scrollbar {
  height: 3px;
}
.fashion-scroll-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}
.fashion-scroll-track::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

.designer-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--black-mid);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--ease);
}
.designer-card:hover {
  transform: translateY(-4px);
}

.designer-card-img {
  height: 340px;
  overflow: hidden;
}
.designer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.designer-card:hover .designer-card-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.designer-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.designer-location {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.designer-card-body h3 {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.designer-specialty {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FILM SECTION
   ============================================ */

#film {
  background: #0e0e0e;
  padding: var(--section-pad) 0;
}

.film-header {
  margin-bottom: 2.5rem;
}

.film-header h2 {
  letter-spacing: -0.02em;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.film-card {
  background: var(--black-mid);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.film-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.film-poster {
  position: relative;
  padding-top: 150%;
  overflow: hidden;
}

.film-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.film-card:hover .film-poster img {
  transform: scale(1.04);
}

.film-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
  z-index: 1;
}

.genre-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

.film-card-body {
  padding: 1.25rem;
}

.film-card-body h3 {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.film-director {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ============================================
   SUBMIT YOUR WORK CTA
   ============================================ */

#submit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.submit-left {
  background: var(--red);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.submit-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.submit-left p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.submit-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--ease);
  border-radius: 2px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.6);
}

.form-field select option {
  background: var(--black);
  color: var(--white);
}

.form-field textarea {
  resize: none;
  min-height: 90px;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  transition: all var(--ease);
  cursor: pointer;
}

.form-submit-btn:hover {
  background: transparent;
  border-color: var(--white);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
}
.form-success h3 {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.submit-right {
  background: var(--black);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.submit-right h3 {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: var(--gold);
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reason-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.reason-number {
  font-family: var(--font-editorial);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(212,175,55,0.2);
  flex-shrink: 0;
  width: 50px;
}

.reason-content h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.reason-content p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand .logo .gold { color: var(--gold); }
.footer-brand .logo .white { color: var(--white); font-weight: 300; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.empire-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.35rem 0.85rem;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-empire-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.empire-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.footer-empire-bar span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .spotlight-image-wrap {
    min-height: 380px;
  }

  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --section-pad: 60px;
  }

  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(2.5rem, 10vw, 4.5rem); }

  .masonry-grid {
    columns: 1;
  }

  .film-grid {
    grid-template-columns: 1fr;
  }

  .film-poster { padding-top: 56%; }

  #submit {
    grid-template-columns: 1fr;
  }

  .submit-left,
  .submit-right {
    padding: 3rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spotlight-content {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.55s; opacity: 0; }

/* Intersection observer fade */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
