:root {
  --cream: #f3f0e9;
  --paper: #f7f4ee;
  --ink: #090909;
  --muted: #777;
  --red: #ff3b20;
  --line: rgba(10,10,10,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", sans-serif;
}
img, video { display: block; width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  padding: 28px 4.5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  background: #050505;
  color: #fff;
}
.site-header nav { display: flex; gap: 38px; }
.site-header nav a { padding-bottom: 4px; color: #fff; }
.site-header nav a.active { border-bottom: 1px solid #fff; }
.site-header .brand { color: #fff; }

.light-section { background: var(--paper); }
.dark-section { background: #050505; color: white; }
.section-pad { padding: 46px 4.5vw; }

main > section {
  opacity: var(--section-opacity, 1);
}

.hero {
  display: flex;
  align-items: flex-start;
  padding: 58px 6vw 16px;
}
.hero-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px 64px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-visual {
  position: relative;
  margin: 0;
  width: min(360px, 34vw);
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero-visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transform-origin: center;
}
.hero-visual-img.is-active {
  position: relative;
  z-index: 1;
}
.hero-visual-img:not(.is-active) {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.hero-visual-img.swap-out { animation: wordOut .34s ease forwards; }
.hero-visual-img.swap-in { animation: wordIn .38s ease forwards; }
.hero-kicker,
.hero-bottom,
.rotating-word,
.section-heading-row h2,
.journalism h2,
.social-section h2,
.about-section h2,
.contact-section h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
}
.hero-kicker {
  margin: 0;
  font-size: clamp(17px, 2.5vw, 37px);
  line-height: .95;
}
.rotating-word-wrap {
  font-size: clamp(55px, 9.5vw, 160px);
  line-height: 1;
  min-height: 1em;
  overflow: hidden;
  margin: clamp(10px, 2vw, 20px) 0;
  display: flex;
  align-items: center;
}
.rotating-word {
  display: block;
  font-size: 1em;
  line-height: 1;
  transform-origin: center;
}
.rotating-word.swap-out { animation: wordOut .34s ease forwards; }
.rotating-word.swap-in { animation: wordIn .38s ease forwards; }
@keyframes wordOut { to { transform: translateY(-110%); opacity: 0; } }
@keyframes wordIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero-bottom {
  margin: 0 0 28px;
  font-size: clamp(17px, 2.5vw, 37px);
  line-height: 1.2;
}
.hero-bottom a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .12em;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.hero-bottom a:hover,
.hero-bottom a:focus-visible {
  color: var(--red);
  text-decoration-color: var(--red);
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .01em;
}
.scroll-cue span { font-size: 24px; font-weight: 400; }

.section-heading-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}
.section-heading-row p { margin: 0; font-size: 11px; font-weight: 700; }

.video-carousel { position: relative; }
.video-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 6px 0 12px;
}
.video-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .3s ease;
  isolation: isolate;
}
.video-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(92px, 40%, 118px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.8) 16%,
    rgba(0, 0, 0, 0.62) 38%,
    rgba(0, 0, 0, 0.34) 62%,
    rgba(0, 0, 0, 0.12) 82%,
    rgba(0, 0, 0, 0) 100%
  );
}
.video-card video {
  position: relative;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.video-card:hover { transform: scale(1.025); z-index: 2; }
.video-card:hover video { transform: scale(1.06); }
.video-card-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 0 14px 14px;
  color: #fff;
  pointer-events: none;
}
.video-card-info a { pointer-events: auto; }
.video-card-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
  padding: 8px 10px 9px;
  background: rgba(0, 0, 0, 0.84);
  transition: opacity .28s ease, max-height .28s ease, margin .28s ease, padding .28s ease;
  max-height: 120px;
  overflow: hidden;
}
.video-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.05;
}
.video-role {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.video-card:hover .video-card-meta,
.video-card:focus-within .video-card-meta {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
}
.video-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  padding-bottom: 2px;
}
.video-link:hover { border-bottom-color: #fff; }
.sound-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.8);
  color: #fff;
  background: rgba(0,0,0,.5);
  padding: 8px 10px;
  font-size: 9px;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s ease;
}
.video-card:hover .sound-toggle,
.video-card:focus-within .sound-toggle { opacity: 1; }

.journalism {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 38px;
  align-items: start;
}
.journalism-intro h2,
.social-heading,
.section-heading-row h2 {
  font-size: clamp(42px, 5vw, 74px);
}
.journalism-intro h2,
.social-heading {
  margin: 0 0 20px;
}
.section-heading-row h2 { margin: 0; }
.journalism-intro p {
  font-size: 14px;
  line-height: 1.6;
}
.red-rule { display: block; width: 50px; height: 2px; background: var(--red); margin-top: 22px; }

