:root {
  --bg: #0e0d0b;
  --surface: #141310;
  --surface2: #1a1916;
  --surface3: #211f1b;
  --border: #2a2825;
  --border2: #353330;
  --border3: #464340;
  --text: #f0ede8;
  --text2: #b8b4ae;
  --text3: #6e6b65;
  --gold: #c8a44a;
  --gold-lo: rgba(200, 164, 74, 0.07);
  --gold-mid: rgba(200, 164, 74, 0.20);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  min-height: 56px;
  background: rgba(14, 13, 11, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nav-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 28px;
}

.brand {
  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}

.brand span {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.18s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav .nav-pv {
  color: var(--gold);
  letter-spacing: 0.07em;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid var(--gold-mid);
  background: var(--gold-lo);
  transition: all 0.18s;
}

.site-nav .nav-pv:hover {
  background: var(--gold-mid);
  color: var(--gold);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.eyebrow,
.section-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow {
  margin-bottom: 20px;
}

.section-label {
  margin-bottom: 16px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--border2);
  flex-shrink: 0;
}

.section-h2 {
  font-family: "Lora", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text);
}

.section-h2 em,
.hero h1 em,
.page-title em,
.pv-copy h2 em {
  font-style: italic;
  color: var(--gold);
}

.hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 74, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero h1,
.page-title {
  font-family: "Lora", serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-lede,
.page-lede {
  font-size: 15px;
  font-weight: 400;
  color: var(--text2);
  line-height: 1.9;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-lede strong,
.page-lede strong,
.prose strong,
.thread-body strong,
.contact-item strong {
  color: var(--text);
  font-weight: 500;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn,
.btn-outline,
.btn-pv,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 5px;
  transition: all 0.2s;
}

.btn,
.btn-pv {
  background: var(--gold);
  color: var(--bg);
}

.btn:hover,
.btn-pv:hover {
  background: #d4b05e;
  transform: translateY(-1px);
}

.btn-outline,
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}

.btn-outline:hover {
  border-color: var(--gold-mid);
  color: var(--gold);
}

.btn-ghost {
  color: var(--text3);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border3);
}

.aside-card,
.pv-card,
.article-card,
.collection-card,
.film-card,
.note-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.aside-card {
  margin-top: 8px;
}

.aside-card::before,
.pv-card::before,
.article-card::before,
.collection-card::before,
.film-card::before,
.note-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.aside-card-head,
.pv-card-head,
.card-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aside-item,
.pv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}

.aside-item:last-child,
.pv-item:last-child {
  border-bottom: none;
}

.aside-item:hover,
.pv-item:hover {
  background: var(--surface2);
}

.aside-dot,
.pv-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.pv-dot {
  margin-top: 9px;
}

.aside-dot.gold,
.pv-dot.gold {
  background: var(--gold);
}

.aside-dot.dim,
.pv-dot.dim {
  background: var(--border3);
}

.aside-item-label {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
}

.aside-item-sub,
.meta,
.read-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.section.alt {
  background: var(--surface);
}

.page-hero {
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.about-layout,
.pv-layout,
.contact-layout,
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pv-layout {
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 64px;
}

.contact-layout {
  gap: 64px;
}

.prose p {
  font-size: 15px;
  color: var(--text2);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 16px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose em {
  font-style: italic;
  color: var(--gold);
}

.threads,
.list-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thread {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.thread:hover {
  background: var(--surface2);
  border-color: var(--gold-mid);
}

.thread-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 3px;
}

.thread-body strong {
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}

.thread-body span {
  font-size: 13px;
  color: var(--text2);
  font-weight: 400;
  line-height: 1.7;
}

.threads-grid,
.article-grid,
.collection-grid,
.film-grid,
.still-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.article-grid,
.collection-grid,
.film-grid {
  gap: 16px;
}

.home-film-grid {
  grid-template-columns: 1fr;
}

.article-card,
.film-card,
.note-card {
  padding: 24px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.article-card:hover,
.film-card:hover,
.note-card:hover {
  background: var(--surface2);
  border-color: var(--gold-mid);
  transform: translateY(-1px);
}

.article-card .meta,
.film-card .meta {
  margin-bottom: 14px;
}

.article-card h2,
.film-card h2,
.note-card h2,
.collection-card h2 {
  font-family: "Lora", serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: var(--text);
  margin-bottom: 12px;
}

.article-card p,
.film-card p,
.note-card p,
.collection-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.85;
}

.feature-film {
  background:
    radial-gradient(circle at 15% 0%, rgba(200, 164, 74, 0.09), transparent 32%),
    var(--surface);
}

.feature-film h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.film-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.film-status div {
  background: rgba(14, 13, 11, 0.36);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.film-status strong {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  color: var(--text3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.film-status span {
  display: block;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.45;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pv-band {
  background: #0a0906;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.pv-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(200, 164, 74, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.pv-layout {
  position: relative;
  z-index: 1;
}

.pv-copy h2 {
  font-family: "Lora", serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.pv-copy p {
  font-size: 15px;
  color: var(--text2);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 14px;
}

.pv-copy p:last-of-type {
  margin-bottom: 28px;
}

.pv-item {
  align-items: center;
}

.pv-item-text {
  font-size: 13px;
  color: var(--text);
  flex: 1;
}

.pv-item-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  color: var(--text3);
  letter-spacing: 0.06em;
  background: var(--surface3);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 3px;
}

.visual-panel,
.collection-image,
.film-still {
  min-height: 260px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.05), rgba(14, 13, 11, 0.72)),
    radial-gradient(circle at 22% 24%, rgba(200, 164, 74, 0.18), transparent 32%),
    linear-gradient(135deg, #25231e 0%, #151410 48%, #090806 100%);
  overflow: hidden;
  position: relative;
}

.visual-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.visual-panel::after,
.collection-image::after,
.film-still::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 237, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 237, 232, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.visual-caption,
.collection-caption,
.still-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card {
  transition: border-color 0.2s, transform 0.2s;
}

.collection-card[data-collection] {
  cursor: zoom-in;
}

.collection-card[data-collection]:focus {
  outline: 1px solid var(--gold-mid);
  outline-offset: 3px;
}

.collection-card:hover {
  border-color: var(--gold-mid);
  transform: translateY(-1px);
}

.collection-card h2,
.collection-card p {
  padding: 0 20px;
}

.collection-card h2 {
  margin-top: 20px;
}

.collection-card p {
  margin-bottom: 24px;
}

.collection-image {
  height: 320px;
  border: 0;
  border-radius: 0;
}

.collection-image img,
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.collection-card:hover .collection-image img,
.photo-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.05);
}

.collection-image::after {
  background: linear-gradient(180deg, rgba(14, 13, 11, 0.02) 0%, rgba(14, 13, 11, 0.22) 42%, rgba(14, 13, 11, 0.74) 100%);
  background-size: auto;
  opacity: 1;
}

.collection-image.roads {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.08), rgba(14, 13, 11, 0.78)),
    linear-gradient(118deg, transparent 0 42%, rgba(200, 164, 74, 0.22) 42% 44%, transparent 44%),
    linear-gradient(135deg, #25231e 0%, #11100d 100%);
}

.collection-image.bridges {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.06), rgba(14, 13, 11, 0.76)),
    repeating-linear-gradient(90deg, rgba(200, 164, 74, 0.16) 0 2px, transparent 2px 34px),
    linear-gradient(135deg, #2b2924 0%, #0d0c0a 100%);
}

.collection-image.towns {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.04), rgba(14, 13, 11, 0.72)),
    radial-gradient(circle at 30% 36%, rgba(240, 237, 232, 0.12), transparent 22%),
    linear-gradient(135deg, #302b22 0%, #12110e 100%);
}

