/* =========================================================
   DABBIES — IMAGE COLLECTION
   Monograph / Editorial System
   ========================================================= */

:root {
  --black: #090909;
  --white: #f3f1eb;
  --gray: #a5a39d;
  --muted: #6f6e69;
  --dark-gray: #242422;
  --line: rgba(243, 241, 235, 0.16);

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

  --page-padding: clamp(20px, 4vw, 64px);
  --header-height: 84px;

  --transition: 500ms cubic-bezier(.2, .65, .2, 1);
}


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

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

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

body {
  min-height: 100vh;

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

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

  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

::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);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

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

.loader-inner {
  width: 100%;

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

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

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


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

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

  z-index: 900;

  width: 100%;
  height: var(--header-height);

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

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

  background: rgba(9, 9, 9, .86);

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

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

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

  transition: opacity var(--transition);
}

.brand:hover {
  opacity: .55;
}

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

  transform: translateX(-50%);

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

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

  color: var(--gray);
}

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

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

  display: block;

  border-radius: 50%;

  background: var(--white);
}

.menu-toggle {
  width: 34px;
  height: 34px;

  border: 0;
  background: transparent;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 1px;

  display: block;

  background: var(--white);

  transition: transform var(--transition);
}

.menu-toggle:hover span:first-child {
  transform: translateX(5px);
}

.menu-toggle:hover span:last-child {
  transform: translateX(-5px);
}


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

.menu-overlay {
  position: fixed;
  inset: 0;

  z-index: 1000;

  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 500ms ease,
    visibility 500ms ease,
    transform 500ms ease;
}

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

  transform: translateY(0);
}

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

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

  color: var(--gray);
}

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

  cursor: pointer;

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

.main-menu {
  margin-top: auto;
  margin-bottom: auto;

  display: flex;
  flex-direction: column;
}

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

  padding: 17px 0;

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

  transition: padding-left var(--transition);
}

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

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

.main-menu a span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}

.main-menu a strong {
  font-size: clamp(32px, 5vw, 72px);
  line-height: .9;

  font-weight: 400;
  letter-spacing: -.06em;
}

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

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

  color: var(--gray);
}


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

.section {
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.section-number {
  padding: 26px 0;

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

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

  color: var(--gray);
}


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

.hero {
  min-height: 100vh;

  padding:
    calc(var(--header-height) + 30px)
    var(--page-padding)
    26px;

  display: flex;
  flex-direction: column;
}

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

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

  color: var(--gray);
}

.hero-content {
  flex: 1;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);

  gap: clamp(40px, 8vw, 150px);

  align-items: center;

  padding: 70px 0;
}

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

.eyebrow {
  margin-bottom: 30px;

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

  color: var(--gray);
}

.hero h1 {
  font-size: clamp(68px, 10vw, 170px);
  line-height: .82;

  font-weight: 400;
  letter-spacing: -.08em;
}

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

  margin-top: 48px;

  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.45;

  color: var(--gray);
}

.text-link {
  margin-top: 38px;

  display: inline-flex;
  align-items: center;
  gap: 22px;

  padding-bottom: 9px;

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

  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;

  transition:
    gap var(--transition),
    opacity var(--transition);
}

.text-link:hover {
  gap: 32px;
  opacity: .6;
}


/* =========================================================
   HERO IMAGE SPACE
   ========================================================= */

.hero-space {
  position: relative;

  width: 100%;
  min-height: min(620px, 60vw);

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

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

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(243, 241, 235, .05),
      transparent 48%
    );
}

.hero-space::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 49.95%,
      var(--line) 50%,
      transparent 50.05%
    ),
    linear-gradient(
      0deg,
      transparent 49.95%,
      var(--line) 50%,
      transparent 50.05%
    );

  pointer-events: none;
}

.image-frame {
  position: relative;

  width: 66%;
  aspect-ratio: 4 / 5;

  border: 1px solid rgba(243, 241, 235, .25);

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

  background:
    linear-gradient(
      135deg,
      rgba(243, 241, 235, .035),
      transparent 50%
    );
}

.image-frame::before {
  content: "";

  position: absolute;
  inset: 9%;

  border: 1px solid rgba(243, 241, 235, .12);
}

