
/* Force normal page scrolling */
html, body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Courier, "Courier New", monospace;
}
.topnav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.92);
  padding: 34px 6vw 24px;
}
.topnav nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 56px);
  flex-wrap: wrap;
}
.topnav a {
  color: #ddd;
  text-decoration: none;
  font-size: clamp(16px, 1.4vw, 24px);
  letter-spacing: 1px;
}
.topnav a:hover { color: #fff; }
.site-section {
  padding: 72px 5.5vw 40px;
  min-height: 100vh;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 116px);
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 70px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 42px 42px;
  align-items: start;
}
.card {
  display: block;
  position: relative;
  overflow: hidden;
  background: #050505;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 16 / 9;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 9px;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: Courier, "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(11px, 0.95vw, 15px);
  letter-spacing: 1.2px;
  line-height: 1.15;
    z-index: 5;
}
.card.not-clickable { cursor: default; }
.credits-copy {
  max-width: 850px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.5;
  letter-spacing: .02em;
}
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 640px) {
  .topnav { padding-top: 22px; }
  .grid { grid-template-columns: 1fr; }
  .site-section { padding-left: 22px; padding-right: 22px; }
  h1 { margin-bottom: 36px; }
}


.home-hero {
    max-width: 1280px;
    margin: 95px auto 220px;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1.08fr);
    gap: 58px;
    align-items: center;
}

.home-hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.home-hero-copy h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7vw, 116px);
    font-weight: 400;
    line-height: 0.9;
    margin: 0 0 34px;
    color: #fff;
}

.home-hero-copy p {
    font-family: Courier, "Courier New", monospace;
    font-size: clamp(16px, 1.35vw, 24px);
    line-height: 1.55;
    color: #fff;
    margin: 0;
}

@media (max-width: 850px) {
    .home-hero {
        grid-template-columns: 1fr;
        margin: 70px auto 90px;
        gap: 34px;
    }
}
