@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("assets/fonts/libre-caslon-condensed.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f4f0e6;
  --paper-bright: #fffaf0;
  --ink: #191a17;
  --ink-soft: #48483f;
  --lime: #eeff55;
  --tomato: #ff5b4d;
  --blue: #2b54db;
  --sky: #68d8ff;
  --pink: #ff6daf;
  --yellow: #ffd54a;
  --line: color-mix(in srgb, var(--ink) 24%, transparent);
  --page-pad: clamp(1.2rem, 4vw, 5rem);
  --radius: clamp(1.4rem, 2.5vw, 2.8rem);
  --serif: "Instrument Serif", Georgia, serif;
  --display: "Libre Caslon Condensed", "Arial Narrow", sans-serif;
  --sans: "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

img {
  height: auto;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  height: 5.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, height .35s var(--ease);
}

.site-header.is-scrolled {
  height: 4.5rem;
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  border-color: var(--line);
  backdrop-filter: blur(15px);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: fit-content;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.wordmark__mark {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.2rem);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer__links a {
  position: relative;
}

.desktop-nav a::after,
.site-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}

.desktop-nav a:hover::after,
.site-footer__links a:hover::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.language-toggle {
  min-width: 3.9rem;
  padding: .58rem .85rem;
  border: 1px solid var(--line);
  border-radius: 100vmax;
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background-color .2s ease, color .2s ease;
}

.language-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: .73rem;
  right: .73rem;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle span:first-child { top: 1.06rem; }
.menu-toggle span:last-child { top: 1.5rem; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 1.29rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 1.29rem; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
}

.hero {
  min-height: 100svh;
  padding-top: 5.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 100%, color-mix(in srgb, var(--lime) 42%, transparent) 0 15%, transparent 42%),
    var(--paper);
}

.hero-ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: .7rem 0;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .14em;
}

.hero-ticker i {
  color: var(--tomato);
  font-style: normal;
}

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

.hero__grid {
  min-height: calc(100svh - 11.5rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(32rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(3rem, 8vh, 7rem) var(--page-pad) clamp(2.5rem, 6vh, 5rem);
}

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

.kicker {
  margin: 0 0 1.3rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  margin: 0 .7rem .25rem 0;
  background: currentColor;
}

.kicker--light {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

.hero h1,
.section-intro h2,
.principles h2,
.company h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 8.1vw, 9.7rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .77;
}

.hero h1 em,
.belief h2 em,
.product h3 em,
.company h2 em,
.contact h2 em {
  font-weight: 400;
  color: var(--tomato);
}

.hero h1 em {
  display: inline-block;
  margin-left: clamp(1.8rem, 6vw, 6rem);
  color: var(--blue);
  transform: rotate(-3deg);
}

.hero__lede {
  max-width: 36rem;
  margin: clamp(2.2rem, 5vh, 4.5rem) 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -.02em;
}

.hero__actions,
.product__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.25rem;
  padding: .85rem 1.1rem .85rem 1.3rem;
  border: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease;
}

.button i {
  font-style: normal;
  transition: transform .25s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover i {
  transform: translate(3px, -3px);
}

.button--ink {
  background: var(--ink);
  color: var(--paper-bright);
}

.button--ink:hover {
  background: var(--blue);
}

.button--paper {
  background: var(--paper);
  color: var(--ink);
}

.button--paper:hover {
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid currentColor;
  font-size: .86rem;
  font-weight: 800;
}

.text-link i {
  font-style: normal;
  transition: transform .25s var(--ease);
}

.text-link:hover i {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--paper);
}

.hero-world {
  --mx: 0px;
  --my: 0px;
  position: relative;
  min-height: clamp(32rem, 65vw, 47rem);
  isolation: isolate;
}

.hero-world__sun {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(14rem, 29vw, 27rem);
  aspect-ratio: 1;
  transform: translate(calc(-50% + var(--mx)), calc(-50% + var(--my)));
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease);
}

.hero-world__sun span {
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 17rem);
  line-height: 1;
  transform: translateY(-2%);
}

.hero-world__sun i {
  position: absolute;
  width: 7.5%;
  aspect-ratio: 1;
  top: 20%;
  right: 24%;
  border-radius: 50%;
  background: var(--tomato);
}

.hero-tile {
  position: absolute;
  z-index: 4;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .8rem;
  will-change: transform;
  transition: transform .25s var(--ease);
}

.hero-tile img {
  width: clamp(6.5rem, 11vw, 10rem);
  aspect-ratio: 1;
  border-radius: 22%;
  box-shadow: 0 1.25rem 2rem color-mix(in srgb, var(--ink) 18%, transparent);
}

.hero-tile figcaption {
  font-family: var(--display);
  font-size: clamp(.65rem, 1vw, .9rem);
  line-height: 1.08;
  letter-spacing: .14em;
}

