:root {
  --black: #050505;
  --ink: #080808;
  --paper: #f2f0eb;
  --white: #f1f1ee;
  --muted: #aaa;
  --red: #e62b26;
  --red2: #ea4d48;
  --warm: #17100b;
  --blueblack: #071014;
  --nav-background: rgba(5, 5, 5, 0.82);
  --section-bg: radial-gradient(circle at 82% 10%, rgba(255, 255, 255, .042), transparent 22%), #050505;
  --content-top-margin: clamp(30px, 4vh, 70px);
  --eyebrow-clr: rgba(255,255,255,.65)
}

* {
  box-sizing: border-box;
}

@font-face { 
  font-family: 'ArialBlackLoc';
  src: url('../assets/fonts/arial-black/ariblk.woff') format('woff');
}

@font-face { 
  font-family: 'Satoshi';
  src: url('../assets/fonts/satoshi/Satoshi-Light.woff2') format('woff2');
}

@font-face { 
  font-family: 'SatoshiBold';
  src: url('../assets/fonts/satoshi/Satoshi-Bold.woff2') format('woff2');
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

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

.nav {
  font-family: "Bebas Neue", "Oswald", "Helvetica Neue", Arial, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 46px;
  isolation: isolate;

  transition:
    backdrop-filter .5s ease,
    box-shadow .5s ease,
    background-color .5s ease;

  overflow: visible;
}

.nav.nav--scrolled {
  mix-blend-mode: normal;

  background:var(--nav-background);
  
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
}

.nav>* {
  position: relative;
  z-index: 1;
}

.logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1.2px;
}

.logo img {
  display: block;
  max-width: clamp(120px, 10vw, 140px);
}

.logo a {
  position: relative;
  display: block;
}

.logo-white,
.logo-red {
  transition: opacity .35s ease;
}

.logo-red {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.logo:hover .logo-white {
  opacity: 0;
}

.logo:hover .logo-red {
  opacity: 1;
}

.navlinks {
  display: flex;
  gap: 42px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.navlinks a {
  opacity: .84;
  transition: opacity .25s ease, transform .25s ease;
  font-size: clamp(16px, 1.2vw, 20px);
}

.navlinks a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color:var(--red)
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: .3s;
}

.nav-toggle:hover span {
  background: var(--red);
}

.section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(60px, 20vh, 100px) 6.8vw;
  isolation: isolate;
}

.bg {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  z-index: -4;
  transform: scale(1.02);
  animation: bgBreath 10s ease-in-out infinite alternate;
}

@keyframes bgBreath {
  from {
    transform: scale(1.02) translate3d(-.4%, -.2%, 0);
  }

  to {
    transform: scale(1.055) translate3d(.55%, .25%, 0);
  }
}

.veil {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .12;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .10), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, .06), transparent 20%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.content {
  position: relative;
  z-index: 2;
}

.display {
  margin: 0;
  font-family: "Bebas Neue", "Oswald", ArialBlackLoc, "Arial Black", "Arial", sans-serif;
  letter-spacing: 0.01em;
  line-height: .9;
  transform-origin: left center;
}

.red {
  color: var(--red);
}

.sub {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  margin-top: 15px;
  max-width: 670px;
  color: #ddd;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.28;
  white-space: nowrap;
  overflow-wrap: normal;
}

.word {
  display: inline-block;
  filter: none;

  opacity: 1;
  transform: none;

}

.reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;

  transition-delay: calc(var(--i, 0) * 0.2s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}




/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(30px, 6vh, 82px);
}

.hero .bg {
  object-position: center center;
}

.hero .veil {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .55) 31%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .30), rgba(0, 0, 0, .02) 66%);
}

.hero-title {
  font-size: clamp(80px, 15vw, 160px);
  max-width: 900px;
}

.hero-title .gapline {
  display: block;
  height: .11em;
}




/* PROOF */
.proof {
  background: var(--section-bg);
}

.section-head {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
}

.view-all-btn span {
  font-family:"Bebas Neue", sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--red);
  display:inline-block;
  transition: opacity .25s ease, transform .25s ease;
}

.view-all-btn:hover span {
  color:var(--red2);
  transform:translateY(-4px);
}

.section-title {
  font-size: clamp(60px, 6vw, 140px);
  padding-top: clamp(40px, 2vh, 80px);
}

