@font-face {
  font-family: "Bebas Neue";
  src: url("Assets/FONT/BebasNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #080808;
  --paper: #f6f6f3;
  --white: #ffffff;
  --muted: #6e6e69;
  --line: #d8d8d2;
  --accent: #8c1d2c;
  --max: 1480px;
  --gutter: 28px;
  --display-font: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 18px var(--gutter);
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 246, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: block;
  width: 152px;
  height: 40px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.brand-logo--dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-family: var(--display-font);
  font-size: 21px;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 44%;
}

.hero-scrim {
  background: rgba(0, 0, 0, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 160px var(--gutter) 72px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-family: var(--display-font);
  font-size: 20px;
  color: var(--accent);
}

.hero .eyebrow {
  color: var(--white);
}

.hero h1 {
  max-width: 920px;
  margin: 8px 0 20px;
  font-family: var(--display-font);
  font-size: 128px;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 104px var(--gutter);
}

.intro {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  scroll-margin-top: 0;
}

@supports (height: 100dvh) {
  .intro {
    min-height: 100dvh;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  padding-top: 30px;
}

.intro-main {
  width: min(100%, var(--max));
  margin: auto auto;
  padding: 0 var(--gutter);
}

.intro h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 780px;
  font-size: 64px;
}

.intro-copy {
  max-width: 620px;
  color: #22221f;
}

.intro-copy p {
  margin: 0 0 20px;
}

.material-strip {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding: 28px var(--gutter);
  background: var(--white);
}

.material-strip p,
.material-strip strong {
  width: min(100%, var(--max));
}

.material-strip p {
  margin: 0;
  justify-self: end;
  font-family: var(--display-font);
  font-size: 24px;
  color: var(--muted);
  text-transform: uppercase;
}

.material-strip strong {
  font-family: var(--display-font);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: 88px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feature {
  grid-column: span 6;
  min-width: 0;
}

.feature--wide {
  grid-column: span 12;
}

.feature figure,
.gallery-item {
  margin: 0;
  min-width: 0;
}

.feature img {
  width: 100%;
  height: 72vh;
  min-height: 520px;
  max-height: 860px;
  object-fit: cover;
  background: var(--ink);
}

.feature:not(.feature--wide) img {
  height: 620px;
  min-height: 0;
}

.feature figcaption {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.feature figcaption span {
  grid-row: span 2;
  color: var(--accent);
  font-family: var(--display-font);
  font-size: 28px;
  line-height: 1;
}

.feature figcaption strong {
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.feature figcaption small {
  color: var(--muted);
  font-size: 15px;
}

.statement-band {
  padding: 88px var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.statement-band p {
  width: min(100%, 1180px);
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: 72px;
  line-height: 0.98;
}

.gallery-section {
  padding-bottom: 120px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 34px;
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-button img {
  width: 100%;
  height: auto;
  background: var(--ink);
  transition: opacity 160ms ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  opacity: 0.82;
}

.gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  font-family: var(--display-font);
  font-size: 22px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 190px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-family: var(--display-font);
  font-size: 22px;
}

.site-footer a {
  color: var(--accent);
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 20px;
  padding: 72px 28px 28px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  margin: 0;
  min-width: 0;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 18px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 12px;
  font-family: var(--display-font);
  font-size: 22px;
  text-transform: uppercase;
}

.lightbox figcaption span {
  color: #c7c7c0;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  border-color: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  width: 46px;
  height: 46px;
  font-size: 38px;
  line-height: 1;
}

.lightbox-nav {
  width: 56px;
  height: 88px;
  justify-self: center;
  font-size: 52px;
  line-height: 1;
}

@media (max-width: 980px) {
  :root {
    --gutter: 20px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 94px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1 {
    font-size: 84px;
  }

  .hero-lede {
    font-size: 21px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro {
    scroll-margin-top: 0;
  }

  .intro h2 {
    font-size: 50px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 8px;
    font-size: 64px;
  }

  .feature,
  .feature--wide {
    grid-column: 1;
  }

  .feature-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature img,
  .feature:not(.feature--wide) img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .statement-band p {
    font-size: 52px;
  }

  .gallery-grid {
    column-count: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand {
    width: 128px;
    height: 34px;
  }

  .site-nav {
    font-size: 19px;
  }

  .hero-content {
    padding: 140px var(--gutter) 46px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .section {
    padding: 72px var(--gutter);
  }

  .intro {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 132px;
    padding-bottom: 0;
  }

  .intro h2 {
    font-size: 40px;
  }

  .material-strip {
    grid-template-columns: 1fr;
    width: 100vw;
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    margin-bottom: 0;
  }

  .material-strip p {
    justify-self: start;
  }

  .material-strip strong {
    font-size: 34px;
  }

  .section-heading h2 {
    font-size: 54px;
  }

  .feature-list {
    gap: 52px;
  }

  .statement-band {
    padding: 66px var(--gutter);
  }

  .statement-band p {
    font-size: 38px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 78px 16px 22px;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 42px;
  }

  .lightbox-nav--prev {
    left: 16px;
  }

  .lightbox-nav--next {
    right: 16px;
  }

  .lightbox figcaption {
    display: block;
    padding-bottom: 62px;
  }

  .lightbox figcaption span {
    display: block;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
