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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: none;
  min-height: 100vh;
}

/* ── Cursor ── */
.cursor {
  position: fixed;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 0.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}
body.hovering .cursor-ring { width: 50px; height: 50px; opacity: 0.25; }

/* ── Vignette ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Nav (inner pages) ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 3rem;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover { color: #fff; }

.nav-links a.active { color: #fff; }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 0.5px;
  background: rgba(255,255,255,0.4);
}


/* ── Homepage ── */
body.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  letter-spacing: 0.22em;
  line-height: 1;
  color: #fff;
  margin-right: -0.22em;
  user-select: none;
}

.rule {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin: 2.8rem auto;
}

.stage nav {
  display: flex;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.stage nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
  position: relative;
}

.stage nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 0.5px;
  background: rgba(255,255,255,0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage nav a:hover { color: #fff; }
.stage nav a:hover::after { transform: scaleX(1); }

.stamp {
  position: fixed;
  bottom: 2rem; right: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  z-index: 1;
}

.location {
  position: fixed;
  bottom: 2rem; left: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  z-index: 1;
}

/* ── Inner pages ── */
.page {
  padding: 9rem 3rem 5rem;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 4rem;
}

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

.slot {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0d0d0d;
  overflow: hidden;
  cursor: none;
}

.slot.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  z-index: 2;
}

.slot:hover .slot-overlay { background: rgba(0,0,0,0.55); }

.slot-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slot:hover .slot-label { opacity: 1; transform: translateY(0); }

.slot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.crosshair {
  width: 24px; height: 24px;
  position: relative;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.slot:hover .crosshair { opacity: 0; }

.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: #fff;
}

.crosshair::before { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.crosshair::after  { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }

.slot video,
.slot img,
.slot iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  border: none;
}

/* ── Contact page ── */
.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 9rem);
  text-align: center;
  gap: 3rem;
}

.contact-email {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 0.5px;
  background: rgba(255,255,255,0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-email:hover { color: #fff; }
.contact-email:hover::after { transform: scaleX(1); }

.contact-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.contact-social {
  display: flex;
  gap: 3rem;
}

.contact-social a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  text-decoration: none;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.contact-social a:hover { color: rgba(255,255,255,0.8); }

/* ── Footer ── */
footer {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

footer span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .site-nav { padding: 1.5rem; }
  .page { padding: 7rem 1.5rem 3rem; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .slot.featured { grid-column: span 2; }
  .nav-links { gap: 1.5rem; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .slot.featured { grid-column: span 1; }
}