.collection-image.morning {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.03), rgba(14, 13, 11, 0.7)),
    radial-gradient(circle at 72% 24%, rgba(200, 164, 74, 0.32), transparent 18%),
    linear-gradient(135deg, #322919 0%, #11100d 100%);
}

.collection-image.people {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.05), rgba(14, 13, 11, 0.78)),
    radial-gradient(circle at 50% 34%, rgba(240, 237, 232, 0.12), transparent 18%),
    linear-gradient(135deg, #282420 0%, #0c0b09 100%);
}

.collection-image.infrastructure {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.05), rgba(14, 13, 11, 0.76)),
    repeating-linear-gradient(135deg, rgba(200, 164, 74, 0.10) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #242526 0%, #0d0c0a 100%);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.photo-frame {
  border: 1px solid var(--border2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--surface2);
  cursor: zoom-in;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(14, 13, 11, 0.76) 100%);
  pointer-events: none;
}

.photo-frame.wide {
  grid-column: span 2;
}

.photo-frame.tall {
  grid-row: span 2;
}

.photo-frame figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 18px;
  padding: 56px 32px 32px;
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  justify-self: center;
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 120px);
}

.lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 170px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--border2);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-frame figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid var(--border2);
  background: rgba(20, 19, 16, 0.82);
  color: var(--text2);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--gold-mid);
  color: var(--gold);
  background: rgba(26, 25, 22, 0.96);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  padding: 8px 14px;
}

.lightbox-nav {
  width: 46px;
  height: 46px;
  justify-self: center;
  font-size: 18px;
  letter-spacing: 0;
}

.still-grid {
  grid-template-columns: repeat(3, 1fr);
}

.film-still {
  min-height: 180px;
}

.film-still.two {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.05), rgba(14, 13, 11, 0.76)),
    radial-gradient(circle at 66% 28%, rgba(200, 164, 74, 0.18), transparent 24%),
    linear-gradient(135deg, #1f2527 0%, #0d0c0a 100%);
}

.film-still.three {
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.05), rgba(14, 13, 11, 0.76)),
    radial-gradient(circle at 38% 40%, rgba(240, 237, 232, 0.10), transparent 22%),
    linear-gradient(135deg, #29251f 0%, #0d0c0a 100%);
}

.contact-section {
  padding: 72px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-mid);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text3);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.contact-item strong {
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 13px;
  color: var(--text2);
  font-weight: 400;
}

.contact-item a:hover {
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: "Lora", serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.footer-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.07em;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.18s;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-pv {
  color: var(--gold) !important;
}

.footer-pv:hover {
  color: #d4b05e !important;
}

.footer-right {
  text-align: right;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text3);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 16px;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-wrap,
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero,
  .page-hero {
    padding: 64px 0 56px;
  }

  .hero-layout,
  .about-layout,
  .pv-layout,
  .contact-layout,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .film-status {
    grid-template-columns: 1fr;
  }

  .threads-grid,
  .article-grid,
  .collection-grid,
  .film-grid,
  .still-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-auto-rows: 260px;
  }

  .photo-frame.wide,
  .photo-frame.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    padding: 64px 20px 24px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-frame img {
    max-height: calc(100vh - 190px);
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .footer-right {
    text-align: center;
  }
}