.hero-tile--words {
  top: 8%;
  left: 7%;
  transform: rotate(-7deg);
}

.hero-tile--music {
  right: 1%;
  bottom: 7%;
  flex-direction: row-reverse;
  text-align: right;
  transform: rotate(8deg);
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit::after {
  content: "";
  position: absolute;
  width: .7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  top: 25%;
  left: -4px;
}

.orbit--one {
  width: 88%;
  height: 52%;
}

.orbit--two {
  width: 61%;
  height: 90%;
  transform: translate(-50%, -50%) rotate(27deg);
}

.orbit--two::after {
  background: var(--pink);
  top: auto;
  left: auto;
  bottom: 14%;
  right: 4%;
}

.hero-world__note {
  position: absolute;
  z-index: 4;
  margin: 0;
  padding: .45rem .7rem;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  transform: rotate(-4deg);
}

.hero-world__note--one {
  right: 9%;
  top: 16%;
}

.hero-world__note--two {
  left: 12%;
  bottom: 10%;
  transform: rotate(3deg);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
  font-size: .8rem;
  font-weight: 700;
}

.hero-proof p {
  margin: 0;
}

.hero-proof__awards {
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: .03em;
}

.hero-proof__awards i {
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  background: var(--tomato);
}

.belief {
  min-height: 85svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  align-content: center;
  gap: 2rem 6vw;
  padding: clamp(7rem, 13vw, 13rem) var(--page-pad);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.belief__number {
  position: absolute;
  top: -4vw;
  right: 1vw;
  color: color-mix(in srgb, var(--paper) 5%, transparent);
  font-family: var(--serif);
  font-size: 32vw;
  line-height: .7;
}

.belief__copy,
.belief__body {
  position: relative;
  z-index: 2;
}

.belief h2 {
  max-width: 70rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.belief h2 em {
  color: var(--lime);
}

.belief__body {
  align-self: end;
  padding-bottom: .6rem;
}

.belief__body p {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--paper) 76%, transparent);
}

.belief__scribble {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 7%;
  width: min(25rem, 33vw);
  color: var(--tomato);
  transform: rotate(-10deg);
}

.belief__scribble path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products {
  padding-top: clamp(6rem, 10vw, 10rem);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .42fr);
  align-items: end;
  gap: 3rem;
  padding: 0 var(--page-pad) clamp(5rem, 9vw, 9rem);
}

.section-intro .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-intro h2,
.principles h2,
.company h2,
.contact h2 {
  font-size: clamp(3.8rem, 7.2vw, 8.4rem);
  line-height: .85;
}

.section-intro > p:last-child {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}

.product {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.product__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 9rem) var(--page-pad);
}

.product__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.product__identity img {
  width: 4.2rem;
  aspect-ratio: 1;
  border-radius: 22%;
  box-shadow: 0 .65rem 1.2rem color-mix(in srgb, var(--ink) 15%, transparent);
}

.product__identity p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.product__identity strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -.03em;
}

.product__identity span {
  margin-top: .35rem;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product__eyebrow {
  margin: 0 0 1rem;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.7vw, 7.6rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
}

.product__description {
  max-width: 35rem;
  margin: clamp(2.2rem, 4vw, 4rem) 0 0;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.58;
}

.product-art {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.product--words {
  background: var(--yellow);
}

.product--words .product__copy {
  background: color-mix(in srgb, var(--yellow) 78%, var(--paper));
}

.product--words h3 em {
  color: var(--blue);
}

.product-art--words {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 7%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--ink) 7%, transparent) 1px, transparent 1px),
    var(--yellow);
  background-size: 3.5rem 3.5rem;
}

.photo-sample {
  position: absolute;
  width: clamp(12rem, 22vw, 21rem);
  top: 8%;
  left: 8%;
  transform: rotate(-7deg);
}

.photo-sample img {
  width: 100%;
  border: .65rem solid var(--paper-bright);
  border-bottom-width: 3.2rem;
  box-shadow: .8rem 1rem 0 color-mix(in srgb, var(--ink) 16%, transparent);
}

.photo-sample span {
  position: absolute;
  bottom: .95rem;
  left: 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.word-card {
  position: absolute;
  z-index: 3;
  width: clamp(15rem, 29vw, 28rem);
  right: 5%;
  bottom: 3%;
  transform: rotate(7deg);
  filter: drop-shadow(1rem 1.2rem 0 color-mix(in srgb, var(--ink) 18%, transparent));
}

.word-card img {
  width: 100%;
}

.word-bubble {
  position: absolute;
  z-index: 4;
  padding: .8rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 100vmax;
  background: var(--paper-bright);
  font-size: clamp(.72rem, 1vw, .92rem);
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: .35rem .4rem 0 var(--ink);
}

.word-bubble small {
  margin-left: .55rem;
  font-weight: 500;
}

.word-bubble--one {
  left: 10%;
  bottom: 19%;
  transform: rotate(4deg);
}

.word-bubble--two {
  right: 8%;
  top: 14%;
  transform: rotate(-5deg);
}

.capture-line {
  position: absolute;
  left: 14%;
  right: 17%;
  top: 49%;
  height: 2px;
  border-top: 2px dashed color-mix(in srgb, var(--ink) 50%, transparent);
  transform: rotate(15deg);
}

.capture-line::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: -1.25rem;
  font-size: 2rem;
}