.proof .section-title {
  padding-top: 0;
}

.workgrid {
  display: grid;
  grid-template-columns: 1.28fr .9fr 1.02fr;
  grid-auto-rows: clamp(125px, 18vh, 220px);
  gap: 18px;
  margin-top: var(--content-top-margin);
}

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  overflow: hidden;
  background: #000;

  cursor: pointer;
}

.tile::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  inset: auto 0 0 0;

  height: 50%;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 45%,
      rgba(0, 0, 0, 0) 100%,
      transparent);

  pointer-events: none;
  z-index: 2;
}

.tile-thumb {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: 0;

  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.tile:hover .tile-thumb {
  transform: scale(1.05);
}

.client {
  position: absolute;

  left: 10px;
  bottom: 10px;
  font-family: "Satoshi", "Inter", ArialBlackLoc, "Arial Black", "Arial", Impact, sans-serif;

  font-size: clamp(24px, 2.1vw, 64px);
  line-height: .84;
  text-transform: uppercase;
  transform: scaleX(.82);
  transform-origin: left bottom;
  transition: transform .35s ease, color .35s ease;
  z-index: 3;

}

.play-icon {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 50px;
  height: auto;

  transform: translate(-50%, -50%);

  z-index: 3;

  pointer-events: none;
}

.text-shadow {

  text-shadow:
    0 2px 8px rgba(0, 0, 0, .8),
    0 4px 20px rgba(0, 0, 0, .6);
}

@keyframes tileIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tile.large {
  grid-row: span 2;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .72),
      rgba(0, 0, 0, .18));
  z-index: 1;
}

.tile:hover iframe {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;

  min-width: 100%;
  min-height: 100%;

  width: 100vw;
  height: 56.25vw;

  transform: translate(-50%, -50%) scale(1);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);

  pointer-events: none;

}

.tile:hover .client {
  color: var(--red);
  transform: scaleX(.82) translateY(-6px);
}

.tile::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.25)
  );

  opacity: 1;
  transition: opacity .4s ease;

  pointer-events: none;
  z-index: 1;
}

.tile:hover::before {
  opacity: 0;
}




/* BIG GUNS ONLY */
.guns {
  background: #130c08;
}

.guns .bg {
  object-position: center center;
}

.guns .veil {
  background:
    linear-gradient(90deg, rgba(10, 6, 4, .88) 0%, rgba(18, 11, 7, .58) 48%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .63), rgba(0, 0, 0, .02) 60%);
}




/* ABOUT */
.about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  padding: 0;
}

.about-head {
  position: relative;

  z-index: 2;

  padding:
    135px
    6.8vw
    135px
    6.8vw;

  max-width: none;
}

.copy {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
  max-width: 40vw !important;
  font-size: clamp(18px, 1.2vw, 28px);
  font-weight: 200;
  line-height: 1.55;
  margin-top: 50px;
}

.about-photo-full {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: flex-start;

  overflow: hidden;
}

.about-photo-full img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 35% center;

  z-index: 0;

  filter: brightness(1) contrast(0.9) saturate(0.9);
}

.section.about {
  padding: 0 !important;
}


.about .veil {
  z-index: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.85) 15%,
    rgba(0, 0, 0, 0.70) 35%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.20) 75%,
    rgba(0, 0, 0, 0.05) 90%,
    rgba(0, 0, 0, 0.00) 100%
  );
}




/* CHAOS, CONTROLLED */
.chaos {
  background: #071014;
}

.chaos .bg {
  object-position: center center;
}

.chaos .veil {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .58) 50%, rgba(0, 0, 0, .24)),
    linear-gradient(0deg, rgba(0, 0, 0, .70), transparent 50%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-top: var(--content-top-margin);
  max-width: 1180px;
}

.card {
  border-top: 1px solid rgba(255, 255, 255, .30);
  padding-top: 24px;
}

.card h3 {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 17px;
  font-size: clamp(20px, 1.9vw, 29px);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: #c7c7c7;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.46;
}




/* GOOD COMPANY */
.company {
  background: var(--section-bg);
}

.companywrap {
  display:grid;
  grid-template-columns:repeat(5, 1fr);

  column-gap: clamp(30px, 5vw, 60px);
  row-gap:3px;

  margin-top:var(--content-top-margin);
}

