/* =========================================================
   DABBIES — VOICE 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);
}

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

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

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

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(--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 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;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 10px;
  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: -.03em;

  transition: opacity var(--transition);
}

.brand:hover {
  opacity: .6;
}

.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;
  border-radius: 50%;
  background: var(--white);
  display: inline-block;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: none;
  cursor: pointer;
}

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

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  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 {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

  display: flex;
  flex-direction: column;
}

.main-menu a {
  padding: 17px 0;

  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;

  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: 14px;
}

.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: .95;
  font-weight: 400;
  letter-spacing: -.055em;
}

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

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


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

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

.section-number {
  padding-top: 26px;
  padding-bottom: 26px;

  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;
  letter-spacing: -.075em;
  font-weight: 400;
}

.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: .65;
}


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

.hero-space {
  position: relative;

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

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

  overflow: hidden;

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

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

.hero-space::before,
.hero-space::after {
  content: "";
  position: absolute;

  background: var(--line);
}

.hero-space::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.hero-space::after {
  height: 100%;
  width: 1px;
  left: 50%;
  top: 0;
}

.voice-orbit {
  position: relative;

  width: min(72%, 380px);
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  inset: 0;

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

.ring-one {
  animation: rotateRing 16s linear infinite;
}

.ring-two {
  inset: 12%;
  animation: rotateRingReverse 11s linear infinite;
}

.ring-three {
  inset: 25%;
  border-style: dashed;
  animation: rotateRing 7s linear infinite;
}

.voice-core {
  position: absolute;
  inset: 35%;

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

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

  background: var(--black);

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

.voice-core small {
  margin-top: 5px;
  font-size: 8px;
  color: var(--gray);
}

.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;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRingReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.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;
  letter-spacing: -.07em;
  font-weight: 400;
}

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

.large-copy {
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -.035em;
  color: var(--white);
}

.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;
  align-items: start;

  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;
  letter-spacing: -.07em;
  font-weight: 400;
}

.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);
}


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

.quality {
  padding-bottom: 180px;
}

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

  padding: 80px 0 100px;
}

.quality-heading p {
  align-self: end;

  max-width: 430px;

  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: -.04em;
}

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

  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
}


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

.statement {
  padding-bottom: 180px;
}

.statement-space {
  position: relative;

  height: min(72vw, 850px);

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

  overflow: hidden;

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

.statement-space::before,
.statement-space::after {
  content: "";
  position: absolute;

  background: var(--line);
}

.statement-space::before {
  width: 100%;
  height: 1px;
}

.statement-space::after {
  height: 100%;
  width: 1px;
}

.statement-line {
  position: absolute;

  width: 65%;
  height: 65%;

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

.line-a {
  transform: rotate(20deg) scaleX(.7);
}

.line-b {
  transform: rotate(-20deg) scaleX(.7);
}

.line-c {
  width: 30%;
  height: 30%;
}

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

  width: 130px;
  height: 130px;

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

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

  background: var(--black);

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

.statement-center small {
  margin-top: 7px;

  font-size: 7px;
  color: var(--gray);
}

.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;
  letter-spacing: -.075em;
  font-weight: 400;
}

.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;
  letter-spacing: -.06em;
  font-weight: 400;
}

.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;
  letter-spacing: -.09em;
  font-weight: 400;
}

.join-button {
  margin-top: 60px;

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

  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: -.07em;
}

.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,
  .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);
  }

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

  .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;
  }

  .voice-orbit {
    width: 68%;
  }

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

  /* Sections */

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

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

  .intro-content,
  .collection-heading,
  .experience-grid,
  .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,
  .item-tag {
    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;
  }

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

  .statement-line {
    width: 80%;
    height: 70%;
  }

  .statement-center {
    width: 100px;
    height: 100px;
    font-size: 8px;
  }

  .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 {
    font-size: 43px;
  }

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

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

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

  .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;
  }

}