.frame-corner {
  position: absolute;

  width: 16px;
  height: 16px;

  z-index: 3;
}

.corner-tl {
  top: -1px;
  left: -1px;

  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.corner-tr {
  top: -1px;
  right: -1px;

  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.corner-bl {
  bottom: -1px;
  left: -1px;

  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.corner-br {
  right: -1px;
  bottom: -1px;

  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.frame-cross {
  position: absolute;

  background: rgba(243, 241, 235, .18);
}

.frame-cross.horizontal {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
}

.frame-cross.vertical {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.image-core {
  position: relative;
  z-index: 2;

  width: 68%;
  aspect-ratio: 1;

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

  border: 1px solid rgba(243, 241, 235, .3);
  border-radius: 50%;

  background: var(--black);

  text-align: center;
}

.image-number,
.image-subtitle {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;

  color: var(--gray);
}

.image-title {
  margin: 13px 0;

  font-size: clamp(22px, 3vw, 42px);
  line-height: .9;

  font-weight: 400;
  letter-spacing: -.06em;
}

.space-label {
  position: absolute;

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

  color: var(--gray);
}

.label-one {
  top: 18px;
  left: 18px;
}

.label-two {
  top: 18px;
  right: 18px;
}

.label-three {
  bottom: 18px;
  left: 18px;
}

.hero-bottom {
  padding-top: 20px;
}


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

.intro {
  padding-top: 150px;
  padding-bottom: 180px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;

  gap: 10vw;
}

.intro h2,
.collection-heading h2,
.quality-heading h2 {
  font-size: clamp(64px, 9vw, 150px);
  line-height: .83;

  font-weight: 400;
  letter-spacing: -.075em;
}

.intro-copy {
  max-width: 570px;
  padding-top: 15px;
}

.large-copy {
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.18;

  letter-spacing: -.035em;
}

.intro-copy p:not(.large-copy) {
  margin-top: 30px;

  font-size: 16px;
  line-height: 1.65;

  color: var(--gray);
}


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

.collection {
  padding-bottom: 180px;
}

.collection-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;

  gap: 10vw;

  padding: 80px 0 100px;
}

.collection-heading p {
  max-width: 450px;

  align-self: end;

  font-size: 17px;
  line-height: 1.55;

  color: var(--gray);
}

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

.collection-item {
  display: grid;
  grid-template-columns: 70px 1fr 150px;

  gap: 30px;

  padding: 32px 0;

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

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

.collection-item:hover {
  padding-left: 18px;

  background: rgba(243, 241, 235, .025);
}

.item-number,
.item-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;

  color: var(--gray);
}

.item-main h3 {
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1;

  font-weight: 400;
  letter-spacing: -.045em;
}

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

  margin-top: 12px;

  font-size: 14px;
  line-height: 1.55;

  color: var(--gray);
}

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


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

.experience {
  padding-top: 80px;
  padding-bottom: 180px;
}

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

  gap: 10vw;

  padding-top: 80px;
}

.experience-title span {
  display: block;

  margin-bottom: 25px;

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

  color: var(--gray);
}

.experience-title h2 {
  font-size: clamp(56px, 7vw, 120px);
  line-height: .84;

  font-weight: 400;
  letter-spacing: -.075em;
}

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

.experience-copy p {
  margin-top: 28px;

  font-size: 16px;
  line-height: 1.65;

  color: var(--gray);
}

.experience-copy .large-copy {
  margin-top: 0;

  color: var(--white);
}


/* =========================================================
   PROCESS
   ========================================================= */

.process {
  padding-bottom: 180px;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr .9fr;

  gap: 10vw;

  padding: 80px 0 100px;
}

.process-heading h2 {
  font-size: clamp(64px, 9vw, 145px);
  line-height: .8;

  font-weight: 400;
  letter-spacing: -.075em;
}

.process-heading p {
  max-width: 450px;

  align-self: end;

  font-size: 17px;
  line-height: 1.55;

  color: var(--gray);
}

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

.process-item {
  display: grid;
  grid-template-columns: 70px 1fr;

  gap: 30px;

  padding: 30px 0;

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

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

.process-item:hover {
  padding-left: 18px;
  background: rgba(243, 241, 235, .025);
}

.process-item > span {
  font-family: var(--mono);
  font-size: 9px;

  color: var(--gray);
}

.process-item h3 {
  font-size: clamp(22px, 2.4vw, 35px);
  line-height: 1;

  font-weight: 400;
  letter-spacing: -.045em;
}

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

  margin-top: 12px;

  font-size: 14px;
  line-height: 1.55;

  color: var(--gray);
}


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

.quality {
  padding-bottom: 180px;
}

.quality-heading {
  display: grid;
  grid-template-columns: 1fr .9fr;

  gap: 10vw;

  padding: 80px 0 100px;
}

.quality-heading p {
  max-width: 430px;

  align-self: end;

  font-size: 20px;

  color: var(--gray);
}

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

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

.quality-item {
  min-height: 280px;

  padding: 30px;

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

  transition: background var(--transition);
}

.quality-item:hover {
  background: rgba(243, 241, 235, .025);
}

.quality-item span {
  font-family: var(--mono);
  font-size: 9px;

  color: var(--gray);
}

.quality-item h3 {
  margin-top: 80px;

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

  font-weight: 400;
  letter-spacing: -.045em;
}

.quality-item p {
  max-width: 440px;

  margin-top: 15px;

  font-size: 14px;
  line-height: 1.55;

  color: var(--gray);
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement {
  padding-bottom: 180px;
}

.statement-space {
  position: relative;

  height: min(72vw, 850px);

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

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

  overflow: hidden;
}

.statement-space::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 49.95%,
      var(--line) 50%,
      transparent 50.05%
    ),
    linear-gradient(
      0deg,
      transparent 49.95%,
      var(--line) 50%,
      transparent 50.05%
    );
}

.scan-line {
  position: absolute;

  width: 70%;
  height: 70%;

  border: 1px solid rgba(243, 241, 235, .15);

  border-radius: 50%;
}

.scan-one {
  transform: rotate(24deg) scaleX(.68);
}

.scan-two {
  transform: rotate(-24deg) scaleX(.68);
}

.scan-three {
  width: 35%;
  height: 35%;
}

.statement-frame {
  position: relative;
  z-index: 2;

  width: 30%;
  aspect-ratio: 4 / 5;

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

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

  background: var(--black);
}

.frame-inner {
  width: 72%;
  height: 78%;

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

  border: 1px solid rgba(243, 241, 235, .2);

  text-align: center;
}

.frame-inner span,
.frame-inner small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;

  color: var(--gray);
}