.client-list, .agency-list {
  display:contents;
}

.eyebrow {
  grid-column: 1 / -1;

  font-family: "SatoshiBold", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;

  letter-spacing: .28em;
  text-transform: uppercase;

  color: var(--eyebrow-clr);

  margin-bottom: 28px;
}

.eyebrow-secondary {
  margin-top:var(--content-top-margin);
}

.names {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
}

.names div {
  font-size: clamp(18px, 1.2vw, 28px);
  line-height: 1.2;
  color: #eee;
  white-space: nowrap;
}




/* CONTACT */
.section.contact {
  position: relative;
  overflow: hidden;

  min-height: 100svh;
  height: auto;

  isolation: isolate;
}

.contact .bg {
  object-position: center center;
}

.contact .veil {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .53), rgba(0, 0, 0, .20)),
    linear-gradient(0deg, rgba(0, 0, 0, .68), transparent 52%);
}

.contact > img {
  filter: brightness(0.5) contrast(0.9) saturate(0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(90px, 7vw, 140px);
  align-items: start;
}

.form {
  max-width: 760px;
  margin-top: clamp(10px, 4vh, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999;
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  flex: 1;
  width: 100%;
}

.field {
  border-bottom: 1px solid rgba(255, 255, 255, .36);
  padding: 5px 0;
  color: #999;
  font-size: clamp(14px, 1.2vw, 16px);

  margin-top: 20px;
}

.field-label {
  display: block;

  font-family: "SatoshiBold", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;

  letter-spacing: .28em;
  text-transform: uppercase;

  color:#ddd;

  margin-bottom: 5px;
}

.field textarea {
  resize: none;
  max-height: 32px;
}

.field input,
.field textarea {
  flex: 1;

  background: transparent;
  border: 0;
  outline: none;

  color: #fff;

  font-size: clamp(14px, 1.2vw, 16px);
  font-family: inherit;
  width: 100%;
}

.checkbox-wrapper-23 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 30px 0;
}

.checkbox-wrapper-23 *,
.checkbox-wrapper-23 *:after,
.checkbox-wrapper-23 *:before {
  box-sizing: border-box;
}

.checkbox-wrapper-23 input {
  position: absolute;
  opacity: 0;
}

.checkbox-wrapper-23 input:checked+label svg path {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-23 input:focus+label {
  transform: scale(1.03);
}

.checkbox-wrapper-23 input+label {
  display: block;
  border: 2px solid #333;
  width: var(--size);
  height: var(--size);
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}

.checkbox-wrapper-23 input+label:active {
  transform: scale(1.05);
  border-radius: 12px;
}

.checkbox-wrapper-23 input+label svg {
  pointer-events: none;
  padding: 5%;
}

.checkbox-wrapper-23 input+label svg path {
  fill: none;
  stroke: #333;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 101;
  transition: all 250ms cubic-bezier(1, 0, .37, .91);
}

.privacy-note {
  font-size: clamp(10px, 1.2vw, 12px);
  color: #767676;
  line-height: 1.4;
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
}

.btn {
  background: var(--red);
  color: white;
  font-family: "Bebas Neue", ArialBlackLoc, "Arial Black", "Arial", Impact, sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  white-space: nowrap;
  text-transform: uppercase;
  transform-origin: left center;
  transition: transform .25s ease, background .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 25px;

  padding: 10px 34px;

  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--red2);
  transform: translateY(-4px);
}

#captcha-container {
  display: none;

  opacity: 0;
  transform: translateY(12px);

  transition:
    opacity .45s ease,
    transform .45s ease;
}

#captcha-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(.95);

  width: min(500px, 90vw);

  padding: 32px;

  background: rgba(15, 15, 15, .95);

  border: 1px solid rgba(255, 255, 255, .1);

  border-radius: 20px;

  text-align: center;

  color: white;

  line-height: 1.6;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .4);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .8s ease,
    transform .8s ease,
    visibility .8s ease;

  z-index: 99999;
}

.toast.show {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, -50%) scale(1);
}

.toast.error {
  border-color: rgba(255, 80, 80, .3);
}

.toast-backdrop {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, .4);

  backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;

  transition: opacity .8s ease;

  z-index: 99998;
}

.toast-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.contact-info {
  color: #ddd;
  line-height: 1.5;
  padding-bottom: 8px;
}