.product--music {
  background: #20212a;
  color: var(--paper);
}

.product--music .product__copy {
  background: #20212a;
}

.product--music h3 em {
  color: #ff8090;
}

.product--music .product__description {
  color: color-mix(in srgb, var(--paper) 74%, transparent);
}

.product-art--music {
  background: #274f67;
}

.music-scene,
.music-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.music-scene {
  object-fit: cover;
}

.music-wash {
  background:
    linear-gradient(180deg, color-mix(in srgb, #16314d 8%, transparent), color-mix(in srgb, #182b44 60%, transparent)),
    linear-gradient(90deg, color-mix(in srgb, var(--pink) 20%, transparent), transparent 45%);
}

.music-phone {
  position: absolute;
  z-index: 3;
  width: clamp(15rem, 28vw, 27rem);
  height: 81%;
  bottom: -5%;
  right: 8%;
  padding: .5rem;
  border: 1px solid color-mix(in srgb, var(--paper) 46%, transparent);
  border-radius: 3.4rem 3.4rem 0 0;
  background: #151619;
  box-shadow: 0 2rem 4rem color-mix(in srgb, #000 42%, transparent);
  overflow: hidden;
  transform: rotate(3deg);
}

.music-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 50%;
  width: 32%;
  height: 1.35rem;
  transform: translateX(-50%);
  border-radius: 100vmax;
  background: #151619;
}

.music-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 2.9rem 2.9rem 0 0;
}

.sound-rings {
  position: absolute;
  z-index: 2;
  top: 12%;
  left: -8%;
  width: 52%;
  aspect-ratio: 1;
}

.sound-rings i {
  position: absolute;
  inset: calc(var(--i, 0) * 13%);
  border: 1px solid color-mix(in srgb, var(--paper) 55%, transparent);
  border-radius: 50%;
}

.sound-rings i:nth-child(2) { --i: 1; }
.sound-rings i:nth-child(3) { --i: 2; }

.music-caption {
  position: absolute;
  z-index: 4;
  left: 8%;
  bottom: 10%;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .84;
  letter-spacing: -.05em;
  transform: rotate(-4deg);
}

.principles {
  display: grid;
  grid-template-columns: minmax(20rem, .75fr) minmax(0, 1.25fr);
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(8rem, 13vw, 14rem) var(--page-pad);
  background: var(--paper);
}

.principles h2 {
  position: sticky;
  top: 8rem;
}

.principle-list article {
  display: grid;
  grid-template-columns: 3rem minmax(10rem, .65fr) minmax(12rem, 1fr);
  gap: 1rem 2rem;
  padding: 2.3rem 0 3rem;
  border-top: 1px solid var(--ink);
}

.principle-list article:last-child {
  border-bottom: 1px solid var(--ink);
}

.principle-list span {
  font-family: var(--serif);
  font-size: 1.4rem;
}

.principle-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.035em;
}

.principle-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  background: var(--paper-bright);
}

.company__image {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.company__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.03);
}

.company__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--ink) 38%, transparent));
}

.company__stamp {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 6%;
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--paper);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  transform: rotate(-9deg);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.company__stamp strong {
  color: var(--lime);
  font-size: 1.65rem;
}

.company__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 9vw, 10rem) var(--page-pad);
}

.company h2 {
  font-size: clamp(3.7rem, 6vw, 6.8rem);
}

.company h2 em {
  color: var(--blue);
}

.company__copy > p:not(.kicker) {
  max-width: 38rem;
  margin: 2.2rem 0 0;
  font-size: clamp(1rem, 1.25vw, 1.24rem);
  line-height: 1.6;
}

.company__copy > p + p {
  margin-top: 1rem;
}

.recognition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 6vw, 6rem);
  border-top: 1px solid var(--ink);
}

.recognition > div {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.recognition > div + div {
  padding-left: 1.5rem;
  border-left: 1px solid var(--ink);
}

.recognition img {
  max-height: 4.6rem;
  width: auto;
  justify-self: center;
}

.recognition p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: .72rem;
  line-height: 1.25;
}

.recognition small {
  font-weight: 800;
}