.byline-list { display: flex; flex-direction: column; }
.byline-item { border-bottom: 1px solid var(--line); }
.byline-trigger {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 13px 0;
  cursor: pointer;
  color: inherit;
}
.byline-trigger span { color: #aaa; font-size: 12px; }
.byline-trigger strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.byline-item.is-open { border-bottom-color: var(--red); }
.byline-item.is-open .byline-trigger { color: var(--red); }
.byline-panel {
  display: grid;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 54px;
  transition: max-height .35s ease, opacity .28s ease, padding .35s ease;
}
.byline-item.is-open .byline-panel {
  max-height: 280px;
  opacity: 1;
  padding: 0 0 16px 54px;
}
.byline-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}
.byline-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--red);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}
.publication-card { perspective: 1200px; aspect-ratio: 3 / 4.35; }
.publication-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
}
.publication-card:hover .publication-inner,
.publication-card:focus .publication-inner { transform: rotateY(180deg); }
.publication-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  padding: 14px 0;
  box-sizing: border-box;
}
.publication-back { transform: rotateY(180deg); }
.publication-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(10,10,10,.18);
}

.social-section {
  display: block;
}
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.social-card {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e4dc;
}
.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .4s ease, transform .4s ease;
}
.social-card--focus-left img {
  object-position: left center;
}
.social-card--focus-up img {
  object-position: center 72%;
}
.social-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity .35s ease;
}
.social-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0;
  padding: 0 0 2px;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.social-card-link:hover { border-bottom-color: #fff; }
.social-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.88);
}
.social-lightbox[hidden] { display: none; }
.social-lightbox img {
  width: auto;
  max-width: min(920px, 100%);
  max-height: calc(100vh - 96px);
  height: auto;
  object-fit: contain;
}
.social-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}
.social-card:hover img,
.social-card:focus-within img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.social-card:hover .social-card-overlay,
.social-card:focus-within .social-card-overlay {
  opacity: 1;
}

.about-section {
  padding-top: 70px;
  padding-bottom: 70px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.about-section h2 {
  margin: 0 0 28px;
  font-size: clamp(55px, 8vw, 130px);
  line-height: .92;
  max-width: 1250px;
}
.about-section > p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}
.about-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: .18em;
}
.about-link:hover { text-decoration-color: #fff; }

.contact-section {
  background: var(--paper);
  color: var(--ink);
  padding: 70px 5.5vw;
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: 80px;
}
.contact-copy h2 { font-size: clamp(48px, 6vw, 84px); margin: 0 0 18px; }
.contact-copy p { font-size: 13px; line-height: 1.6; color: #444; }
.contact-copy dl { margin-top: 35px; font-size: 11px; }
.contact-copy dl div { display: grid; grid-template-columns: 70px 1fr; margin-bottom: 10px; }
.contact-copy dt { font-weight: 700; }
.contact-copy dd { margin: 0; color: #444; }

.contact-form { padding-left: 40px; border-left: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-form label {
  display: block;
  color: #666;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--red); }
.contact-form button {
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 2px solid var(--red);
  padding: 8px 0;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .journalism {
    grid-template-columns: 1fr;
  }
  .publication-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .social-card {
    flex-basis: calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
  }
  .contact-section { grid-template-columns: 1fr; }
  .contact-form { border-left: 0; padding-left: 0; }
}

@media (max-width: 900px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .hero-copy {
    display: contents;
  }
  .hero-kicker { order: 1; }
  .rotating-word-wrap { order: 2; }
  .hero-bottom {
    order: 3;
    text-align: center;
  }
  .hero-visual {
    order: 4;
    width: min(300px, 72vw);
    align-self: center;
  }
  .scroll-cue { order: 5; }
}

@media (max-width: 700px) {
  .site-header { padding: 22px 20px; }
  .site-header nav { gap: 16px; }
  .hero { padding: 58px 20px 14px; }
  .section-pad { padding: 42px 20px; }
  .hero-bottom br { display: none; }

  .video-track { grid-template-columns: 1fr; }

  .journalism { grid-template-columns: 1fr; gap: 24px; }

  .publication-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .social-grid { gap: 12px; }
  .social-card {
    flex-basis: calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
  }

  .about-section { padding-top: 50px; padding-bottom: 50px; }

  .contact-section { padding: 55px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
