*, *::before, *::after {
  box-sizing: border-box;
}

/* Modern single-page homepage */
.modern-site {
  margin: 0;
  background: #070707;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}

.modern-site a {
  color: inherit;
  text-decoration: none;
}

.modern-site main {
  display: block;
}

.modern-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 72px;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(-12px);
  animation: modern-reveal 900ms ease forwards 2s;
}

.modern-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.modern-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
}

.modern-nav nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.modern-nav nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: #ff4545;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.modern-nav nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.modern-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #040404;
}

.modern-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 32%),
    linear-gradient(0deg, #040404 0%, rgba(4, 4, 4, 0.62) 24%, rgba(4, 4, 4, 0.42) 100%);
}

.modern-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 0 112px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(24px);
  animation: modern-reveal 900ms ease forwards 2s;
}

.modern-kicker {
  max-width: none;
  margin: 0 0 16px;
  color: #ff4545;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.modern-hero-content h1 {
  max-width: 1080px;
  margin: 0;
  color: #ffffff;
  font-size: 104px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

@keyframes modern-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-section {
  padding: 120px 72px;
}

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

.modern-section-heading .modern-kicker {
  margin: 0 0 10px;
}

.modern-section-heading h2 {
  margin: 0;
  color: inherit;
  font-size: 74px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.reels-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  object-fit: cover;
  background: #000000;
}

.fort-section {
  background: #f5f1e9;
  color: #111111;
}

.project-chapter {
  margin-top: 96px;
}

.fort-reels {
  margin-right: -72px;
  margin-left: -72px;
  padding: 78px 72px 96px;
  background: #090909;
  color: #ffffff;
}

.chapter-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.chapter-heading .modern-kicker {
  margin: 0 0 8px;
}

.chapter-heading h3 {
  margin: 0;
  color: inherit;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.modern-image-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.modern-image-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: #d8d1c4;
}

.modern-image-grid img:nth-child(1),
.modern-image-grid img:nth-child(6),
.modern-image-grid img:nth-child(8),
.modern-image-grid img:nth-child(11),
.modern-image-grid img:nth-child(15),
.modern-image-grid img:nth-child(16) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.modern-image-grid img:nth-child(2),
.modern-image-grid img:nth-child(4),
.modern-image-grid img:nth-child(7),
.modern-image-grid img:nth-child(12),
.modern-image-grid img:nth-child(13),
.modern-image-grid img:nth-child(14) {
  aspect-ratio: 3 / 4;
}

.modern-image-grid img:nth-child(3),
.modern-image-grid img:nth-child(5),
.modern-image-grid img:nth-child(9),
.modern-image-grid img:nth-child(10) {
  aspect-ratio: 1 / 1;
}

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.film-chapter {
  margin-bottom: 0;
}

.campaign-film {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 86vh;
  object-fit: cover;
  background: #000000;
}

.riseup-section {
  min-height: 72vh;
  background: #111111;
  color: #ffffff;
}

.riseup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.riseup-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.contact-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: #f5f1e9;
  color: #111111;
}

.contact-wrap {
  width: min(980px, 100%);
}

.contact-wrap h2 {
  margin: 0 0 34px;
  color: inherit;
  font-size: 76px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.modern-site .contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid #111111;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.modern-site .contact-link::after {
  margin-left: 14px;
  color: #ff4545;
  content: ">";
  transition: transform 220ms ease;
}

.modern-site .contact-link:hover {
  border-color: #ff4545;
  background: #ff4545;
  color: #ffffff;
  transform: translateY(-2px);
}

.modern-site .contact-link:hover::after {
  color: #ffffff;
  transform: translateX(4px);
}

.modern-footer {
  display: flex;
  justify-content: flex-end;
  padding: 34px 72px;
  background: #040404;
  color: #ffffff;
}

.modern-footer a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .modern-nav,
  .modern-section,
  .modern-footer {
    padding-right: 44px;
    padding-left: 44px;
  }

  .modern-hero-content {
    padding-right: 72px;
    padding-left: 72px;
  }

  .modern-hero-content h1 {
    font-size: 82px;
  }

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

  .modern-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fort-reels {
    margin-right: -44px;
    margin-left: -44px;
    padding-right: 44px;
    padding-left: 44px;
  }

  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-wrap h2 {
    font-size: 62px;
  }
}

