/* ============================================================
   REVOKE EPK - static styles
   ============================================================ */

/* ---- fonts ------------------------------------------------- */
@font-face {
  font-family: "Geist Sans";
  src: url("assets/fonts/geist-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Sans";
  src: url("assets/fonts/geist-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Sans";
  src: url("assets/fonts/geist-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Sans";
  src: url("assets/fonts/geist-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---- tokens ------------------------------------------------ */
:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --ink: #f2f0ea;
  --cream: #efe9d8;
  --dim: rgba(242, 240, 234, 0.62);
  --faint: rgba(242, 240, 234, 0.38);
  --line: rgba(242, 240, 234, 0.14);

  --sans: "Geist Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --pad-x: clamp(20px, 6vw, 80px);
  --maxw: 1500px;
}

/* ---- reset / base ------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 320px;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::selection {
  background: var(--cream);
  color: #0a0a0a;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.dim {
  color: var(--dim);
}

/* ---- mono micro-label -------------------------------------- */
.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---- grain overlay ----------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---- reveal hook (GSAP animates from this baseline) -------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(40px);
  }
}

/* ---- buttons ----------------------------------------------- */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.25rem;
  padding: 0 1.75rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.btn-primary {
  background: var(--cream);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ---- shared section --------------------------------------- */
.section {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(7rem, 14vw, 11rem) var(--pad-x);
}

/* ---- nav --------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease,
    border-color 0.5s ease;
}
.nav.is-scrolled {
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
}
.nav-links a {
  color: var(--dim);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--ink);
}

/* ---- hero -------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 520px;
  max-height: 100svh;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-line,
.hero-cue {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero {
    aspect-ratio: auto;
    min-height: 100svh;
    max-height: none;
    max-width: 100vw;
    overflow: hidden;
  }
  .hero-media {
    overflow: hidden;
  }
  .hero-img {
    transform: scale(1.08) translate(-2%, -4%);
    object-fit: cover;
    object-position: center;
  }
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(1) contrast(1.05);
  transform: scale(1.05);
}
.hero-wash-radial {
  display: none;
}
.hero-wash-linear {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--bg)
  );
}
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero-title {
  width: 100%;
  max-width: 1280px;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.035em;
  font-size: clamp(4rem, 14vw, 13rem);
}
.hero-sub {
  margin-top: 28px;
  max-width: 36rem;
  color: var(--dim);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: var(--dim);
  transition: color 0.2s ease;
}
.hero-cue:hover {
  color: var(--ink);
}

/* ---- about / bento ----------------------------------------- */
.about {
  /* uses .section spacing */
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(190px, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}
.bento-card {
  border: 1px solid var(--line);
}
.bento-intro {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
}
.bento-intro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: brightness(0.78) contrast(1.1);
  transition: transform 0.7s ease;
}
.bento-intro:hover .bento-intro-img {
  transform: scale(1.05);
}
.bento-intro-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg),
    rgba(7, 7, 7, 0.3),
    transparent
  );
}
.bento-intro-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: clamp(28px, 3vw, 40px);
}
.bento-intro-title {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}
.bento-intro-text {
  margin-top: 20px;
  max-width: 28rem;
  color: var(--dim);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}
.bento-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  grid-column: span 2;
  background: var(--bg-soft);
  padding: 28px;
  transition: border-color 0.3s ease;
}
.bento-text:hover {
  border-color: rgba(242, 240, 234, 0.3);
}
.bento-text-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  letter-spacing: -0.01em;
}
.bento-text-body {
  margin-top: 8px;
  color: var(--dim);
  font-size: 0.875rem;
  line-height: 1.6;
}
.bento-statement {
  display: flex;
  align-items: center;
  grid-column: span 6;
  background: var(--bg-soft);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
}
.bento-statement-text {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3.2vw, 3rem);
}

/* ---- marquee ----------------------------------------------- */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px) 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.marquee-item {
  padding: 0 32px;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgba(242, 240, 234, 0.85);
  font-size: clamp(2rem, 5vw, 4.5rem);
}
.marquee-slash {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(239, 233, 216, 0.4);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }
}