.recognition strong {
  margin: .2rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.contact {
  position: relative;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(7rem, 12vw, 13rem) var(--page-pad);
  overflow: hidden;
  background: var(--blue);
  color: var(--paper);
}

.contact::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: 64vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
}

.contact__spark {
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 12%;
  color: var(--tomato);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 1;
  transform: rotate(13deg);
}

.contact > * {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 76rem;
}

.contact h2 em {
  color: var(--lime);
}

.contact > p:not(.kicker) {
  max-width: 32rem;
  margin: 2.5rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  letter-spacing: -.03em;
}

.contact__link i {
  font-style: normal;
  transition: transform .25s var(--ease);
}

.contact__link:hover i {
  transform: translate(5px, -5px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  padding: 4rem var(--page-pad) 2rem;
  background: var(--ink);
  color: var(--paper);
}

.wordmark--footer {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.wordmark--footer .wordmark__mark {
  width: 3rem;
  height: 3rem;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  color: color-mix(in srgb, var(--paper) 55%, transparent);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

@media (max-width: 1050px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero__copy {
    max-width: 52rem;
  }

  .hero-world {
    width: min(100%, 45rem);
    justify-self: center;
  }

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

  .belief__body {
    max-width: 35rem;
  }

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

  .product-art {
    min-height: 75svh;
  }

  .product--music .product-art {
    order: 2;
  }

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

  .principles h2 {
    position: static;
  }

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

  .company__image {
    min-height: 72svh;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 1.25rem;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  .site-header {
    height: 4.5rem;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .language-toggle {
    min-width: 3.6rem;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    padding: 7rem var(--page-pad) 3rem;
    background: var(--lime);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity .35s ease, transform .45s var(--ease), visibility .35s;
  }

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

  .mobile-nav a {
    font-family: var(--serif);
    font-size: clamp(3.4rem, 16vw, 5.5rem);
    line-height: .9;
    letter-spacing: -.05em;
  }

  .mobile-nav p {
    margin: auto 0 0;
    max-width: 20rem;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero__grid {
    min-height: auto;
    gap: 1rem;
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(4.45rem, 23vw, 7rem);
    line-height: .79;
  }

  .hero h1 em {
    margin-left: 1.2rem;
  }

  .hero__lede {
    max-width: 29rem;
    margin-top: 2.4rem;
  }

  .hero__actions,
  .product__links {
    align-items: flex-start;
    flex-direction: column;
    gap: .9rem;
  }

  .hero-world {
    min-height: 27rem;
  }

  .hero-world__sun {
    width: 15.5rem;
  }

  .hero-tile img {
    width: 6.1rem;
  }

  .hero-tile--words {
    top: 3%;
    left: 0;
  }

  .hero-tile--music {
    right: 0;
    bottom: 2%;
  }

  .hero-world__note--one {
    right: 0;
    top: 23%;
  }

  .hero-world__note--two {
    left: 0;
    bottom: 19%;
  }

  .orbit--one {
    width: 105%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof__awards {
    flex-wrap: wrap;
    gap: .65rem;
  }

  .belief {
    min-height: 90svh;
    padding-block: 7rem;
  }

  .belief h2 {
    font-size: clamp(3.6rem, 15.8vw, 5.6rem);
  }

  .belief__scribble {
    width: 55vw;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 5rem;
  }

  .section-intro .kicker {
    margin-bottom: 1rem;
  }

  .section-intro h2,
  .principles h2,
  .contact h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .product__copy {
    min-height: 88svh;
    padding-block: 5rem;
  }

  .product__identity {
    margin-bottom: 4.5rem;
  }

  .product h3 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .product-art {
    min-height: 70svh;
  }

  .photo-sample {
    width: 12rem;
    left: 5%;
  }

  .word-card {
    width: 15.5rem;
    right: -1%;
  }

  .word-bubble--one {
    left: 4%;
    bottom: 12%;
  }

  .word-bubble--two {
    right: 4%;
    top: 9%;
  }

  .music-phone {
    width: 15.5rem;
    height: 80%;
    right: 2%;
  }

  .music-caption {
    left: 5%;
    bottom: 8%;
    font-size: 3.2rem;
  }

  .principles {
    padding-block: 7rem;
  }

  .principle-list article {
    grid-template-columns: 2.2rem 1fr;
  }

  .principle-list p {
    grid-column: 2;
  }

  .company__image {
    min-height: 58svh;
  }

  .company h2 {
    font-size: clamp(3.6rem, 16.5vw, 5.5rem);
  }

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

  .recognition > div + div {
    padding-left: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .contact {
    min-height: 88svh;
  }

  .contact::after {
    right: -24vw;
    bottom: -14vw;
    width: 75vw;
  }

  .contact__spark {
    top: 9%;
    right: 5%;
  }

  .contact__link {
    font-size: clamp(1.25rem, 5.4vw, 1.8rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