@media (max-width: 760px) {
  .modern-nav {
    align-items: flex-start;
    padding: 24px 24px;
  }

  .modern-nav nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
  }

  .modern-nav nav a {
    font-size: 11px;
  }

  .modern-hero-content {
    justify-content: flex-end;
    padding: 0 24px 86px;
  }

  .modern-hero-content h1 {
    font-size: 56px;
  }

  .modern-section {
    padding: 76px 24px;
  }

  .project-chapter {
    margin-top: 68px;
  }

  .modern-section-heading {
    display: block;
    margin-bottom: 30px;
  }

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

  .reels-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reels-grid video {
    max-height: none;
  }

  .fort-reels {
    margin-right: -24px;
    margin-left: -24px;
    padding: 64px 24px 76px;
  }

  .chapter-heading {
    display: block;
    margin-bottom: 24px;
  }

  .chapter-heading h3 {
    font-size: 34px;
  }

  .modern-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-image-grid img {
    min-height: 190px;
  }

  .campaign-film {
    max-height: none;
  }

  .riseup-section,
  .contact-section {
    min-height: 60vh;
  }

  .riseup-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-wrap h2 {
    font-size: 44px;
  }

  .modern-site .contact-link {
    min-height: 50px;
    padding-right: 24px;
    padding-left: 24px;
    font-size: 12px;
  }

  .modern-footer {
    justify-content: flex-start;
    padding: 28px 24px;
  }
}

@media (max-width: 460px) {
  .modern-brand {
    font-size: 17px;
  }

  .modern-hero-content h1 {
    font-size: 44px;
  }

  .modern-kicker {
    font-size: 11px;
  }

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

  .modern-image-grid {
    gap: 6px;
  }

  .modern-image-grid img,
  .modern-image-grid img:nth-child(1),
  .modern-image-grid img:nth-child(6),
  .modern-image-grid img:nth-child(8),
  .modern-image-grid img:nth-child(11),
  .modern-image-grid img:nth-child(15),
  .modern-image-grid img:nth-child(16) {
    grid-column: span 2;
    min-height: 240px;
  }
}

html {
  scroll-behavior: smooth;
  word-break: break-word;
}

