/* ─────────────────────────────────────────────────────────────────────────
   SAKI BERGH — sakibergh.com
   Custom static site · dark cinematic edition
   ───────────────────────────────────────────────────────────────────────── */

/* ── Reset & base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #f0c545;
  --gray:    #a3a2a2;
  --bg:      #0e0e0e;
  --bg2:     #141414;
  --white:   #f0f0f0;
  --overlay: rgba(10,10,10,0.62);
  --font-h:  'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-b:  'Work Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--white);
  cursor: none;
}

body {
  font-family: var(--font-b);
  font-weight: 300;
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { background: none; border: none; cursor: none; color: inherit; }

/* ── Custom Cursor ─────────────────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(240,197,69,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.2s;
}

body.hovering #cursor-dot  { width: 10px; height: 10px; background: var(--gold); }
body.hovering #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }

/* ── Navigation ────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.4s, background 0.4s, backdrop-filter 0.4s;
}

#nav.scrolled {
  padding: 18px 48px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--gold);
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-bottom: 8vh;
}

/* Gold rule — draws from centre outward via JS width animation */
.hero-rule {
  display: none;
}

.hero-rule::before,
.hero-rule::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 0%;
  transition: width 0.8s ease-out;
}

.hero-rule::before {
  right: 50%;
  background: linear-gradient(to left, var(--gold), rgba(240,197,69,0.15));
}
.hero-rule::after {
  left: 50%;
  background: linear-gradient(to right, var(--gold), rgba(240,197,69,0.15));
}

.hero-rule.animate::before,
.hero-rule.animate::after { width: 50%; }

/* Centre dot */
.hero-rule .dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 8px var(--gold);
  opacity: 0;
  transition: opacity 0.4s 0.4s;
}
.hero-rule.animate .dot { opacity: 1; }

/* Name */
.hero-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(64px, 10vw, 148px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
  user-select: none;
  text-shadow:
    0 0 60px rgba(240,197,69,0.35),
    0 0 120px rgba(240,197,69,0.12);
}

.hero-name .l {
  display: inline-block;
  opacity: 0;
  transform: translateX(0) scale(0.35);
}
.hero-name .l.gap { letter-spacing: 0.12em; }

/* FILM EDITOR */
.hero-title {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: clamp(12px, 1.4vw, 18px);
  letter-spacing: 0.22em;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
  margin-top: 6px;
}

.hero-thin-rule {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  margin: 12px auto;
  transition: opacity 0.6s 0.1s, width 0.6s 0.1s;
}

.hero-cred {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gray);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}

.hero-url {
  font-family: var(--font-b);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(163,162,162,0.4);
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}

/* Animate in when class added */
.hero-content.revealed .hero-title,
.hero-content.revealed .hero-cred { opacity: 1; transform: translateY(0); }
.hero-content.revealed .hero-thin-rule { opacity: 0.6; }
.hero-content.revealed .hero-url { opacity: 1; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: scrollFade 2s 3s forwards;
}

.scroll-cue span {
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(163,162,162,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(240,197,69,0.5), transparent);
  animation: scrollPulse 2s 3s infinite;
}

@keyframes scrollFade { to { opacity: 1; } }
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.3; }
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section {
  padding: 100px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 60px;
}

.section-head h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 16px;
}

.h-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
}

/* ── Work Grid ──────────────────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: none;
}

.card::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.card-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.85);
}

.card:hover .card-thumb {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.3) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover .card-overlay { opacity: 1; }

.card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  opacity: 0;
}

.card:hover .card-info { transform: translateY(0); opacity: 1; }

.card-brand {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}

.card-title {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(240,240,240,0.75);
  display: block;
}

/* Gold accent line at left on hover */
.card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.card:hover::after { height: 100%; }

/* Play icon */
.card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.7);
  width: 52px; height: 52px;
  border: 1.5px solid rgba(240,197,69,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.card-play svg {
  width: 16px; height: 16px;
  fill: var(--gold);
  margin-left: 3px;
}
.card:hover .card-play {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

/* ── Archive Grid ────────────────────────────────────────────────────────── */
#archive {
  background: var(--bg2);
  max-width: 100%;
  padding: 100px calc((100% - 1600px) / 2 + 48px);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.archive-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: none;
}
.archive-card::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.archive-card .card-thumb {
  position: absolute;
  inset: 0;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 0.6s, filter 0.4s;
}
.archive-card:hover .card-thumb {
  transform: scale(1.05);
  filter: brightness(0.5) saturate(0.6);
}
.archive-card .card-overlay,
.archive-card .card-info { /* inherit from .card styles */ }
.archive-card .card-brand { font-size: 11px; }
.archive-card .card-title { font-size: 10px; }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-section {
  padding: 120px 48px;
  max-width: 1400px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-photo img {
  object-position: top center;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.8s ease;
}

.about-photo:hover img { transform: scale(1.03); }

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10,10,10,0.4) 100%
  );
}

