/* ============================================================
   ABRAHAM KHANNA — Editorial identity
   Paper, ink, sand, olive. Type is the hero.
   ============================================================ */

:root {
  /* change this ONE line to swap the paragraph font site-wide */
  --para: "Instrument Serif", Georgia, serif; /* same font as the menu */
}

p {
  font-family: var(--para);
  font-size: 1.125rem;
  font-weight: 400; /* Instrument Serif only ships in 400 */
  line-height: 1.6;
}

/* keep the small uppercase labels in the sans-serif UI font */
.eyebrow { font-family: var(--body); }
/* (.caption already declares var(--body), so labels/captions stay sans) */

:root {
  --paper: #F7F5F2;
  --ink: #111111;
  --muted: #666666;
  --sand: #D9CFBF;
  --olive: #2E332A;          /* derived from the Antidote artwork */
  --olive-paper: #EDEAE1;    /* light text on olive */
  --olive-muted: #A8AA9B;
  --tint: #ECE9E3;           /* warm grey section */
  --hairline: #DCD7CF;

  --display: "Instrument Serif", Georgia, serif;
  --quote: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1.25rem, 5vw, 6rem);
  --measure: 34em;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--sand); color: var(--ink); }

:focus-visible {
  outline: 1.5px solid var(--ink);
  outline-offset: 4px;
}

/* ---------- shared editorial atoms ---------- */

.caption {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.caption--light { color: var(--olive-muted); }

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::after {
  content: "";
  flex: 0 0 3.5rem;
  height: 1px;
  background: var(--ink);
}
.eyebrow--light { color: var(--olive-muted); }
.eyebrow--light::after { background: var(--olive-muted); }

.section-head { padding: 0 var(--gutter); }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 1.5rem;
}

