@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("assets/fonts/HelveticaNeueBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Diatype";
  src: url("assets/fonts/ABCDiatypeVariable-Trial.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Display";
  src: url("assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-optical-sizing: auto;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #f5f3ee;
  --ink: #0e0e0e;
  --ink-60: rgba(14, 14, 14, 0.6);
  --ink-30: rgba(14, 14, 14, 0.18);
  --rule: rgba(14, 14, 14, 0.12);
  --accent: #c8240e;

  --serif: "ABC Diatype", "Inter", sans-serif;
  --sans: "Inter", -apple-system, system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --col: 1fr;
  --max: 1680px;

  --t-xs: 11px;
  --t-sm: 13px;
  --t-md: 15px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--t-md);
  line-height: 1.45;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}

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

img, video { display: block; max-width: 100%; height: auto; }

em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.meta {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- Cursor ---------- */
.cursor { display: none; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader__logo {
  width: clamp(120px, 14vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
  animation: loader-pulse 1.6s ease-in-out infinite;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}
body.is-loading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .loader__logo { animation: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Moments slideshow ---------- */
.moments { padding: 0 0 clamp(60px, 9vh, 120px); }
.moments__head { padding: clamp(40px, 6vh, 80px) var(--gutter) 0; margin: 0; border: none; }

.slideshow {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}
.slideshow img { -webkit-user-drag: none; user-drag: none; }

.hero__video--mobile { display: none; }
@media (max-width: 720px) {
  .hero__video--desktop { display: none; }
  .hero__video--mobile { display: block; }
}
.slideshow__track { position: absolute; inset: 0; }
.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slideshow__slide.is-active { opacity: 1; }
.slideshow__slide .ph,
.slideshow__slide img,
.slideshow__slide video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
}
.slideshow__btn:hover { background: rgba(0,0,0,0.7); }
.slideshow__btn--prev { left: var(--gutter); }
.slideshow__btn--next { right: var(--gutter); }
.slideshow__counter {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  color: #fff;
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}
.carousel {
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
}
.carousel__slide {
  flex: 0 0 min(86vw, 1200px);
  scroll-snap-align: center;
}
.carousel__slide .ph,
.carousel__slide img,
.carousel__slide video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink-30);
}
.carousel__slide figcaption {
  margin-top: 12px;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: transparent;
  color: #ffffff;
  transition: color 0.3s ease;
}
.site-header .brand img { transition: filter 0.3s ease; }
.site-header.is-scrolled { color: var(--ink); }
.site-header.is-scrolled .brand img { filter: brightness(0); }
.site-header.is-over-dark { color: #fff; }
.site-header.is-over-dark .brand img { filter: brightness(0) invert(1); }
.site-header.is-over-dark .nav a { color: #fff; }
.site-header.is-over-dark .nav-toggle span { background: #fff; }
.site-header .brand img { filter: brightness(0) invert(1); }

.brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand span { color: var(--accent); }
.brand img { display: block; height: 28px; width: auto; }
@media (max-width: 720px) { .brand img { height: 24px; } }

.nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-sm);
  letter-spacing: 0.02em;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover::after { transform: scaleX(1); }
.nav__cta {
  padding: 8px 16px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta::after { display: none !important; }
@media (hover: hover) {
  .nav__cta:hover { background: currentColor; }
  .site-header:not(.is-scrolled) .nav__cta:hover { color: var(--ink); }
  .site-header.is-scrolled .nav__cta:hover { color: var(--bg); }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  height: 1px;
  width: 24px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-open span { background: #fff !important; }
.site-header.is-scrolled .nav-toggle.is-open span {
  background: #fff !important;
  transition: transform 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 55;
  }
  .nav.is-open { transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}
.hero__cta {
  position: absolute;
  bottom: var(--gutter);
  right: var(--gutter);
  padding: 10px 18px;
  border: 0.5px solid #fff;
  color: #fff;
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
@media (hover: hover) {
  .hero__cta:hover { background: #fff; color: var(--ink); }
}
.hero__media {
  position: absolute; inset: 0;
  background: #1a1a1a;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 10vw, 140px);
  color: rgba(245, 243, 238, 0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
}

.hero__caption {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(40px, 8vh, 90px);
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 24px;
  color: #f5f3ee;
}
.hero__caption .eyebrow { color: rgba(245,243,238,0.7); grid-column: 1; }
.hero__title {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 13vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.hero__caption .meta {
  font-family: "ABC Diatype", "Inter", sans-serif;
  color: rgba(245,243,238,0.7);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-arrow {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  animation: scroll-fade 2s ease-in-out infinite;
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-arrow { animation: none; }
}

/* ---------- Intro ---------- */
.intro {
  padding: clamp(120px, 18vh, 220px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.intro__lede {
  font-family: var(--serif);
  font-size: clamp(28px, 4.6vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(48px, 8vw, 120px);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-head .count {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink-60);
  margin-left: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Work ---------- */
.work {
  padding: clamp(60px, 10vh, 140px) var(--gutter) clamp(80px, 12vh, 180px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  row-gap: clamp(80px, 14vh, 200px);
}
.work .section-head { grid-column: 1 / -1; margin-bottom: 0; }

.work__item { display: flex; flex-direction: column; gap: 18px; }
.work__item--lg { grid-column: span 7; }
.work__item--md { grid-column: 7 / span 6; }
.work__item--sm { grid-column: 2 / span 5; }
.work__item--lg:nth-of-type(4) { grid-column: 4 / span 7; }

.work__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.work__meta .num {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--ink-60);
}
.work__meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.01em;
}
.work__meta .tag {
  margin-left: auto;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* placeholders */
.ph {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(14,14,14,.04), rgba(14,14,14,.08));
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--ink-30) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-30) 1px, transparent 1px);
  background-size: 100% 100%;
  opacity: 0.5;
}
.ph::before {
  content: "Image";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink-30);
  z-index: 1;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--landscape { aspect-ratio: 16 / 10; }
.ph--square { aspect-ratio: 1 / 1; }

/* ---------- Roster (Agency) ---------- */
.roster__mobile { display: none; }
.roster {
  padding: clamp(60px, 8vh, 110px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.roster__head { margin-bottom: 64px; text-align: center; }
.roster__head h2 {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 4.5vw, 37px);
  line-height: 1.1;
}
.roster__discipline {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.roster__list {
  list-style: none;
  display: grid;
  gap: 0;
  line-height: 1.1;
}
.roster__num {
  margin-right: 0.4em;
}
.roster__list a {
  font-family: "Inter Display", "Inter", sans-serif;
  font-weight: 100;
  font-size: clamp(14px, 1.6vw, 20px);
  font-variation-settings: "opsz" 32;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.roster__list a:hover { color: var(--ink); }
.roster__list a { transition: color 0.2s ease, font-weight 0.2s ease; }
.roster__list a.is-active { font-weight: 400; }

.roster__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.roster__group {
  padding-bottom: 8px;
}
.roster__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.roster__preview img,
.roster__preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.roster__preview img.is-visible,
.roster__preview video.is-visible {
  opacity: 1;
}
@media (max-width: 900px) {
  .roster__layout { display: none; }
  .roster__preview { display: none; }
  .roster__mobile {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0 var(--gutter);
  }
  .roster__mobile::-webkit-scrollbar { display: none; }
  .roster__mobile-item {
    flex-shrink: 0;
    width: 70vw;
    scroll-snap-align: start;
  }
  .roster__mobile-item a { display: block; }
  .roster__mobile-item img,
  .roster__mobile-item video {
    width: 100%;
    height: 50vw;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
  }
  .roster__mobile-item span {
    font-family: "Inter Display", "Inter", sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: var(--ink);
  }
}

/* ---------- Venue form ---------- */
.venue {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  max-width: 880px;
  margin: 0 auto;
}
.venue__head { margin-bottom: 48px; display: grid; gap: 16px; }
.venue__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.venue__head p { color: var(--ink-60); }
.venue__form { display: grid; gap: 24px; }
.venue__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.venue__form label { display: grid; gap: 8px; }
.venue__form span {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.venue__form input,
.venue__form textarea {
  font-family: var(--sans);
  font-size: var(--t-md);
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-30);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.venue__form input:focus,
.venue__form textarea:focus { border-bottom-color: var(--ink); }
.venue__form textarea { resize: vertical; }
.venue__submit {
  justify-self: start;
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.venue__submit:hover { opacity: 0.85; }
@media (max-width: 720px) {
  .venue__row { grid-template-columns: 1fr; }
}

/* ---------- Events ---------- */
.events {
  padding: clamp(60px, 8vh, 110px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.events__head { margin-bottom: 64px; text-align: center; }
.events__head h2 {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 4.5vw, 37px);
  line-height: 1.1;
}
.events__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.events__item { display: flex; flex-direction: column; gap: 14px; }
.events__media {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--ink-10, #ececec);
}
.events__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.events__title {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.events__date {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: 12px;
  color: var(--ink-60);
  margin-top: -4px;
}
.events__cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .events__cta:hover { background: var(--ink); color: var(--bg); }
}
.events__cta:active { background: var(--ink); color: var(--bg); }
.events__cta--static { pointer-events: none; }
@media (max-width: 960px) {
  .events__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .events__list {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 16px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0 var(--gutter) 0 calc(var(--gutter) + 8px);
    scroll-padding-left: calc(var(--gutter) + 8px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .events__list::-webkit-scrollbar { display: none; }
  .events__item {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

/* ---------- Manifesto ---------- */
.manifesto {
  padding: clamp(80px, 12vh, 160px) var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto__head { margin-bottom: 64px; text-align: center; }
.manifesto__head h2 {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 4.5vw, 37px);
  line-height: 1.1;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  column-gap: 70px;
  align-items: stretch;
}
.manifesto__media {
  overflow: hidden;
  background: var(--ink-30);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-height: 100%;
  position: relative;
}
.manifesto__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 3vw, 44px);
}
.manifesto__quote {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.manifesto__lead {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--ink-60);
  margin: 0;
  max-width: 540px;
}
.manifesto__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .manifesto__cta:hover { background: var(--ink); color: var(--bg); }
}
@media (max-width: 768px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto__media { aspect-ratio: 4 / 3; }
}

/* ---------- About ---------- */
.about {
  padding: clamp(100px, 16vh, 200px) var(--gutter) clamp(40px, 6vh, 70px);
  max-width: none;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 36px;
  justify-items: center;
}
@media (max-width: 720px) {
  .about { padding: 60px var(--gutter) 8px; }
  .events__head,
  .roster__head,
  .manifesto__head { margin-bottom: 32px; }
  .roster { padding-bottom: 24px; }
}
.about__quote {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: none;
  margin: 0;
}
.about__attr {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
}

/* ---------- Journal ---------- */
.journal {
  padding: clamp(60px, 10vh, 140px) var(--gutter) clamp(120px, 16vh, 220px);
  max-width: var(--max);
  margin: 0 auto;
}
.journal__list { list-style: none; }
.journal__list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .5s cubic-bezier(.2,.8,.2,1);
}
.journal__list li:hover { padding-left: 14px; }
.journal__list .date {
  font-size: var(--t-sm);
  color: var(--ink-60);
  letter-spacing: 0.04em;
}
.journal__list a {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 40px);
  letter-spacing: -0.01em;
}
.journal__list .tag {
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-60);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 0;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 9vh, 110px) var(--gutter) 28px;
}
.footer__lead {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(60px, 9vh, 110px);
  border-bottom: 1px solid var(--rule);
}
.footer__email {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  width: max-content;
  max-width: 100%;
  transition: color 0.25s ease;
}
@media (hover: hover) {
  .footer__email:hover { color: var(--accent); }
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 0 clamp(60px, 9vh, 100px);
}
@media (max-width: 1100px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
.footer__col { display: grid; gap: 14px; align-content: start; }
.footer__col ul { list-style: none; display: grid; gap: 6px; }
.footer__col p,
.footer__col a,
.footer__col li {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.footer__col a { transition: color 0.2s ease; }
@media (hover: hover) {
  .footer__col a:hover { color: var(--accent); }
}
.footer__wordmark {
  margin: 0 0 clamp(40px, 6vh, 70px);
  user-select: none;
  pointer-events: none;
}
.footer__wordmark img {
  display: block;
  height: 36px;
  width: auto;
  filter: brightness(0);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  color: var(--ink-60);
}
.footer__copy {
  display: flex;
  gap: 8px;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer__legal a {
  color: var(--ink-60);
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .footer__legal a:hover { color: var(--ink); }
}
.footer__rights {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- Newsletter ---------- */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--ink-30);
  transition: border-color 0.2s ease;
}
.newsletter__row:focus-within { border-color: var(--ink); }
.newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 6px 0;
  background: transparent;
  border: none;
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.newsletter__input::placeholder { color: var(--ink-60); }
.newsletter__btn {
  background: transparent;
  border: none;
  padding: 6px 0 6px 12px;
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.newsletter__btn:hover { opacity: 0.6; }
.newsletter__consent {
  display: flex;
  gap: 10px;
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-60);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}
.newsletter__consent input {
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--ink);
}
.newsletter__msg {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: 12px;
  margin: 0;
  min-height: 1em;
  letter-spacing: 0;
  text-transform: none;
}
.newsletter__msg[data-state="success"] { color: var(--ink); }
.newsletter__msg[data-state="error"] { color: var(--accent); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 24px;
  z-index: 100;
  background: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  margin: 0;
  flex: 1;
  min-width: 240px;
  line-height: 1.5;
}
.cookie-banner__text a {
  border-bottom: 1px solid var(--ink-30);
  transition: border-color 0.2s ease;
}
.cookie-banner__text a:hover { border-color: var(--ink); }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 10px 18px;
  font-family: inherit;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cookie-banner__btn--primary {
  background: var(--ink);
  color: var(--bg);
}
@media (hover: hover) {
  .cookie-banner__btn:hover {
    background: var(--ink);
    color: var(--bg);
  }
  .cookie-banner__btn--primary:hover {
    background: transparent;
    color: var(--ink);
  }
}
@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(120px, 14vh, 200px) var(--gutter) clamp(80px, 10vh, 120px);
  font-family: "ABC Diatype", "Inter", sans-serif;
  color: var(--ink);
}
.legal__head {
  margin-bottom: clamp(40px, 6vh, 80px);
  display: grid;
  gap: 14px;
}
.legal__title {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.legal__section {
  margin-bottom: clamp(32px, 4vh, 48px);
}
.legal__section h2 {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.legal__section p,
.legal__list {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 6px;
}
.legal__list li::before {
  content: "— ";
  color: var(--ink-60);
}
.legal a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink-30);
  transition: border-color 0.2s ease;
}
@media (hover: hover) {
  .legal a:hover { border-color: var(--ink); }
}
.legal__meta {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: clamp(40px, 6vh, 60px);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { gap: 18px; }

  .hero__caption { grid-template-columns: 1fr; }
  .hero__caption .meta { justify-self: start; }

  .work { grid-template-columns: repeat(6, 1fr); row-gap: 80px; }
  .work__item--lg,
  .work__item--md,
  .work__item--sm,
  .work__item--lg:nth-of-type(4) { grid-column: 1 / -1; }

  .journal__list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 0;
  }
  .journal__list li:hover { padding-left: 0; }

  .footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { padding: 18px var(--gutter); }
  .brand { font-size: 24px; }
  .hero { min-height: 560px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