/* Gold frame accent */
.about-photo::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240,197,69,0.2);
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.4s;
}
.about-photo:hover::before { border-color: rgba(240,197,69,0.45); }

.about-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.1em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
}

.about-rule {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 14px;
}

.about-role {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 36px;
}

.about-bio p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 18px;
}

.about-awards {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 16px !important;
  letter-spacing: 0.08em;
  color: var(--white) !important;
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(240,197,69,0.2);
}

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-section {
  max-width: 100%;
  padding: 120px 0 0;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px 80px;
}

.contact-name-block h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.16em;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(240,197,69,0.2);
}

.contact-name-block p {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-top: 8px;
}

.contact-rule {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 36px auto;
}

.contact-email {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--white);
  transition: color 0.3s;
}
.contact-email:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 36px;
  margin-top: 32px;
}

.contact-social a {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
}
.contact-social a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.contact-social a:hover { color: var(--white); }
.contact-social a:hover::after { width: 100%; }

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(163,162,162,0.3);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  width: 100%;
  text-align: center;
}

/* ── Video Modal ─────────────────────────────────────────────────────────── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.95);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(8px);
}
.modal-bg.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal.open { opacity: 1; pointer-events: all; }

.modal-close {
  position: absolute;
  top: 28px; right: 36px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: color 0.3s, transform 0.3s;
  cursor: none;
}
.modal-close:hover { color: var(--gold); transform: rotate(90deg); }

.modal-body {
  width: 100%;
  max-width: 1100px;
}

.modal-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.06);
}
.modal-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.modal-brand {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 18px;
}
.modal-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 4px;
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Vignette on sections ────────────────────────────────────────────────── */
#work, #music { padding-top: 110px; }

/* ── Films Page ─────────────────────────────────────────────────────────── */

.nav-active {
  color: var(--gold) !important;
}
.nav-active::after { width: 100% !important; }

.films-hero {
  height: 42vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 72px;
  background: linear-gradient(to bottom, #0a0a0a 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.films-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,197,69,0.06) 0%, transparent 70%);
}

.films-hero-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.films-hero-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(163,162,162,0.4);
  margin-bottom: 14px;
}

.films-hero-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 60px rgba(240,197,69,0.25);
}

.films-hero-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 20px;
  opacity: 0.7;
}

.films-section {
  padding-top: 40px;
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.film-card {
  cursor: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.film-thumb {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.film-thumb::before {
  content: '';
  display: block;
  padding-top: 150%; /* portrait poster ratio */
}

.film-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
}

.film-card:hover .film-thumb img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.film-thumb .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.film-card:hover .film-thumb .card-overlay { opacity: 1; }

.film-thumb .card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.7);
  width: 60px; height: 60px;
  border: 1.5px solid rgba(240,197,69,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.film-thumb .card-play svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  margin-left: 4px;
}
.film-card:hover .film-thumb .card-play {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

/* Gold accent on left edge */
.film-thumb::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.film-card:hover .film-thumb::after { height: 100%; }

.film-info {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}

.film-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.film-year {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.film-festivals {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(240,197,69,0.1);
}

.film-festivals li {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray);
  padding-left: 12px;
  position: relative;
}

.film-festivals li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
  .films-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #nav { padding: 20px 24px; }
  #nav.scrolled { padding: 16px 24px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 40px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 13px; }
  .nav-burger { display: flex; }

  .hero-name { font-size: clamp(48px, 11vw, 80px); }

  .section { padding: 80px 24px; }
  #archive { padding: 80px 24px; }
  .about-section { padding: 80px 24px; }
  .contact-inner { padding: 0 24px 60px; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-photo { aspect-ratio: 4/3; max-width: 500px; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .films-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }

  #cursor-dot, #cursor-ring { display: none; }
  html { cursor: auto; }
  button, a { cursor: pointer; }
}

@media (max-width: 600px) {
  .hero-rule { width: 90vw; }
  .work-grid  { grid-template-columns: 1fr; gap: 2px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .films-grid { grid-template-columns: 1fr; }
  .contact-social { gap: 20px; }
}