.frame-inner strong {
  margin: 18px 0;

  font-size: clamp(30px, 4vw, 60px);
  line-height: .85;

  font-weight: 400;
  letter-spacing: -.07em;
}

.statement-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10vw;

  padding-top: 25px;
}

.statement-caption span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;

  color: var(--gray);
}

.statement-caption p {
  max-width: 520px;

  font-size: 16px;
  line-height: 1.55;

  color: var(--gray);
}


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

.responsibility {
  padding-bottom: 180px;
}

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

  gap: 10vw;

  padding-top: 80px;
}

.responsibility h2 {
  font-size: clamp(65px, 9vw, 145px);
  line-height: .82;

  font-weight: 400;
  letter-spacing: -.075em;
}

.responsibility-copy {
  max-width: 550px;
}

.responsibility-copy p {
  margin-top: 28px;

  font-size: 16px;
  line-height: 1.65;

  color: var(--gray);
}

.responsibility-copy p:first-child {
  margin-top: 0;

  color: var(--white);

  font-size: 24px;
  line-height: 1.3;
}


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

.other-types {
  padding-bottom: 180px;
}

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

.other-type {
  display: grid;
  grid-template-columns: 70px 1fr 40px;

  align-items: center;

  padding: 25px 0;

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

  transition:
    padding-left var(--transition),
    opacity var(--transition);
}

.other-type:hover {
  padding-left: 16px;
}

.other-type span,
.other-type small {
  font-family: var(--mono);
  font-size: 9px;

  color: var(--gray);
}

.other-type strong {
  font-size: clamp(32px, 5vw, 75px);
  line-height: .9;

  font-weight: 400;
  letter-spacing: -.06em;
}