.img-mask { overflow: hidden; }
.img-mask img {
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
a:hover .img-mask img,
.img-mask:hover img { transform: scale(1.045); }

.watch {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}
.watch:hover {
  gap: 1em;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
/* on the olive Bram spread, invert with the light palette instead */
.bram .watch:hover {
  background: var(--olive-paper);
  color: var(--olive);
  border-color: var(--olive-paper);
}

/* ---------- fixed layers ---------- */

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 120;
  background: transparent;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--ink);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 130;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  opacity: 0;
  mix-blend-mode: difference;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover { width: 44px; height: 44px; background: #fff; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loader__line {
  display: block;
  overflow: hidden;
}
.loader__line-inner {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1.05;
}
.loader__line em { font-style: italic; }
.loader__caption {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ---------- masthead ---------- */

.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  mix-blend-mode: difference;
  color: #fff;
}
.masthead__brand {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.masthead__nav {
  display: flex;
  gap: 2rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.masthead__nav a { position: relative; padding-bottom: 3px; }
.masthead__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s ease;
}
.masthead__nav a:hover::after,
.masthead__nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: 0 50%; }
.masthead__edition {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.masthead__toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  font: 600 0.6875rem/1 var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu nav { display: grid; gap: 0.5rem; }
.menu a {
  font-family: var(--display);
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: 1.15;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 2rem;
}

.hero__spine {
  position: absolute;
  top: 50%;
  right: calc(var(--gutter) * 0.25);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 34vw);
  grid-template-areas:
    "title portrait"
    "roles portrait"
    "tag   portrait"
    "cta   portrait";
  column-gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  max-width: 1500px;
}

.hero__title {
  grid-area: title;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4.2rem, 12.5vw, 12.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.hero__word { display: block; overflow: hidden; }
.hero__word-inner { display: block; will-change: transform; }
.hero__word--offset { margin-left: clamp(2rem, 9vw, 11rem); }
.hero__word em { font-style: italic; text-transform: none; }

.hero__portrait {
  grid-area: portrait;
  align-self: center;
  margin-top: clamp(0rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.hero__portrait-mask { overflow: hidden; }
.hero__portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transform: scale(1.08);
  will-change: transform;
}
.hero__portrait figcaption { margin-top: 0.9rem; }

.hero__roles {
  grid-area: roles;
  list-style: none;
  display: flex;
  gap: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero__roles li { display: flex; align-items: baseline; gap: 0.7rem; }
.hero__roles li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sand);
  align-self: center;
}

.hero__tagline {
  grid-area: tag;
  font-family: var(--para);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  max-width: 20em;
  margin-bottom: 2.75rem;
}

.hero__cta {
  grid-area: cta;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 1.05rem 2.4rem;
  transition: background 0.35s ease, color 0.35s ease;
}
.hero__cta:hover { background: var(--ink); color: var(--paper); }
.hero__cta-arrow { animation: none; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero__foot {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.1rem;
  margin-top: clamp(2.5rem, 6vh, 5rem);
}

/* ============================================================
   HOME — LATEST RELEASE TEASER
   ============================================================ */

.teaser {
  padding: clamp(4rem, 10vh, 8rem) var(--gutter) clamp(6rem, 14vh, 10rem);
  max-width: 1500px;
}
.teaser .eyebrow { margin-bottom: 2.5rem; }
.teaser__row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(1.75rem, 4vh, 3rem) 0;
}
.teaser__art img { aspect-ratio: 1; object-fit: cover; }
.teaser__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.teaser__title em { text-transform: none; }
.teaser__row:hover .teaser__title { opacity: 0.6; }

@media (max-width: 700px) {
  .teaser__row { grid-template-columns: 120px 1fr; }
  .teaser__meta { grid-column: 2; }
  .teaser__row .watch { grid-column: 2; justify-self: start; }
}

/* ============================================================
   ABOUT
   ============================================================ */

.about { padding: clamp(8rem, 16vh, 12rem) 0 clamp(6rem, 14vh, 11rem); }

.about__spread {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(3.5rem, 8vh, 6rem) var(--gutter) 0;
  max-width: 1500px;
}

.about__portrait { position: sticky; top: 7rem; }
.about__portrait img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
}
.about__portrait figcaption { margin-top: 0.9rem; }

.about__body { max-width: var(--measure); padding-top: clamp(0rem, 4vh, 2.5rem); }
.about__body p + p { margin-top: 1.75em; }
.about__body p { color: var(--muted); }
.about__lede {
  font-family: var(--para);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink) !important;
}
.about__lede::first-letter {
  font-family: var(--display);
  font-size: 3.2em;
  float: left;
  line-height: 0.8;
  padding-right: 0.12em;
  padding-top: 0.06em;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: clamp(4rem, 10vh, 7rem) var(--gutter) 0;
  max-width: 1500px;
}
.about__stats > div {
  padding: 2rem 1.5rem 2rem 0;
  border-left: 1px solid var(--hairline);
  padding-left: 1.5rem;
}
.about__stats > div:first-child { border-left: none; padding-left: 0; }
.about__stats dt {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.pullquote {
  padding: clamp(5rem, 14vh, 9rem) var(--gutter) 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.pullquote p {
  font-family: var(--para);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.pullquote cite { display: block; margin-top: 2rem; font-style: normal; }

/* ============================================================
   THE BRAM PROJECT — olive spread
   ============================================================ */

.bram {
  background: var(--olive);
  color: var(--olive-paper);
  padding: clamp(8rem, 16vh, 12rem) 0 clamp(6rem, 14vh, 11rem);
}

.bram__head { padding: 0 var(--gutter); max-width: 1500px; }
.bram__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.8rem, 11vw, 11rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.bram__title em { text-transform: none; }
.bram__sub { margin-top: 1.75rem; }

.bram__spread {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(4rem, 10vh, 8rem) var(--gutter) 0;
  max-width: 1500px;
  align-items: start;
}

.bram__pin { position: sticky; top: 12vh; }
.bram__pin .img-mask img { transition: none; }
.bram__pin img { aspect-ratio: 1; object-fit: cover; }
.bram__pin figcaption { margin-top: 0.9rem; }

.bram__scroll { display: grid; gap: clamp(6rem, 16vh, 11rem); }

.project { max-width: 560px; }
.project--b { margin-left: auto; text-align: right; }
.project--b .watch { flex-direction: row-reverse; }
.project__no { margin-bottom: 1.25rem; }
.project__media { margin-bottom: 2rem; }
.project__media img { aspect-ratio: 1; object-fit: cover; }
.project--b .project__media { margin-left: auto; }
.project__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  margin-bottom: 0.9rem;
}
.project__title--xl { font-size: clamp(4rem, 10vw, 9rem); }
.project__kind { margin-bottom: 1.4rem; }
.project__desc {
  color: var(--olive-muted);
  max-width: 26em;
  margin-bottom: 2rem;
}
.project--b .project__desc { margin-left: auto; }

.project--feature {
  max-width: none;
  text-align: center;
  padding: clamp(2rem, 6vh, 4rem) 0;
  border-top: 1px solid rgba(237, 234, 225, 0.18);
  border-bottom: 1px solid rgba(237, 234, 225, 0.18);
}
.project--feature .project__desc { margin: 0 auto 2rem; }

/* ============================================================
   LATEST RELEASE
   ============================================================ */

.release { padding: clamp(8rem, 16vh, 12rem) 0 clamp(6rem, 14vh, 11rem); }

.release__spread {
  display: grid;
  grid-template-columns: minmax(300px, 6fr) 6fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 7vh, 5rem) var(--gutter) 0;
  max-width: 1500px;
}

.release__art img { aspect-ratio: 1; object-fit: cover; }
.release__art figcaption { margin-top: 0.9rem; }

.release__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.6rem, 8.5vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-left: clamp(-4rem, -6vw, -7rem); /* type overlaps the artwork */
  position: relative;
  z-index: 2;
}
.release__title em { text-transform: none; }