body {
  margin: 0;
  color: #17161a;
  background: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
a {
  touch-action: manipulation;
}

a {
  color: #040404;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

a:hover,
a:focus {
  color: #ff4545;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.67em auto 0.5em;
  max-width: 850px;
  color: #17161a;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

p {
  max-width: 850px;
  margin: 2rem auto;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

*::selection {
  background-color: #ff4545;
}

.wrapper {
  width: min(95%, 850px);
  margin: auto;
}

.article-body {
  width: 100%;
  max-width: 850px;
  margin: auto;
}

.post-title {
  padding-top: 4rem;
}

.post-title-before {
  position: absolute;
  top: 0;
  left: 13rem;
  z-index: -1;
  margin: 0;
  padding: 0;
  color: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 400px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.1;
  pointer-events: none;
  text-align: left;
  text-orientation: mixed;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  -webkit-text-stroke: 1px #000;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 20em;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  background: #040404;
}

.sidebar-content {
  width: 75%;
  margin: 0 auto;
}

.sidebar-title {
  margin: 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3rem;
  text-transform: uppercase;
}

.sidebar a {
  color: #fff;
}

.sidebar-nav {
  padding: 2rem 0 6rem;
}

.sidebar-nav ul,
.menu__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 1rem 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 300ms all ease;
}

.sidebar-nav li:first-child {
  display: none;
}

.sidebar-nav li:not(:last-child):hover {
  transform: translateX(10px);
}

.sidebar-nav li:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 1rem;
  background: #ff4545;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.sidebar-nav li:last-child:hover {
  background: #b9b9b9;
  font-weight: 500;
}

.sidebar-nav li:last-child:hover a {
  color: #040404;
}

.sidebar-nav li:last-child a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.content {
  position: static;
  width: calc(100% - 20em);
  margin-left: 20em;
  overflow: visible;
}

.cursor {
  pointer-events: none;
}

.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translate(-100px, -100px);
  transition: transform 120ms ease-out;
}

.cursor__ball circle {
  fill: transparent;
  stroke: red;
  stroke-width: 1;
}

.photo-gallery {
  display: grid;
  width: 100%;
  margin: 3rem auto 4rem;
  gap: 5px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 2.5px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 2.5px;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0.01;
  transition: opacity 0.45s;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.home .content {
  min-height: 100vh;
}

.home .post-title,
.home .post-title-before {
  display: none;
}

.fullwidth {
  position: relative;
  left: 50%;
  right: 50%;
  width: calc(100vw - 20em);
  margin-left: calc(-50vw + 10em);
  margin-right: -50vw;
}

.homepage-hero-alt {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #040404;
}

.homepage-hero-alt .text {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  width: min(1100px, 86%);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-title-reveal 900ms ease forwards;
  animation-delay: 2.4s;
}

.homepage-hero-alt h1 {
  max-width: 900px;
  margin-right: 0;
  margin-left: 0;
  color: #fff;
}

.homepage-hero-alt .smallcaps {
  margin-bottom: 0.25rem;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.homepage-hero-alt .typed-heading {
  margin-top: 0;
  font-size: 72px;
  line-height: 1;
}

.homepage-hero-alt .heading-content {
  margin-top: 0.25rem;
  font-size: 60px;
}

.homepage-hero-alt .hero-catalogue-title {
  width: max-content;
  max-width: calc(100vw - 26em);
  white-space: nowrap;
  font-size: clamp(48px, 5vw, 76px);
}

.homepage-hero-alt .button-text a {
  position: relative;
  color: #ff4545;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.homepage-hero-alt .button-text a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff4545;
  content: "";
}

.homepage-hero-alt .video,
.homepage-hero-alt .video::after,
.homepage-hero-alt video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.homepage-hero-alt .video::after {
  background: linear-gradient(0deg, #040404 0%, rgba(4, 4, 4, 0.5) 30%);
  content: "";
}

.homepage-hero-alt video {
  object-fit: cover;
}

@keyframes hero-title-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fort-gallery {
  background: #fff;
  padding-top: 5px;
}

.fort-gallery-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.fort-gallery img {
  display: block;
  width: 100%;
  height: 42vw;
  max-height: 680px;
  min-height: 320px;
  object-fit: cover;
}

.project-wrapper,
.project-body {
  max-width: 1100px;
}

.project-body {
  position: relative;
}

.project-page .post-title {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.project-page .post-title-before-horizontal {
  top: -2.25rem;
  left: -5rem;
  z-index: 0;
  width: auto;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.9;
  opacity: 0.08;
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 5rem auto;
}

.project-grid img,
.project-media video {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.project-video-vertical video {
  height: 725px;
}

.project-video-vertical {
  grid-row: span 2;
}

.project-media {
  overflow: hidden;
  background: #040404;
}

.project-video {
  grid-column: span 2;
}

.text-block {
  width: min(850px, 90%);
  margin: 7rem auto;
  text-align: center;
}

.text-block h2 {
  font-size: 28px;
}

.work-block {
  padding: 0;
}

.work-block-container {
  display: flex;
  flex-wrap: wrap;
}

.work-block-flex {
  display: flex;
  flex: 1 1 460px;
  flex-direction: column;
}

.work-block-large,
.work-block-small {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.work-block-large {
  min-height: 720px;
}

.work-image {
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-image:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.55));
}

.work-hover-text h2,
.work-hover-text p {
  margin: 0;
  color: #fff;
}

.work-hover-text p {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: 4rem;
  align-items: center;
  margin: 3rem auto 5rem;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.about-copy h2,
.about-copy p {
  margin-right: 0;
  margin-left: 0;
}

.about-button {
  margin-left: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 6rem auto 5rem;
}

.video-card {
  position: relative;
  display: block;
  aspect-ratio: 1280 / 650;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #040404;
  cursor: pointer;
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  content: "";
  transition: background 0.25s ease;
}

.video-card:hover::after {
  background: rgba(0, 0, 0, 0.32);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 69, 69, 0.96);
  transform: translate(-50%, -50%);
}

.play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 5vw;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal iframe {
  width: min(1100px, 90vw);
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.footer {
  position: relative;
  background: #040404;
  text-align: center;
}

.footer-inner {
  position: relative;
  min-height: 260px;
  padding: 8vh 1rem;
}

.footer-content {
  padding: 1rem 0;
}

.footer-content h2 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 500;
}

.button {
  display: inline-block;
  margin: 2rem;
  padding: 1rem 4rem;
  border: 0;
  background: #ff4545;
  color: #fff;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.button:hover {
  background: #b9b9b9;
  color: #040404;
  font-weight: 500;
}

.copyright {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  margin: 0;
  padding: 1rem;
  color: #363636;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.menu {
  display: none;
}

.r-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font: inherit;
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: none;
}

.m-hamburger {
  position: relative;
  display: inline-flex;
  width: 1.75rem;
  height: 1.25rem;
}

.m-hamburger::before,
.m-hamburger::after,
.m-hamburger__label {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border: none;
  background-color: #fff;
  transition-duration: 0.15s;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}

.m-hamburger::before,
.m-hamburger::after {
  content: "";
}

.m-hamburger::before {
  top: 0;
}

.m-hamburger::after {
  bottom: 0;
}

.m-hamburger__label {
  top: calc(50% - 2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.lightbox-close {
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 38px;
}

.lightbox-nav {
  top: 50%;
  width: 55px;
  height: 50px;
  border-radius: 2px;
  font-size: 54px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

@media (max-width: 1000px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 26px;
  }

  .wrapper {
    width: min(340px, calc(100vw - 50px));
    max-width: min(340px, calc(100vw - 50px));
    margin-right: auto;
    margin-left: 25px;
  }

  .article-body,
  .article-body p,
  .article-body h1,
  .article-body h2,
  .article-body h3,
  .photo-gallery {
    width: 100%;
    max-width: 100%;
  }

  .sidebar,
  .post-title-before,
  .cursor {
    display: none;
  }

  .content {
    width: 100%;
    margin-left: 0;
  }

  main {
    padding-bottom: 5rem;
  }

  .post-title {
    padding-top: 4rem;
  }

  .menu {
    --menu-circle-size: 6.25rem;
    --menu-circle-height: calc(var(--menu-circle-size) / 2);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9998;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .menu__nav {
    z-index: 2;
    display: flex;
    width: 100%;
    height: 0;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }

  .menu__nav ul {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
  }

  .menu__nav li {
    margin-top: 4vh;
    text-align: center;
  }

  .menu__nav a {
    color: #fff;
    font-size: 30px;
  }

  .menu__nav a:hover {
    color: #040404;
  }

  .menu__toggle {
    position: relative;
    z-index: 0;
    flex: none;
    width: var(--menu-circle-size);
    height: var(--menu-circle-height);
    padding-top: calc(var(--menu-circle-height) - 1.25rem - 1rem);
  }

  .menu__toggle::before {
    position: absolute;
    bottom: -0.5em;
    left: calc(50% - 0.5em);
    z-index: -1;
    width: 1em;
    height: 1em;
    border-radius: 10px;
    background-color: #ff4545;
    content: "";
    font-size: var(--menu-circle-size);
    transition: transform 0.25s cubic-bezier(0.04, -0.1, 0.29, 0.98), width 0.25s cubic-bezier(0.04, -0.1, 0.29, 0.98), height 0.25s cubic-bezier(0.04, -0.1, 0.29, 0.98);
    will-change: width, height;
  }

  .menu_activated {
    height: 100%;
  }

  .menu_activated .menu__nav {
    display: flex;
    flex-grow: 1;
    align-items: center;
    opacity: 1;
    transition-delay: 0.3s;
    transition-duration: 0.2s;
  }

  .menu_activated .menu__toggle::before {
    width: 100vmax;
    height: 100vmax;
    transform: translate3d(-50vh, -50vh, 0) scale(5);
    transition-duration: 1s;
  }

  .menu:not(.menu_activated) .menu__nav ul {
    display: none;
  }

  .menu_activated .m-hamburger::before {
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(45deg);
  }

  .menu_activated .m-hamburger::after {
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(135deg);
  }

  .menu_activated .m-hamburger__label {
    opacity: 0;
    transform: rotate(-45deg) translate3d(-0.285em, -0.3em, 0);
  }

  .fullwidth {
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .homepage-hero-alt {
    min-height: 92vh;
  }

  .homepage-hero-alt .text {
    min-height: 92vh;
    width: min(340px, calc(100vw - 50px));
    margin-left: 25px;
  }

  .homepage-hero-alt .smallcaps {
    font-size: 14px;
  }

  .homepage-hero-alt .typed-heading,
  .homepage-hero-alt .heading-content {
    font-size: 40px;
  }

  .homepage-hero-alt .hero-catalogue-title {
    width: min(340px, calc(100vw - 50px));
    max-width: min(340px, calc(100vw - 50px));
    white-space: normal;
    font-size: 40px;
  }

  .fort-gallery-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .fort-gallery img {
    height: 64vw;
    min-height: 220px;
  }

  .text-block {
    width: min(340px, calc(100vw - 50px));
    margin: 4rem 0 4rem 25px;
    text-align: left;
  }

  .text-block h2 {
    font-size: 24px;
  }

  .work-block-container,
  .about-layout,
  .video-grid,
  .project-grid {
    display: block;
  }

  .project-page .post-title {
    white-space: normal;
  }

  .project-page .post-title-before-horizontal {
    display: none;
  }

  .project-grid {
    margin-top: 4rem;
  }

  .project-grid img,
  .project-media video {
    height: 64vw;
    min-height: 220px;
    margin-bottom: 5px;
  }

  .work-block-large,
  .work-block-small {
    min-height: 300px;
  }

  .overlay {
    padding: 2rem;
  }

  .about-layout {
    margin-bottom: 4rem;
  }

  .about-copy h2 {
    font-size: 26px;
  }

  .about-button {
    margin: 1rem 0 0;
  }

  .video-grid {
    margin-top: 4rem;
  }

  .video-card {
    margin-bottom: 18px;
  }

  .footer-inner {
    min-height: 220px;
    padding-bottom: 6rem;
  }

  .copyright {
    right: 1rem;
    bottom: 0.75rem;
  }
}
