/* =========================================================
   DABBIES — TEXT COLLECTION
   text.css
   Monograph Editorial System
   ========================================================= */

:root {
  --black: #090909;
  --black-soft: #0f0f0e;
  --white: #f3f1eb;
  --gray: #a5a39d;
  --muted: #6f6e69;
  --line: rgba(243, 241, 235, 0.15);
  --line-soft: rgba(243, 241, 235, 0.08);

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

  --page-padding: clamp(22px, 5vw, 72px);
  --section-space: clamp(90px, 12vw, 180px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;

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

  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--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.7s ease,
    visibility 0.7s ease;
}

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

.loader-inner {
  width: min(420px, calc(100% - 40px));

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

  color: var(--white);

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

.loader-line {
  position: relative;

  width: 100%;
  height: 1px;

  overflow: hidden;

  background: var(--line);
}

.loader-line::after {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 30%;
  height: 100%;

  background: var(--white);

  animation: loaderProgress 1.2s ease-in-out infinite;
}

@keyframes loaderProgress {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(420%);
  }
}


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

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

  z-index: 1000;

  height: 78px;

  padding: 0 var(--page-padding);

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

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

  background: rgba(9, 9, 9, 0.88);

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

.brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.header-meta {
  position: absolute;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 28px;

  color: var(--gray);

  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

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

.status i {
  width: 5px;
  height: 5px;

  display: block;

  border-radius: 50%;

  background: var(--white);
}

.menu-button {
  display: flex;
  align-items: center;
  gap: 11px;

  cursor: pointer;

  color: var(--white);

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

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-icon i {
  display: block;

  width: 21px;
  height: 1px;

  background: var(--white);

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


/* =========================================================
   FULL SCREEN MENU
   ========================================================= */

.menu {
  position: fixed;
  inset: 0;

  z-index: 1100;

  padding: 28px var(--page-padding);

  display: flex;
  flex-direction: column;

  background: var(--black);

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

  transform: translateY(-15px);

  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s ease,
    transform 0.45s var(--ease);
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

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

  color: var(--gray);

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

.menu-close {
  cursor: pointer;

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

.menu-links {
  margin: auto 0;
}

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

  padding: 15px 0;

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

  transition:
    padding-left 0.35s var(--ease),
    color 0.35s ease;
}

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

.menu-links a:hover {
  padding-left: 12px;
  color: var(--gray);
}

.menu-number {
  color: var(--gray);

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

.menu-label {
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.9;

  font-weight: 400;

  letter-spacing: -0.065em;
}

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

  color: var(--muted);

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


/* =========================================================
   GLOBAL
   ========================================================= */

main {
  padding-top: 78px;
}

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

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

.eyebrow {
  color: var(--gray);

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  width: fit-content;

  padding-bottom: 7px;

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

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

  transition:
    gap 0.3s var(--ease),
    color 0.3s ease;
}

.text-link:hover {
  gap: 20px;
  color: var(--gray);
}


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

.hero {
  min-height: calc(100vh - 78px);

  padding:
    clamp(60px, 8vw, 110px)
    var(--page-padding)
    clamp(70px, 9vw, 120px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(340px, 0.85fr);

  gap: clamp(50px, 8vw, 130px);

  align-items: center;

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

.hero-copy {
  max-width: 760px;
}

.hero-copy .section-number {
  margin-bottom: 34px;
}

.hero-copy .eyebrow {
  margin-bottom: 23px;
}

.hero h1 {
  margin-bottom: 38px;

  font-size: clamp(68px, 9.2vw, 145px);
  line-height: 0.82;

  font-weight: 400;

  letter-spacing: -0.075em;
}

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

  margin-bottom: 32px;

  color: var(--gray);

  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
}


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

.hero-visual {
  position: relative;

  width: 100%;
  max-width: 650px;

  justify-self: end;
}

.visual-label {
  position: absolute;
  z-index: 2;

  color: var(--gray);

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

.visual-label.top-left {
  top: -23px;
  left: 0;
}

.visual-label.bottom-right {
  right: 0;
  bottom: -23px;
}

.text-visual-space {
  position: relative;

  width: 100%;
  min-height: min(58vw, 600px);

  overflow: hidden;

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

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(243, 241, 235, 0.06),
      transparent 42%
    ),
    var(--black-soft);
}

.text-visual-space::before {
  content: "";

  position: absolute;
  inset: 24px;

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

  pointer-events: none;
}

.text-visual-space::after {
  content: "DABBIES / TEXT / FIELD";

  position: absolute;
  top: 24px;
  right: 24px;

  color: var(--muted);

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

.text-fragment {
  position: absolute;

  color: rgba(243, 241, 235, 0.17);

  font-size: clamp(16px, 1.8vw, 27px);
  line-height: 1;

  letter-spacing: -0.04em;

  transition:
    color 0.4s ease,
    transform 0.5s var(--ease);
}

.fragment-one {
  top: 17%;
  left: 10%;
}

.fragment-two {
  top: 30%;
  right: 10%;
}

.fragment-three {
  top: 48%;
  left: 8%;
}

.fragment-four {
  top: 65%;
  right: 9%;
}

.fragment-five {
  bottom: 12%;
  left: 17%;
}

.text-visual-space:hover .text-fragment {
  color: rgba(243, 241, 235, 0.35);
}

.text-visual-space:hover .fragment-one {
  transform: translate(7px, -4px);
}

.text-visual-space:hover .fragment-two {
  transform: translate(-6px, 5px);
}

.text-visual-space:hover .fragment-three {
  transform: translate(5px, -3px);
}

.text-visual-space:hover .fragment-four {
  transform: translate(-7px, 4px);
}

.text-visual-space:hover .fragment-five {
  transform: translate(5px, -4px);
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;

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

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

  text-align: center;

  white-space: nowrap;
}

.visual-center span {
  margin-bottom: 7px;

  color: var(--gray);

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

.visual-center strong {
  font-size: clamp(27px, 3.5vw, 48px);
  line-height: 0.9;

  font-weight: 400;

  letter-spacing: -0.06em;
}


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

.intro {
  padding: var(--section-space) var(--page-padding);

  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);

  gap: clamp(40px, 7vw, 110px);

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

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

.intro-lead {
  max-width: 820px;

  margin-bottom: 30px;

  font-size: clamp(31px, 4vw, 61px);
  line-height: 0.98;

  letter-spacing: -0.055em;
}

.intro-body {
  max-width: 610px;

  color: var(--gray);

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


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

.collection {
  padding: var(--section-space) var(--page-padding);

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

.section-intro {
  max-width: 1000px;

  margin-bottom: clamp(55px, 7vw, 90px);
}

.section-intro .section-number {
  margin-bottom: 28px;
}

.section-intro h2 {
  font-size: clamp(52px, 7.8vw, 120px);
  line-height: 0.84;

  font-weight: 400;

  letter-spacing: -0.075em;
}

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

.collection-item {
  display: grid;

  grid-template-columns: 70px minmax(0, 1fr) 120px;

  gap: 30px;

  padding: 31px 0;

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

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

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

.item-index,
.item-tag {
  color: var(--gray);

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

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

  font-size: clamp(21px, 2vw, 30px);
  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.045em;
}

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

  color: var(--gray);

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

.item-tag {
  text-align: right;
}


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

.experience {
  padding: var(--section-space) var(--page-padding);

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.9fr);

  gap: clamp(50px, 8vw, 130px);

  align-items: center;

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

.experience-image {
  position: relative;

  min-height: min(48vw, 570px);

  overflow: hidden;

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

  background:
    linear-gradient(
      135deg,
      rgba(243, 241, 235, 0.035),
      transparent
    ),
    var(--black-soft);
}

.experience-label {
  position: absolute;
  top: 23px;
  left: 23px;

  color: var(--gray);

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

.language-grid {
  position: absolute;
  inset: 80px 35px;

  display: grid;

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

  align-content: center;

  gap: 14px 25px;
}

.language-grid span {
  color: rgba(243, 241, 235, 0.17);

  font-size: clamp(21px, 2.8vw, 42px);
  line-height: 0.9;

  letter-spacing: -0.06em;

  transition: color 0.35s ease;
}

.experience-image:hover .language-grid span {
  color: rgba(243, 241, 235, 0.34);
}

.experience-copy {
  max-width: 590px;
}

.experience-copy .section-number {
  margin-bottom: 30px;
}

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

  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.84;

  font-weight: 400;

  letter-spacing: -0.07em;
}

.experience-copy p {
  margin-bottom: 20px;

  color: var(--gray);

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


/* =========================================================
   CONTRIBUTOR
   ========================================================= */

.contributor {
  padding: var(--section-space) var(--page-padding);

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

.contributor > .section-number {
  margin-bottom: 65px;
}

.contributor-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.9fr);

  gap: clamp(50px, 9vw, 140px);
}

.contributor-heading h2 {
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 0.83;

  font-weight: 400;

  letter-spacing: -0.075em;
}

.contributor-copy {
  max-width: 590px;
}

.contributor-copy > p {
  margin-bottom: 22px;

  color: var(--gray);

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

.contributor-points {
  margin-top: 48px;

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

.contributor-points > div {
  min-height: 67px;

  display: grid;

  grid-template-columns: 42px 110px 1fr;

  align-items: center;

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

.contributor-points span,
.contributor-points small {
  color: var(--gray);

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

.contributor-points strong {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}


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

.quality {
  padding: var(--section-space) var(--page-padding);

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

.quality .section-intro {
  margin-bottom: 70px;
}

.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: 190px;

  padding: 22px;

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

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

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

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

.quality-statement p {
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1;

  letter-spacing: -0.045em;
}


/* =========================================================
   VISUAL DATA
   ========================================================= */

.visual-data {
  padding: var(--section-space) var(--page-padding);

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

.visual-data-header {
  margin-bottom: 65px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;
}

.visual-data-header p {
  max-width: 450px;

  color: var(--gray);

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

.visual-data-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

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

.visual-data-item {
  min-height: 260px;

  padding: 22px;

  display: flex;
  flex-direction: column;

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

  transition:
    background 0.35s ease,
    padding-top 0.35s var(--ease);
}

.visual-data-item:hover {
  padding-top: 29px;
  background: var(--black-soft);
}

.visual-data-item span {
  color: var(--gray);

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

.visual-data-item strong {
  margin-top: auto;

  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.045em;
}

.visual-data-item small {
  margin-top: 9px;

  color: var(--gray);

  font-size: 10px;
}


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

.responsibility {
  padding: var(--section-space) var(--page-padding);

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

.responsibility > .section-number {
  margin-bottom: 65px;
}

.responsibility-content {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.85fr);

  gap: clamp(50px, 10vw, 150px);
}

.responsibility-content h2 {
  font-size: clamp(56px, 7.3vw, 110px);
  line-height: 0.82;

  font-weight: 400;

  letter-spacing: -0.075em;
}

.responsibility-content > div {
  max-width: 590px;
}

.responsibility-content p {
  margin-bottom: 21px;

  color: var(--gray);

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

.responsibility-content .text-link {
  margin-top: 20px;
}


/* =========================================================
   OTHER TYPES
   ========================================================= */

.other-types {
  padding: var(--section-space) var(--page-padding);

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

.other-types > .section-number {
  margin-bottom: 58px;
}

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

.data-type {
  display: grid;

  grid-template-columns:
    60px
    minmax(130px, 0.65fr)
    minmax(0, 1fr)
    30px;

  gap: 25px;

  align-items: center;

  padding: 27px 0;

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

  transition:
    padding-left 0.35s var(--ease),
    color 0.3s ease;
}

.data-type:hover {
  padding-left: 10px;
}

.data-type > span,
.data-type small {
  color: var(--gray);

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

.data-type strong {
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.05em;
}

.data-type em {
  font-style: normal;
  text-align: right;
}

.data-type.current em {
  color: var(--gray);
}


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

.join {
  min-height: 650px;

  padding: var(--section-space) var(--page-padding);

  display: grid;

  grid-template-columns:
    minmax(150px, 0.25fr)
    minmax(0, 1fr);

  gap: 60px;

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

.join-content {
  max-width: 900px;
}

.join-content .eyebrow {
  margin-bottom: 28px;
}

.join-content h2 {
  margin-bottom: 34px;

  font-size: clamp(62px, 9.5vw, 145px);
  line-height: 0.81;

  font-weight: 400;

  letter-spacing: -0.08em;
}

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

  margin-bottom: 34px;

  color: var(--gray);

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

.join-button {
  display: inline-flex;
  align-items: center;
  gap: 17px;

  padding: 15px 19px;

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

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

  transition:
    background 0.3s ease,
    color 0.3s ease,
    gap 0.3s var(--ease);
}

.join-button:hover {
  gap: 24px;

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


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

.site-footer {
  padding:
    65px
    var(--page-padding)
    25px;
}

.footer-top {
  padding-bottom: 60px;

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

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

.footer-brand {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.9;

  font-weight: 500;

  letter-spacing: -0.07em;
}

.footer-top p {
  color: var(--gray);

  font-size: 12px;
}

.footer-grid {
  padding: 48px 0;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

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

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

  gap: 10px;
}

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

  color: var(--gray);

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

.footer-column a {
  font-size: 11px;

  transition: color 0.25s ease;
}

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

.footer-bottom {
  padding-top: 20px;

  display: grid;

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

  gap: 20px;

  color: var(--gray);

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

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 17px;
}

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


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.8s ease,
    transform 0.8s var(--ease);
}

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


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

@media (max-width: 1100px) {

  :root {
    --page-padding: 30px;
  }

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

  .hero h1 {
    font-size: clamp(62px, 9vw, 105px);
  }

  .text-visual-space {
    min-height: 500px;
  }

  .experience {
    gap: 55px;
  }

  .contributor-grid,
  .responsibility-content {
    gap: 55px;
  }

  .join-content h2 {
    font-size: clamp(58px, 8.5vw, 105px);
  }
}


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

@media (max-width: 850px) {

  :root {
    --page-padding: 26px;
  }

  .header-meta {
    display: none;
  }

  .hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 90px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    max-width: 700px;
    justify-self: start;
  }

  .text-visual-space {
    min-height: 520px;
  }

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

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

  .experience-image {
    min-height: 500px;
    max-width: 700px;
  }

  .contributor-grid,
  .responsibility-content {
    grid-template-columns: 1fr;
    gap: 65px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }

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

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

  .footer-legal {
    justify-content: flex-start;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  :root {
    --page-padding: 17px;
    --section-space: 82px;
  }

  .site-header {
    height: 68px;
  }

  main {
    padding-top: 68px;
  }

  .brand {
    font-size: 15px;
  }

  .menu {
    padding: 23px 17px;
  }

  .menu-links a {
    grid-template-columns: 38px 1fr;
    padding: 13px 0;
  }

  .menu-label {
    font-size: clamp(31px, 10vw, 48px);
  }

  .menu-bottom {
    flex-wrap: wrap;
    line-height: 1.6;
  }

  .hero {
    padding-top: 55px;
    padding-bottom: 72px;

    gap: 72px;
  }

  .hero-copy .section-number {
    margin-bottom: 28px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 19px;
  }

  .hero h1 {
    margin-bottom: 27px;

    font-size: clamp(48px, 14.5vw, 72px);
    line-height: 0.85;
  }

  .hero-description {
    margin-bottom: 27px;

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

  .text-visual-space {
    min-height: 365px;
  }

  .text-visual-space::before {
    inset: 15px;
  }

  .text-visual-space::after {
    top: 17px;
    right: 17px;
  }

  .visual-label.top-left {
    top: -20px;
  }

  .visual-label.bottom-right {
    bottom: -20px;
  }

  .text-fragment {
    font-size: 13px;
  }

  .visual-center span {
    font-size: 6px;
  }

  .visual-center strong {
    font-size: 25px;
  }

  .fragment-one {
    top: 17%;
    left: 8%;
  }

  .fragment-two {
    top: 31%;
    right: 8%;
  }

  .fragment-three {
    top: 48%;
    left: 7%;
  }

  .fragment-four {
    top: 65%;
    right: 8%;
  }

  .fragment-five {
    bottom: 12%;
    left: 13%;
  }

  .intro-lead {
    font-size: clamp(31px, 10vw, 46px);
  }

  .intro-body {
    font-size: 13px;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro h2 {
    font-size: clamp(43px, 13vw, 63px);
  }

  .collection-item {
    grid-template-columns: 32px 1fr;

    gap: 13px;

    padding: 24px 0;
  }

  .item-tag {
    display: none;
  }

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

  .item-content p {
    font-size: 12px;
    line-height: 1.65;
  }

  .experience {
    gap: 55px;
  }

  .experience-image {
    min-height: 345px;
  }

  .experience-label {
    top: 17px;
    left: 17px;
  }

  .language-grid {
    inset: 60px 18px;
    gap: 10px 16px;
  }

  .language-grid span {
    font-size: 20px;
  }

  .experience-copy h2 {
    font-size: clamp(42px, 13vw, 63px);
  }

  .experience-copy p {
    font-size: 13px;
  }

  .contributor > .section-number,
  .responsibility > .section-number {
    margin-bottom: 48px;
  }

  .contributor-heading h2,
  .responsibility-content h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .contributor-copy > p,
  .responsibility-content p {
    font-size: 13px;
  }

  .contributor-points {
    margin-top: 38px;
  }

  .contributor-points > div {
    grid-template-columns: 30px 82px 1fr;
    min-height: 61px;
  }

  .contributor-points strong {
    font-size: 9px;
  }

  .contributor-points small {
    font-size: 7px;
    line-height: 1.35;
  }

  .quality-grid,
  .visual-data-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quality .section-intro {
    margin-bottom: 48px;
  }

  .quality-statement {
    min-height: 145px;
    padding: 15px;
  }

  .quality-statement p {
    font-size: 17px;
  }

  .visual-data-header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 43px;
  }

  .visual-data-header p {
    font-size: 13px;
  }

  .visual-data-item {
    min-height: 175px;
    padding: 15px;
  }

  .visual-data-item strong {
    font-size: 18px;
  }

  .visual-data-item small {
    font-size: 9px;
  }

  .data-type {
    grid-template-columns: 29px 1fr 20px;

    gap: 10px;

    padding: 21px 0;
  }

  .data-type small {
    display: none;
  }

  .data-type strong {
    font-size: 23px;
  }

  .join {
    min-height: auto;

    gap: 43px;
  }

  .join-content h2 {
    font-size: clamp(48px, 14.5vw, 72px);
  }

  .join-content > p:not(.eyebrow) {
    font-size: 13px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-top {
    display: block;
    padding-bottom: 42px;
  }

  .footer-brand {
    margin-bottom: 13px;
    font-size: 40px;
  }

  .footer-top p {
    font-size: 11px;
  }

  .footer-grid {
    gap: 42px 20px;
    padding: 40px 0;
  }

  .footer-column {
    gap: 9px;
  }

  .footer-column a {
    font-size: 10px;
  }

  .footer-bottom {
    font-size: 6.5px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 10px 15px;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  :root {
    --page-padding: 14px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .text-visual-space {
    min-height: 325px;
  }

  .text-fragment {
    font-size: 11px;
  }

  .visual-center strong {
    font-size: 22px;
  }

  .intro-lead {
    font-size: 29px;
  }

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

  .join-content h2 {
    font-size: 44px;
  }

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

  .quality-statement p {
    font-size: 15px;
  }

  .visual-data-item {
    min-height: 155px;
  }

  .visual-data-item strong {
    font-size: 16px;
  }

  .data-type strong {
    font-size: 21px;
  }

  .footer-brand {
    font-size: 36px;
  }
}


/* =========================================================
   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;
  }
}