:root {
  --black: #0d0d0d;
  --off-white: #f2f1ed;
  --white: #ffffff;
  --gray: #b7b7b2;
  --muted: #777772;
  --dark-gray: #191919;
  --line: rgba(242, 241, 237, 0.16);
  --line-dark: rgba(13, 13, 13, 0.14);

  --max-width: 1440px;

  --font-sans: "Inter", Arial, sans-serif;
  --font-mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--off-white);
  color: var(--black);
}


/* =========================================
   LOADER
========================================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

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

  background: var(--black);

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.loader-mark {
  font-size: 20px;
  font-weight: 600;
}

.loader-line {
  width: 90px;
  height: 1px;
  background: var(--off-white);

  transform-origin: left;
  animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
  }

  50% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

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

  padding: 24px 32px;

  mix-blend-mode: normal;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-location,
.connection-status {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--off-white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.menu-button {
  width: 42px;
  height: 42px;

  border: 1px solid var(--line);
  background: transparent;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.menu-button span {
  width: 15px;
  height: 1px;
  background: var(--off-white);

  transition: transform 0.3s ease;
}

.menu-button:hover {
  background: var(--off-white);
}

.menu-button:hover span {
  background: var(--black);
}


/* =========================================
   MENU
========================================= */

.menu {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: flex;
  flex-direction: column;

  background: var(--off-white);
  color: var(--black);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-10px);

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px 32px;

  border-bottom: 1px solid var(--line-dark);

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.menu-close {
  border: 0;
  background: none;

  cursor: pointer;

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.menu-content {
  flex: 1;

  max-width: var(--max-width);
  width: 100%;

  margin: auto;
  padding: 70px 32px;
}

.menu-label {
  margin-bottom: 25px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.menu-nav {
  display: flex;
  flex-direction: column;
}

.menu-nav a {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;

  padding: 15px 0;

  border-bottom: 1px solid var(--line-dark);

  transition: padding-left 0.3s ease;
}

.menu-nav a:first-child {
  border-top: 1px solid var(--line-dark);
}

.menu-nav a:hover {
  padding-left: 15px;
}

.menu-nav span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.menu-nav strong {
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.menu-bottom {
  display: flex;
  justify-content: space-between;

  padding: 20px 32px;

  border-top: 1px solid var(--line-dark);

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
}


/* =========================================
   GENERAL
========================================= */

.section {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section-meta {
  display: flex;
  justify-content: space-between;

  padding-top: 120px;
  padding-bottom: 28px;

  border-bottom: 1px solid var(--line);

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 25px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-number {
  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 10px;
}

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

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

.hero-grid {
  flex: 1;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
  gap: 8vw;

  align-items: center;

  padding: 80px 0 100px;
}

.hero-copy h1 {
  max-width: 800px;

  font-size: clamp(56px, 8vw, 125px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.hero-copy h1 em,
.intro h2 em,
.experience-copy h2 em,
.quality h2 em,
.video-types h2 em,
.join h2 em {
  font-style: normal;
  color: var(--gray);
}

.hero-description {
  max-width: 550px;

  margin-top: 40px;

  color: var(--gray);

  font-size: 15px;
  line-height: 1.7;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  min-width: 230px;

  margin-top: 38px;
  padding: 15px 17px;

  border: 1px solid var(--line);

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.primary-link:hover {
  background: var(--off-white);
  color: var(--black);
}


/* =========================================
   VIDEO VISUAL
========================================= */

.video-visual-space {
  min-height: 560px;

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

.visual-frame {
  position: relative;

  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;

  border: 1px solid var(--line);

  overflow: hidden;
}

.visual-top,
.visual-bottom {
  position: absolute;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;

  padding: 16px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.visual-top {
  top: 0;
}

.visual-bottom {
  bottom: 0;
}

.visual-center {
  position: absolute;
  inset: 55px 25px;

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

  border: 1px solid var(--line);
}

.frame-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(242, 241, 237, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(242, 241, 237, 0.06) 1px,
      transparent 1px
    );

  background-size: 50px 50px;
}

.play-symbol {
  position: relative;
  z-index: 2;

  width: 90px;
  height: 90px;

  border: 1px solid var(--line);

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

  transition: transform 0.5s ease;
}

.visual-frame:hover .play-symbol {
  transform: scale(1.1);
}

.play-symbol span {
  width: 0;
  height: 0;

  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--off-white);

  margin-left: 4px;
}

.frame-label {
  position: absolute;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.frame-label-one {
  top: 20%;
  left: 8%;
}

.frame-label-two {
  right: 8%;
  top: 48%;
}

.frame-label-three {
  bottom: 15%;
  left: 15%;
}


/* =========================================
   INTRO
========================================= */

.intro {
  display: grid;
  grid-template-columns: 18% 1fr;

  gap: 50px;

  padding-top: 160px;
  padding-bottom: 160px;

  border-top: 1px solid var(--line);
}

.intro-content {
  max-width: 850px;
}

.intro h2 {
  margin-bottom: 45px;

  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.intro-content > p:not(.eyebrow) {
  max-width: 670px;

  margin-bottom: 20px;

  color: var(--gray);

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   COLLECTION
========================================= */

.collection {
  padding-top: 120px;
  padding-bottom: 150px;

  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 18% 1fr;

  gap: 50px;

  margin-bottom: 80px;
}

.section-heading h2 {
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.collection-list {
  border-top: 1px solid var(--line);
}

.collection-item {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  gap: 30px;
  align-items: center;

  padding: 34px 0;

  border-bottom: 1px solid var(--line);

  transition:
    padding-left 0.35s ease,
    background 0.35s ease;
}

.collection-item:hover {
  padding-left: 15px;
}

.item-index {
  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
}

.item-content h3 {
  margin-bottom: 10px;

  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.item-content p {
  max-width: 650px;

  color: var(--gray);

  font-size: 14px;
  line-height: 1.7;
}

.item-arrow {
  color: var(--gray);

  font-size: 20px;

  transition: transform 0.3s ease;
}

.collection-item:hover .item-arrow {
  transform: translate(4px, -4px);
}


/* =========================================
   EXPERIENCE
========================================= */

.experience {
  padding-top: 150px;
  padding-bottom: 150px;

  border-top: 1px solid var(--line);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 8vw;

  align-items: center;
}

.experience-visual {
  order: 1;
}

.experience-copy {
  order: 2;
}

.camera-space {
  position: relative;

  aspect-ratio: 1 / 1;

  border: 1px solid var(--line);

  padding: 20px;

  overflow: hidden;
}

.camera-top,
.camera-bottom {
  display: flex;
  justify-content: space-between;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.camera-bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.camera-body {
  position: absolute;

  width: 60%;
  aspect-ratio: 1.3 / 1;

  left: 50%;
  top: 50%;

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

  border: 1px solid var(--line);

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

.camera-lens {
  width: 38%;
  aspect-ratio: 1;

  border: 1px solid var(--line);
  border-radius: 50%;

  position: relative;
}

.camera-lens::after {
  content: "";

  position: absolute;
  inset: 25%;

  border: 1px solid var(--line);
  border-radius: 50%;
}

.camera-info {
  position: absolute;
  left: 15px;
  top: 15px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 7px;
}

.experience-copy h2 {
  margin-bottom: 35px;

  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.experience-copy > p:not(.eyebrow) {
  max-width: 550px;

  margin-bottom: 20px;

  color: var(--gray);

  font-size: 15px;
  line-height: 1.8;
}

.simple-list {
  margin-top: 45px;

  list-style: none;

  border-top: 1px solid var(--line);
}

.simple-list li {
  display: grid;
  grid-template-columns: 40px 1fr;

  padding: 14px 0;

  border-bottom: 1px solid var(--line);

  color: var(--gray);

  font-size: 13px;
}

.simple-list span {
  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 8px;
}


/* =========================================
   QUALITY
========================================= */

.quality {
  padding-top: 150px;
  padding-bottom: 150px;

  border-top: 1px solid var(--line);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quality-statement {
  min-height: 300px;

  padding: 28px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.quality-statement:hover {
  background: var(--off-white);
  color: var(--black);
}

.quality-symbol {
  display: block;

  margin-bottom: 100px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
}

.quality-statement h3 {
  margin-bottom: 12px;

  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.quality-statement p {
  color: var(--gray);

  font-size: 13px;
  line-height: 1.7;
}

.quality-statement:hover p {
  color: var(--muted);
}


/* =========================================
   RESPONSIBILITY
========================================= */

.responsibility {
  padding-top: 150px;
  padding-bottom: 150px;

  border-top: 1px solid var(--line);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 8vw;
}

.responsibility-copy h2 {
  font-size: clamp(44px, 6vw, 85px);
  line-height: 0.93;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.responsibility-text {
  padding-top: 40px;
}

.responsibility-text > p {
  max-width: 600px;

  margin-bottom: 25px;

  color: var(--gray);

  font-size: 15px;
  line-height: 1.8;
}

.responsibility-note {
  display: flex;
  gap: 20px;

  margin-top: 50px;
  padding: 22px;

  border: 1px solid var(--line);
}

.note-mark {
  font-family: var(--font-mono);
  font-size: 12px;
}

.responsibility-note p {
  color: var(--off-white);

  font-size: 13px;
}


/* =========================================
   VIDEO TYPES
========================================= */

.video-types {
  padding-top: 150px;
  padding-bottom: 150px;

  border-top: 1px solid var(--line);
}

.video-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.data-type {
  min-height: 260px;

  padding: 28px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.data-type:hover {
  background: var(--off-white);
  color: var(--black);
}

.data-type > span {
  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 9px;
}

.data-type h3 {
  margin-top: 95px;
  margin-bottom: 12px;

  font-size: 21px;
  font-weight: 500;
}

.data-type p {
  color: var(--gray);

  font-size: 13px;
  line-height: 1.7;
}

.data-type:hover p {
  color: var(--muted);
}


/* =========================================
   JOIN
========================================= */

.join {
  padding-top: 170px;
  padding-bottom: 190px;

  border-top: 1px solid var(--line);
}

.join-inner {
  max-width: 950px;
}

.join h2 {
  font-size: clamp(65px, 10vw, 150px);
  line-height: 0.83;
  letter-spacing: -0.08em;
  font-weight: 500;
}

.join-inner > p:not(.eyebrow) {
  max-width: 500px;

  margin-top: 40px;

  color: var(--gray);

  font-size: 15px;
  line-height: 1.7;
}

.large-link {
  min-width: 270px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-top {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 80px 32px;

  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);

  gap: 50px;
}

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

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-brand p {
  margin: 15px 0 30px;

  color: var(--gray);

  font-size: 13px;
}

.footer-brand span {
  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 8px;
}

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

  gap: 11px;
}

.footer-label {
  margin-bottom: 10px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.footer-column a {
  color: var(--gray);

  font-size: 12px;

  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--off-white);
}

.footer-bottom {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 22px 32px;

  border-top: 1px solid var(--line);

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  gap: 30px;

  color: var(--muted);

  font-family: var(--font-mono);
  font-size: 8px;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a:hover {
  color: var(--off-white);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

  .video-visual-space {
    min-height: 460px;
  }

  .quality-grid,
  .video-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-statement {
    min-height: 270px;
  }

  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {

  .site-header {
    padding: 20px;
  }

  .brand-location,
  .connection-status {
    display: none;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-meta {
    padding-top: 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    padding-top: 70px;
    padding-bottom: 80px;
  }

  .hero-copy h1 {
    font-size: clamp(55px, 13vw, 95px);
  }

  .video-visual-space {
    min-height: auto;
  }

  .visual-frame {
    max-width: 650px;
  }

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

    padding-top: 110px;
    padding-bottom: 110px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience-grid,
  .responsibility-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .experience-copy {
    order: 1;
  }

  .experience-visual {
    order: 2;
  }

  .quality-grid,
  .video-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-bottom > span:last-child {
    text-align: left;
  }
}


/* =========================================
   PHONE
========================================= */

@media (max-width: 600px) {

  .site-header {
    padding: 16px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .menu-top {
    padding: 18px 16px;
  }

  .menu-content {
    padding: 45px 16px;
  }

  .menu-nav a {
    grid-template-columns: 40px 1fr;
  }

  .menu-nav strong {
    font-size: clamp(30px, 10vw, 48px);
  }

  .menu-bottom {
    padding: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-meta {
    padding-top: 85px;
    padding-bottom: 20px;
  }

  .hero-grid {
    padding-top: 55px;
    padding-bottom: 65px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .hero-description {
    margin-top: 30px;
    font-size: 14px;
  }

  .primary-link {
    width: 100%;
    min-width: 0;
  }

  .visual-frame {
    aspect-ratio: 1 / 1.15;
  }

  .visual-center {
    inset: 48px 15px;
  }

  .play-symbol {
    width: 70px;
    height: 70px;
  }

  .intro {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro h2,
  .section-heading h2,
  .experience-copy h2,
  .responsibility-copy h2 {
    font-size: clamp(39px, 11vw, 62px);
  }

  .collection {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .collection-item {
    grid-template-columns: 35px 1fr 25px;
    gap: 12px;

    padding: 25px 0;
  }

  .collection-item:hover {
    padding-left: 0;
  }

  .item-content h3 {
    font-size: 18px;
  }

  .item-content p {
    font-size: 13px;
  }

  .experience,
  .quality,
  .responsibility,
  .video-types {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .camera-space {
    aspect-ratio: 1 / 1.05;
  }

  .quality-grid,
  .video-type-grid {
    grid-template-columns: 1fr;
  }

  .quality-statement,
  .data-type {
    min-height: 230px;
  }

  .quality-symbol {
    margin-bottom: 70px;
  }

  .data-type h3 {
    margin-top: 70px;
  }

  .join {
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .join h2 {
    font-size: clamp(60px, 18vw, 100px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 60px 16px;
    gap: 45px 25px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    padding: 20px 16px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}


/* =========================================
   SMALL PHONE
========================================= */

@media (max-width: 380px) {

  .hero-copy h1 {
    font-size: 45px;
  }

  .intro h2,
  .section-heading h2,
  .experience-copy h2,
  .responsibility-copy h2 {
    font-size: 37px;
  }

  .join h2 {
    font-size: 55px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}