.release__desc {
  color: var(--muted);
  max-width: 26em;
  margin: 2rem 0 3rem;
}

.release__links { list-style: none; max-width: 26rem; }
.release__links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.release__links li:last-child a { border-bottom: 1px solid var(--hairline); }
.release__links a:hover { padding-left: 0.9rem; color: var(--muted); }

/* ============================================================
   NEWS
   ============================================================ */

.news {
  background: var(--tint);
  padding: clamp(8rem, 16vh, 12rem) 0 clamp(6rem, 14vh, 11rem);
}

.news__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(3.5rem, 8vh, 6rem) var(--gutter) 0;
  max-width: 1500px;
  align-items: start;
}

.news__img { background: var(--sand); }
.news__feature .news__img img { aspect-ratio: 4 / 3; object-fit: cover; }
.news__secondary .news__img img { aspect-ratio: 3 / 4; object-fit: cover; filter: grayscale(1); }
.news__secondary { margin-top: clamp(2rem, 8vh, 6rem); } /* staggered magazine grid */

.news__text { padding-top: 1.75rem; max-width: 34em; }
.news__text h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.12;
  margin: 0.9rem 0 1rem;
  transition: opacity 0.3s ease;
}
.news__grid a:hover h3 { opacity: 0.6; }
.news__dek { color: var(--muted); margin-bottom: 1.6rem; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding: clamp(8rem, 18vh, 13rem) var(--gutter) clamp(7rem, 16vh, 11rem);
  max-width: 1500px;
}
.contact__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 8rem);
  line-height: 1.02;
  margin: 2rem 0 clamp(3.5rem, 9vh, 6rem);
  max-width: 11em;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--hairline);
  padding-top: 2.5rem;
}
.contact__grid .caption { margin-bottom: 1rem; }
.contact__link {
  font-family: var(--quote);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
  word-break: break-word;
}
.contact__link:hover { border-color: var(--ink); }

.contact__managed {
  margin-top: clamp(3.5rem, 9vh, 6rem);
  padding-top: 2.25rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.contact__managed img {
  height: 1.7rem;
  width: auto;
  display: block;
}
.contact__managed .caption { margin: 0; }

.contact__social { list-style: none; display: grid; gap: 0.6rem; }
.contact__social a {
  display: inline-flex;
  gap: 0.5em;
  align-items: baseline;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.contact__social a:hover { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 9vh, 7rem) var(--gutter) 2.5rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: clamp(3rem, 8vh, 5rem);
}
.footer__nav a:hover { color: var(--paper); }
.footer__mark {
  font-family: var(--display);
  font-size: clamp(3.2rem, 11vw, 10.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 7vh, 4.5rem);
}
.footer__mark em { text-transform: none; }
.footer__kaqi {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer__kaqi img {
  height: 1.05rem;
  width: auto;
  display: block;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(247, 245, 242, 0.18);
  padding-top: 1.5rem;
  color: rgba(247, 245, 242, 0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .masthead__nav, .masthead__edition { display: none; }
  .masthead__toggle { display: block; }

  .hero__stage {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "portrait" "roles" "tag" "cta";
  }
  .hero__portrait { max-width: 480px; margin: 0 0 2.5rem; }
  .hero__roles { flex-wrap: wrap; gap: 1.25rem 2rem; }
  .hero__spine { display: none; }

  .about__spread, .bram__spread, .release__spread, .news__grid { grid-template-columns: 1fr; }
  .about__portrait { position: static; max-width: 460px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); border: none; }
  .about__stats > div {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--hairline);
  }

  .bram__pin { position: static; max-width: 460px; }
  .project, .project--b { margin-left: 0; text-align: left; max-width: 560px; }
  .project--b .project__media, .project--b .project__desc { margin-left: 0; }
  .project--b .watch { flex-direction: row; }
  .project--feature { text-align: left; }
  .project--feature .project__desc { margin: 0 0 2rem; }

  .release__title { margin-left: 0; margin-top: 1rem; }
  .news__secondary { margin-top: 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  :root { --gutter: 1.25rem; }
  .hero { padding-top: 5.5rem; }
  .hero__foot { flex-direction: column; gap: 0.4rem; }
  .about__stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain { animation: none; }
  .hero__cta-arrow { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
