:root {
  --ink: #080808;
  --ink-soft: #161616;
  --paper: #f4f0e8;
  --paper-clean: #fffaf1;
  --line: rgba(8, 8, 8, 0.16);
  --line-light: rgba(255, 250, 241, 0.18);
  --red: #c9151f;
  --red-dark: #980d15;
  --muted: #6e675d;
  --white: #fffaf1;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  font: inherit;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 2rem clamp(1.25rem, 4vw, 4.5rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid var(--line-light);
  padding-block: 1rem;
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.8;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 3rem);
}

.main-nav a,
.header-contact,
.menu-button,
.button,
.outline-button,
.contact-cta {
  text-transform: uppercase;
}

.main-nav a {
  font-family: var(--display);
  font-size: 0.88rem;
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  background: var(--red);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  align-items: center;
  border: 1px solid var(--line-light);
  display: inline-flex;
  height: 2.6rem;
  justify-content: center;
  width: 2.6rem;
}

.menu-button {
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 2.6rem;
  width: 2.6rem;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 0.34rem 0;
  width: 100%;
}

.hero {
  background: #060606;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(3rem, 7vw) minmax(20rem, 1.08fr) minmax(18rem, 0.92fr);
  min-height: 94svh;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.25rem, 4vw, 4.5rem) 0;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.26) 40%, transparent 72%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.84), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.scene-rail {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-top: 0.4rem;
  position: relative;
  z-index: 2;
}

.scene-rail span,
.scene-rail em {
  color: rgba(255, 250, 241, 0.56);
  font-family: var(--display);
  font-size: 0.7rem;
  font-style: normal;
  writing-mode: vertical-rl;
}

.scene-rail strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.5rem;
}

.scene-rail i {
  background: rgba(255, 250, 241, 0.5);
  display: block;
  height: 5rem;
  width: 1px;
}

.hero-copy {
  align-self: center;
  max-width: 35rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.hero h1,
.section h2,
.gallery-band h2,
.journey h2,
.contact-section h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5.2rem, 11vw, 10.6rem);
  line-height: 0.82;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--red);
}

.role {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  margin: 1.4rem 0 1.8rem;
  text-transform: uppercase;
}

.manifesto {
  border-left: 1px solid rgba(255, 250, 241, 0.55);
  color: rgba(255, 250, 241, 0.82);
  line-height: 1.65;
  margin: 0 0 2.6rem;
  padding-left: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.9rem;
}

.button,
.outline-button,
.contact-cta {
  align-items: center;
  display: inline-flex;
  font-family: var(--display);
  font-size: 0.88rem;
  gap: 0.8rem;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0 1.25rem;
}

.button.primary,
.contact-cta {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover,
.contact-cta:hover {
  background: var(--red-dark);
}

.button.ghost,
.outline-button {
  border: 1px solid currentColor;
  color: var(--white);
}

.button.ghost:hover,
.outline-button:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-media {
  align-self: stretch;
  min-height: 44rem;
  position: relative;
  z-index: 1;
}

.hero-media img {
  filter: grayscale(1) brightness(0.72) contrast(1.16);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
  width: 100%;
}

.discover {
  align-items: center;
  bottom: 1.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 0.72rem;
  gap: 0.35rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.section,
.gallery-band,
.contact-section {
  display: grid;
  gap: clamp(1.75rem, 4vw, 4rem);
  grid-template-columns: minmax(2.5rem, 4rem) minmax(12rem, 18rem) 1fr;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 6vw, 7.5rem);
}

.section-index {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.section-heading h2,
.gallery-band h2,
.journey h2,
.contact-section h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
}

.section-heading > p,
.gallery-intro > p,
.contact-copy > p:first-of-type {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 2.2rem 0 1.4rem;
  text-transform: uppercase;
}

.rule {
  background: var(--red);
  display: block;
  height: 2px;
  margin-top: 1.55rem;
  width: 3.5rem;
}

.section-note,
.contact-copy p:last-child {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0;
}

.meta-list {
  display: grid;
  gap: 0.8rem;
  margin: 3rem 0 0;
}

.meta-list div {
  display: flex;
  gap: 1.4rem;
}

.meta-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  min-width: 4rem;
}