.other-type small {
  text-align: right;
}

.other-type.back {
  color: var(--gray);
}


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

.join {
  min-height: 90vh;

  padding-top: 30px;
  padding-bottom: 70px;

  display: flex;
  flex-direction: column;
}

.join-top {
  display: flex;
  justify-content: space-between;

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

  color: var(--gray);
}

.join-content {
  margin-top: auto;
}

.join-content p {
  margin-bottom: 25px;

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

  color: var(--gray);
}

.join-content h2 {
  font-size: clamp(80px, 14vw, 230px);
  line-height: .76;

  font-weight: 400;
  letter-spacing: -.09em;
}

.join-button {
  width: 100%;
  min-height: 70px;

  margin-top: 60px;
  padding: 0 22px;

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

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

  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;

  transition:
    background var(--transition),
    color var(--transition);
}

.join-button:hover {
  background: var(--white);
  color: var(--black);
}


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

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

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

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

  gap: 10vw;

  padding-bottom: 90px;
}

.footer-brand {
  font-size: clamp(55px, 8vw, 120px);
  line-height: .8;

  letter-spacing: -.075em;
}

.footer-description {
  max-width: 400px;

  font-size: 16px;
  line-height: 1.5;

  color: var(--gray);
}

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

  gap: 50px;

  padding: 35px 0 70px;

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

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

  color: var(--gray);
}

.footer-grid a {
  margin: 5px 0;

  font-size: 14px;

  transition: opacity var(--transition);
}

.footer-grid a:hover {
  opacity: .5;
}

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

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

  gap: 20px;

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

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

  color: var(--gray);
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

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


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

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(.2, .65, .2, 1);
}

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


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

@media (max-width: 1024px) {

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

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(60px, 10vw, 110px);
  }

  .hero-space {
    min-height: 500px;
  }

  .intro-content,
  .collection-heading,
  .experience-grid,
  .process-heading,
  .quality-heading,
  .responsibility-content {
    gap: 50px;
  }

  .intro h2,
  .collection-heading h2,
  .quality-heading h2 {
    font-size: clamp(55px, 8vw, 100px);
  }

  .experience-title h2 {
    font-size: clamp(50px, 7vw, 85px);
  }

  .process-heading h2 {
    font-size: clamp(55px, 8vw, 100px);
  }

  .responsibility h2 {
    font-size: clamp(55px, 8vw, 100px);
  }

  .statement-frame {
    width: 35%;
  }

  .join-content h2 {
    font-size: clamp(75px, 13vw, 140px);
  }
}


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