/* ---- featured ---------------------------------------------- */
.featured {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
}
.featured-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: brightness(0.7) contrast(1.1);
}
.featured-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg),
    rgba(7, 7, 7, 0.55),
    var(--bg)
  );
}
.featured-inner {
  margin: 0 auto;
  max-width: 48rem;
}
.featured-artist {
  margin-bottom: 12px;
  color: var(--dim);
}
.featured-title {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.035em;
  font-size: clamp(2.75rem, 9vw, 7.5rem);
}
.featured-story {
  margin-top: 28px;
  line-height: 1.3;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
}
.featured-story-accent {
  font-size: 1.1em;
}
.featured-embed {
  margin-top: 36px;
  border: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(4px);
}
.featured-embed iframe {
  display: block;
}
.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ---- performances ------------------------------------------ */
.perf-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.perf-title {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-size: clamp(2.25rem, 6vw, 5.5rem);
}
.perf-count {
  white-space: nowrap;
  padding-bottom: 8px;
}
.perf-list {
  border-top: 1px solid var(--line);
}
.perf-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(18px, 2.6vw, 28px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}
.perf-row:hover {
  padding-left: 12px;
}
.perf-idx {
  width: 2rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.perf-row:hover .perf-idx {
  color: var(--cream);
}
.perf-name {
  flex: 1;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 4vw, 3.25rem);
}
.perf-arrow {
  font-family: var(--mono);
  font-size: 1.125rem;
  color: var(--faint);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.perf-row:hover .perf-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- gallery ----------------------------------------------- */
.gallery {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 0 var(--pad-x);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(40px, 6vw, 64px);
}
.gallery-pin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100svh;
}
.gallery-eyebrow {
  margin-bottom: 20px;
}
.gallery-title {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.03em;
  font-size: clamp(2.5rem, 5vw, 5rem);
}
.gallery-title-accent {
  text-transform: lowercase;
  letter-spacing: 0;
}
.gallery-text {
  margin-top: 24px;
  max-width: 20rem;
  color: var(--dim);
  font-size: 0.875rem;
  line-height: 1.6;
}
.gallery-shots {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.6vw, 24px);
  padding: clamp(7rem, 14vw, 11rem) 0;
}
.gallery-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-shot.ratio-43 {
  aspect-ratio: 4 / 3;
}
.gallery-shot.ratio-45 {
  aspect-ratio: 4 / 5;
}
.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
/* ---- press ------------------------------------------------- */
.press-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: flex-end;
  gap: clamp(40px, 6vw, 64px);
}
.press-source {
  margin-bottom: 24px;
}
.press-link-wrap {
  display: block;
}
.press-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  transition: color 0.3s ease;
}
.press-link-wrap:hover .press-title {
  color: var(--cream);
}
.press-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.press-link-wrap:hover .press-cta {
  border-color: var(--ink);
}
.press-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.press-link-wrap:hover .press-cta-arrow {
  transform: translateX(4px);
}
.press-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}
.press-figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.05);
}

/* ---- contact ----------------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: clamp(7rem, 14vw, 11rem) var(--pad-x) 0;
}
.contact-inner {
  margin: 0 auto;
  max-width: var(--maxw);
}
.contact-eyebrow {
  margin-bottom: 24px;
}
.contact-title {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.035em;
  font-size: clamp(2.75rem, 9vw, 8rem);
}
.contact-title-accent {
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--cream);
}
.contact-email {
  display: inline-block;
  margin-top: 48px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(1.35rem, 3.4vw, 3rem);
  transition: border-color 0.3s ease;
}
.contact-email:hover {
  border-color: var(--ink);
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 40px;
}
.contact-social {
  color: var(--dim);
  transition: color 0.2s ease;
}
.contact-social:hover {
  color: var(--ink);
}
.contact-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(5rem, 8vw, 7rem);
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.contact-watermark {
  margin-top: 8px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.72;
  letter-spacing: -0.04em;
  color: rgba(242, 240, 234, 0.05);
  font-size: clamp(5rem, 24vw, 22rem);
  user-select: none;
  pointer-events: none;
}

/* ---- responsive -------------------------------------------- */
@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-intro,
  .bento-text,
  .bento-statement {
    grid-column: auto;
    grid-row: auto;
  }
  .bento-intro {
    min-height: 460px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gallery-pin {
    height: auto;
    padding-top: clamp(7rem, 14vw, 11rem);
  }
  .gallery-shots {
    padding-top: clamp(2rem, 6vw, 4rem);
  }
  .press-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .press-figure {
    order: -1;
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a[href="#featured"],
  .nav-links a[href="#press"] {
    display: none;
  }
  .hero-cue {
    display: none;
  }
  .perf-count {
    display: none;
  }
  .featured-actions .btn-primary,
  .featured-actions .btn-ghost,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
  }
  .contact-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