.meta-list dd {
  font-size: 0.85rem;
  margin: 0;
}

.video-frame {
  aspect-ratio: 16 / 8.6;
  background: var(--ink);
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.video-frame img {
  filter: brightness(0.66) contrast(1.06);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play-button {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  height: clamp(4rem, 8vw, 6rem);
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(4rem, 8vw, 6rem);
}

.play-button svg {
  fill: currentColor;
  stroke: none;
  transform: translateX(2px);
  width: 1.4rem;
}

.video-controls {
  align-items: center;
  bottom: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto auto;
  left: 1.2rem;
  position: absolute;
  right: 1.2rem;
}

.video-controls i {
  background: linear-gradient(90deg, var(--white) 18%, rgba(255, 250, 241, 0.28) 18%);
  display: block;
  height: 3px;
}

.video-controls b {
  font-size: 0.8rem;
}

.gallery-band,
.journey {
  background: var(--ink);
  color: var(--white);
}

.gallery-band {
  align-items: start;
}

.gallery-intro {
  min-width: 0;
}

.gallery-intro .outline-button {
  background: transparent;
  margin-top: 1.25rem;
  padding-inline: 1.2rem;
}

.gallery-strip {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(5, minmax(5.8rem, 1fr));
  min-width: 0;
}

.photo-tile {
  aspect-ratio: 3 / 4;
  background: #222;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.photo-tile.tall {
  aspect-ratio: 2.6 / 4;
}

.photo-tile.wide {
  aspect-ratio: 3.5 / 4;
}

.photo-tile img {
  filter: saturate(0.88) contrast(1.05);
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
  width: 100%;
}

.photo-tile:hover img {
  filter: saturate(1) contrast(1.1);
  transform: scale(1.04);
}

.photo-tile span {
  bottom: 0.5rem;
  color: #d7b885;
  font-family: var(--display);
  font-size: 0.78rem;
  position: absolute;
  right: 0.65rem;
}

.profile-section {
  align-items: start;
}

.facts-grid {
  display: grid;
  gap: 1.4rem 0;
  grid-template-columns: repeat(4, minmax(9rem, 1fr));
}

.facts-grid article {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 0.25rem 1rem;
  grid-template-columns: auto 1fr;
  min-height: 5rem;
  padding: 0.35rem 1.8rem;
}

.facts-grid svg {
  color: var(--red);
  grid-row: span 2;
  height: 1.9rem;
  width: 1.9rem;
}

.facts-grid span {
  font-family: var(--display);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.facts-grid strong {
  font-size: 1.08rem;
  font-weight: 500;
}

.wide-fact {
  grid-column: span 2;
}

.journey {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(16rem, 0.9fr) minmax(14rem, 0.7fr) minmax(17rem, 1fr);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 6vw, 7.5rem);
}

.journey > img {
  align-self: end;
  filter: grayscale(1) contrast(1.12) brightness(0.86);
  max-height: 36rem;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.quote-block {
  align-self: center;
}

blockquote {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 0.95;
  margin: 2.2rem 0 0;
  text-transform: uppercase;
}

blockquote span {
  color: var(--red);
  display: block;
  font-size: 5rem;
  height: 2.7rem;
}

blockquote cite {
  color: var(--red);
  display: block;
  font-size: 1rem;
  font-style: normal;
  margin-top: 1rem;
}

.journey-copy {
  align-self: center;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.75;
  padding-top: 2rem;
}

.journey-copy h3 {
  color: var(--red);
  font-family: var(--display);
  font-size: 1rem;
  margin: 2rem 0 0.65rem;
  text-transform: uppercase;
}

.contact-section {
  align-items: center;
}

.contact-copy {
  border-right: 1px solid var(--line);
  padding-right: clamp(1.5rem, 4vw, 4rem);
}

.contact-list {
  display: grid;
  font-style: normal;
  gap: 1.4rem;
}

.contact-list a,
.contact-list p {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin: 0;
}

.contact-list svg {
  color: var(--red);
  height: 1.8rem;
  width: 1.8rem;
}

.contact-list b {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.contact-list span {
  line-height: 1.55;
}

.contact-cta {
  grid-column: 3;
  justify-self: end;
  min-width: min(100%, 18rem);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 250, 241, 0.72);
  display: flex;
  font-size: 0.78rem;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.7rem clamp(1.25rem, 6vw, 7.5rem);
}

dialog {
  border: 0;
  color: var(--white);
  max-width: min(92vw, 64rem);
  padding: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.video-modal,
.gallery-modal {
  background: var(--ink);
}

.close-modal {
  align-items: center;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 2.8rem;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.8rem;
  z-index: 3;
}

.modal-video-shell {
  display: grid;
  min-width: min(92vw, 58rem);
  position: relative;
}

.modal-video-shell img {
  aspect-ratio: 16 / 9;
  filter: brightness(0.72);
  object-fit: cover;
  width: 100%;
}

.modal-video-shell div {
  bottom: 2rem;
  left: 2rem;
  position: absolute;
}

.modal-video-shell strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.modal-video-shell span {
  color: rgba(255, 250, 241, 0.72);
}

.gallery-modal img {
  max-height: 82svh;
  object-fit: contain;
  width: min(92vw, 58rem);
}

.gallery-modal p {
  font-family: var(--display);
  margin: 0;
  padding: 1rem 1.2rem;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .section,
  .gallery-band,
  .contact-section {
    grid-template-columns: minmax(2.2rem, 3rem) 1fr;
  }

  .video-frame,
  .gallery-strip,
  .facts-grid,
  .contact-list,
  .contact-cta {
    grid-column: 2;
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(10rem, 1fr));
  }

  .journey {
    grid-template-columns: 1fr 1fr;
  }

  .journey-copy {
    grid-column: 1 / -1;
  }

  .contact-copy {
    border-right: 0;
    padding-right: 0;
  }

  .contact-cta {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    background: rgba(8, 8, 8, 0.96);
    border-left: 1px solid var(--line-light);
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 7rem 2rem;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 200ms ease;
    width: min(78vw, 22rem);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .menu-button {
    display: block;
  }

  .header-contact {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(2.2rem, 3rem) 1fr;
  }

  .hero-media {
    grid-column: 1 / -1;
    grid-row: 1;
    inset: 0;
    min-height: auto;
    position: absolute;
  }

  .hero-media img {
    opacity: 0.42;
  }

  .hero-copy {
    grid-column: 2;
  }

}

@media (max-width: 720px) {
  .site-header {
    padding: 1rem 1.15rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.15rem 4.5rem;
  }

  .scene-rail {
    display: none;
  }

  .hero-copy {
    grid-column: 1;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .button {
    width: 100%;
  }

  .section,
  .gallery-band,
  .contact-section,
  .journey {
    grid-template-columns: 1fr;
    padding: 3.2rem 1.15rem;
  }

  .video-frame,
  .gallery-strip,
  .facts-grid,
  .contact-list,
  .contact-cta {
    grid-column: auto;
  }

  .gallery-strip {
    display: flex;
    margin-inline: -1.15rem;
    overflow-x: auto;
    padding-inline: 1.15rem;
    scroll-snap-type: x mandatory;
  }

  .photo-tile {
    flex: 0 0 68vw;
    scroll-snap-align: center;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid article,
  .wide-fact {
    grid-column: auto;
  }

  .journey > img {
    max-height: 28rem;
  }

  .contact-copy {
    border-right: 0;
    padding-right: 0;
  }

  .contact-cta {
    grid-column: auto;
    justify-self: stretch;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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