@media (max-width: 767px) {

  :root {
    --page-padding: 16px;
    --header-height: 70px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-meta {
    display: none;
  }

  .brand {
    font-size: 15px;
  }

  .menu-overlay {
    padding: 22px var(--page-padding);
  }

  .main-menu a {
    grid-template-columns: 42px 1fr;
    padding: 14px 0;
  }

  .main-menu a strong {
    font-size: clamp(29px, 9vw, 55px);
  }

  .menu-bottom {
    font-size: 7px;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding-top:
      calc(var(--header-height) + 25px);
  }

  .hero-top,
  .hero-bottom {
    font-size: 7px;
  }

  .hero-top span:last-child,
  .hero-bottom span:last-child {
    text-align: right;
  }

  .hero-content {
    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 50px;

    padding: 65px 0 55px;
  }

  .eyebrow {
    margin-bottom: 23px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 78px);
    line-height: .84;
  }

  .hero-description {
    margin-top: 28px;

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

  .text-link {
    margin-top: 27px;
    font-size: 8px;
  }

  .hero-space {
    min-height: 390px;
  }

  .image-frame {
    width: 67%;
  }

  .image-core {
    width: 64%;
  }

  .image-title {
    font-size: 26px;
  }

  .space-label {
    font-size: 6px;
  }


  /* GLOBAL */

  .section-number {
    padding: 20px 0;
    font-size: 7px;
  }


  /* INTRO */

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

  .intro-content,
  .collection-heading,
  .experience-grid,
  .process-heading,
  .quality-heading,
  .responsibility-content,
  .statement-caption,
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .intro h2,
  .collection-heading h2,
  .quality-heading h2 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .intro-copy {
    padding-top: 0;
  }

  .large-copy {
    font-size: 22px;
  }

  .intro-copy p:not(.large-copy) {
    margin-top: 22px;
    font-size: 14px;
  }


  /* COLLECTION */

  .collection {
    padding-bottom: 110px;
  }

  .collection-heading {
    padding: 55px 0 60px;
  }

  .collection-heading p {
    font-size: 14px;
  }

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

    gap: 12px;

    padding: 24px 0;
  }

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

  .item-tag {
    display: none;
  }

  .item-main h3 {
    font-size: 23px;
  }

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

  .item-number {
    font-size: 7px;
  }


  /* EXPERIENCE */

  .experience {
    padding-top: 45px;
    padding-bottom: 110px;
  }

  .experience-grid {
    padding-top: 55px;
  }

  .experience-title h2 {
    font-size: clamp(45px, 13vw, 70px);
  }

  .experience-title span {
    font-size: 7px;
  }

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


  /* PROCESS */

  .process {
    padding-bottom: 110px;
  }

  .process-heading {
    padding: 55px 0 60px;
  }

  .process-heading h2 {
    font-size: clamp(45px, 14vw, 75px);
  }

  .process-heading p {
    font-size: 14px;
  }

  .process-item {
    grid-template-columns: 35px 1fr;

    gap: 12px;

    padding: 24px 0;
  }

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

  .process-item h3 {
    font-size: 22px;
  }

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


  /* QUALITY */

  .quality {
    padding-bottom: 110px;
  }

  .quality-heading {
    padding: 55px 0 60px;
  }

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

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

  .quality-item {
    min-height: 235px;
    padding: 23px;
  }

  .quality-item h3 {
    margin-top: 55px;
    font-size: 22px;
  }

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


  /* STATEMENT */

  .statement {
    padding-bottom: 110px;
  }

  .statement-space {
    height: 105vw;

    min-height: 330px;
    max-height: 500px;
  }

  .scan-line {
    width: 82%;
    height: 70%;
  }

  .statement-frame {
    width: 34%;
    min-width: 105px;
  }

  .frame-inner {
    width: 72%;
  }

  .frame-inner strong {
    font-size: 29px;
  }

  .statement-caption {
    gap: 22px;
  }

  .statement-caption p {
    font-size: 14px;
  }


  /* RESPONSIBILITY */

  .responsibility {
    padding-bottom: 110px;
  }

  .responsibility-content {
    padding-top: 55px;
  }

  .responsibility h2 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .responsibility-copy p {
    font-size: 14px;
  }

  .responsibility-copy p:first-child {
    font-size: 20px;
  }


  /* OTHER TYPES */

  .other-types {
    padding-bottom: 110px;
  }

  .other-type {
    grid-template-columns: 35px 1fr 25px;

    padding: 21px 0;
  }

  .other-type:hover {
    padding-left: 0;
  }

  .other-type strong {
    font-size: clamp(29px, 9vw, 48px);
  }


  /* JOIN */

  .join {
    min-height: 75vh;

    padding-top: 25px;
    padding-bottom: 45px;
  }

  .join-top {
    font-size: 7px;
  }

  .join-content p {
    font-size: 7px;
  }

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

  .join-button {
    min-height: 58px;

    margin-top: 38px;

    padding: 0 15px;

    font-size: 8px;
  }


  /* FOOTER */

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

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

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

  .footer-description {
    font-size: 14px;
  }

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

    gap: 45px 25px;

    padding-bottom: 55px;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid a {
    font-size: 13px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;

    gap: 14px;

    font-size: 7px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px;
  }

}


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

@media (max-width: 380px) {

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

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

  .intro h2,
  .collection-heading h2,
  .quality-heading h2 {
    font-size: 41px;
  }

  .experience-title h2,
  .process-heading h2 {
    font-size: 43px;
  }

  .responsibility h2 {
    font-size: 45px;
  }

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

  .hero-space {
    min-height: 340px;
  }

  .image-frame {
    width: 70%;
  }

  .statement-frame {
    width: 40%;
  }

  .quality-item {
    min-height: 220px;
  }

}


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

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

  html {
    scroll-behavior: auto;
  }

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

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

}