.contact-info h3 {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 22px;
  font-size: clamp(18px, 1.2vw, 21px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.contact-info .muted {
  font-family: "SatoshiBold", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;

  letter-spacing: .28em;
  text-transform: uppercase;
  margin: 22px 0 8px;

  color: var(--eyebrow-clr);
}

.contact-info a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.contact-info span {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1vw, 16px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-left: 8px;
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
}

.footer {
  font-family: "Satoshi", "Inter", "Oswald", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  background: #050505;
  color: #8b8b8b;
  padding: 34px 6.8vw 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  letter-spacing: .02em;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer strong {
  color: #f1f1ee;
  font-weight: 700;
}

.footer .line {
  color: #c8c8c8;
}

.ticker {
  overflow: hidden;
  overflow-x: clip;

  white-space: nowrap;

  background: var(--red);
  color: var(--white);

  font-family: "SatoshiBold", "Inter", "Oswald", "Arial", sans-serif;
  font-size: 17px;

  text-transform: uppercase;

  padding: 18px 0;

}

.ticker-track {
  display: flex;
  width: max-content;

  animation: marquee 25s linear infinite;

  font-weight: 500;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ticker-track span {
  flex-shrink: 0;

  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
   from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}




/* MODAL */
.vimeo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(0, 0, 0, .5);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;

  transition: opacity .35s ease;
}

.vimeo-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .5);
}

.vimeo-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-container {
  position: relative;
  z-index: 2;

  width: min(92vw, 1400px);

  max-width: calc(85vh * 16 / 9);

  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;

  border: 0;
}

.vimeo-close {
  position: fixed;

  top: 24px;
  right: 24px;

  z-index: 10001;

  border: 0;
  background: none;

  color: var(--muted);

  font-size: 42px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  padding: 0;

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.vimeo-close:hover {
  opacity: .7;
  transform: scale(1.1);
}




/* MEDIA */
@media(max-height:850px) {

  .hero {
    padding-top: 140px;
  }

  .hero-title {
    font-size: clamp(64px, 8vw, 150px);
  }

}

@media(max-height:1100px) {

  .about-photo-full img {
    object-position: 60% center;
  }

}

@media(max-width:1400px) and (min-width:900px) {
  .contact-info {
    padding-left: 70px;
  }
}

@media(max-width:1400px) {
  .section {
    padding: clamp(60px, 15vh, 100px) 6.8vw;
  }

  .section-title {
    padding-top: 0;
  }
}

@media(max-width:900px) {
  .nav {
    mix-blend-mode: normal;

    padding: 22px 26px;

    background: var(--nav-background);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .section-title {
    padding-top: 0px !important;
  }

  .navlinks {

    isolation: isolate;
    transform: translateZ(0);

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;

    padding: 30px;


    background: var(--nav-background);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-15px);

    transition:
      opacity .3s ease,
      transform .3s ease,
      visibility .3s ease;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.nav-open {
    background: var(--nav-background);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .nav.nav-open .navlinks {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navlinks a {
    font-size: 18px;
  }

  .nav.nav-open .nav-toggle span:nth-child(1) {
    transform:
      translateY(11px) rotate(45deg);
  }

  .nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.nav-open .nav-toggle span:nth-child(3) {
    transform:
      translateY(-11px) rotate(-45deg);
  }

  .card {
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.3) 50%, transparent 50%) 100% 1;
    margin-bottom: 25px;
  }

  .hero {
    padding-bottom: 68px;
  }

  .sub {
    white-space: normal;
  }

  .hero .bg {
    object-position: 60% center;
  }

  .guns .bg {
    object-position: 54% center;
  }

  .chaos .bg {
    object-position: 42% center;
  }

  .contact .bg {
    object-position: 56% center;
  }

  .hero-title {
    font-size: clamp(70px, 18.5vw, 138px);
    max-width: 640px;
  }

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

  .tile.large,
  .tile.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-head {
    padding:
        110px
        26px
        80px
        26px;
  }

  .about-photo-full img {
    object-position: 60% center;
  }

  .copy {
    max-width: 60vw !important;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

  .contact-info {
    margin-top: 25px;
  }

  .form {
    margin-top: clamp(10px, 2.5vh, 18px);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px 34px;
  }
}