:root {
  --yellow: #ffd400;
  --yellow-light: #ffe56c;
  --ink: #101010;
  --ink-soft: #272727;
  --paper: #f2efe7;
  --white: #ffffff;
  --grey: #b7b7b7;
  --border: rgba(16, 16, 16, 0.2);

  --display: "Archivo Black", sans-serif;
  --body: "Inter", sans-serif;

  --shell: min(1360px, calc(100% - 64px));
  --radius: 28px;
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  cursor: default;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

::selection {
  color: var(--yellow);
  background: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading--light {
  color: var(--white);
}

/* Reveal animation */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Loader */

.loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.loader.is-done {
  visibility: hidden;
  opacity: 0;
}

.loader__content {
  text-align: center;
}

.loader__content p {
  margin: 25px 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.loader__number {
  font-family: var(--display);
  font-size: 1.5rem;
}

.loader__mark {
  position: relative;
  width: 90px;
  height: 82px;
  margin-inline: auto;
  animation: loader-bob 0.8s ease-in-out infinite alternate;
}

.loader__face {
  position: absolute;
  inset: 15px 7px 0;
  border-radius: 48% 48% 44% 44%;
  background: var(--yellow);
}

.loader__face::before,
.loader__face::after {
  position: absolute;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.loader__face::before {
  left: 23px;
}

.loader__face::after {
  right: 23px;
}

.loader__ear {
  position: absolute;
  top: 0;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--yellow);
}

.loader__ear--left {
  left: 5px;
}

.loader__ear--right {
  right: 5px;
}

@keyframes loader-bob {
  to {
    transform: translateY(-8px) rotate(3deg);
  }
}

/* Cursor */

.cursor {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    background 0.25s ease;
  mix-blend-mode: difference;
}

.cursor span {
  display: none;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cursor.is-large {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  background: var(--white);
  mix-blend-mode: normal;
}

.cursor.is-large span {
  display: block;
}

/* Header */

.header {
  position: fixed;
  z-index: 100;
  top: 22px;
  right: 0;
  left: 0;
  display: flex;
  width: var(--shell);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand,
.menu-toggle {
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 18px 8px 11px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(18px);
}

.brand__mark {
  width: 39px;
  height: 39px;
}

.brand__text {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: -0.04em;
}

.menu-toggle {
  display: flex;
  min-height: 56px;
  padding: 0 20px;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 23px;
  height: 15px;
}

.menu-toggle__icon span {
  position: absolute;
  right: 0;
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-toggle__icon span:first-child {
  top: 3px;
}

.menu-toggle__icon span:last-child {
  bottom: 3px;
}

.menu-open .menu-toggle__icon span:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle__icon span:last-child {
  bottom: 6px;
  transform: rotate(-45deg);
}

/* Navigation */

.menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  visibility: hidden;
  padding: 120px max(32px, calc((100vw - 1360px) / 2));
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--yellow);
  opacity: 0;
  transform: translateY(-100%);
  transition:
    visibility 0.75s,
    opacity 0.45s ease,
    transform 0.75s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu-open .menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    radial-gradient(#000 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}

.menu__navigation {
  position: relative;
  display: flex;
  flex-direction: column;
}

.menu__navigation a {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 1.05;
  text-transform: uppercase;
  transition:
    padding-left 0.3s ease,
    color 0.3s ease;
}

.menu__navigation a:hover {
  padding-left: 25px;
  color: var(--white);
}

.menu__navigation span {
  width: 32px;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu__footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-weight: 700;
}

.menu__footer p {
  margin: 0;
}

.menu__footer a {
  border-bottom: 2px solid currentColor;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--yellow);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  padding: 150px 0 130px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-top: 20px;
}

.hero__copy .eyebrow {
  justify-content: space-between;
  max-width: 425px;
}

.hero__copy h1 {
  max-width: 690px;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(4rem, 8.3vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero__copy h1 span {
  display: block;
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}

.hero__description {
  max-width: 540px;
  margin-bottom: 38px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.round-button {
  display: inline-flex;
  width: 148px;
  height: 148px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.round-button:hover {
  color: var(--ink);
  background: var(--white);
  transform: rotate(-8deg);
}

.round-button svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.round-button--light {
  color: var(--ink);
  background: var(--yellow);
}

.round-button--light:hover {
  background: var(--white);
}

.bear-scene {
  position: relative;
  min-height: 650px;
  transform-origin: center;
  transition: transform 0.15s ease-out;
}

.bear-bike {
  position: absolute;
  right: -7%;
  bottom: -3%;
  width: min(800px, 60vw);
  filter: drop-shadow(25px 35px 25px rgba(0, 0, 0, 0.17));
}

.bear {
  transform-box: fill-box;
  transform-origin: center;
  animation: bear-ride 1.2s ease-in-out infinite alternate;
}

.wheel__spokes {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheel-spin 4s linear infinite;
}

.bear-scene__badge {
  position: absolute;
  z-index: 2;
  top: 17%;
  right: 2%;
  display: grid;
  width: 120px;
  height: 120px;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.bear-scene__badge span {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

@keyframes bear-ride {
  to {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-marquee {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--yellow);
}

.hero-marquee--top {
  top: 100px;
}

.hero-marquee--bottom {
  bottom: 0;
  color: var(--white);
  background: var(--ink);
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  padding: 13px 0;
  align-items: center;
  gap: 28px;
  animation: marquee 24s linear infinite;
}

.hero-marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 20s;
}

.hero-marquee__track span {
  font-family: var(--display);
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-marquee__track i {
  color: inherit;
  font-size: 0.6rem;
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Values */

.values {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  position: relative;
  min-height: 520px;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink-soft);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.value-card:hover {
  z-index: 2;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-15px);
}

.value-card--yellow {
  color: var(--ink);
  background: var(--yellow);
}

.value-card__number {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin: 150px 0 30px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.value-card p {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.value-card__icon {
  position: absolute;
  right: 32px;
  bottom: 28px;
  font-size: 2.2rem;
}

/* About */

.about {
  background: var(--paper);
}

.about__layout {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 80px;
}

.about__label {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.rotating-stamp {
  width: 170px;
}

.rotating-stamp svg {
  overflow: visible;
  animation: stamp-spin 16s linear infinite;
}

.rotating-stamp text {
  fill: var(--ink);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}

.rotating-stamp circle {
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 2;
}

.rotating-stamp path:not(#stampPath) {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

.about__content h2 {
  max-width: 1000px;
  margin-bottom: 75px;
  font-family: var(--display);
  font-size: clamp(3.7rem, 8vw, 8.7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.about__content h2 em {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}

.about__body {
  display: grid;
  max-width: 900px;
  margin-left: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.about__body p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.7;
}

.text-link {
  display: flex;
  width: max-content;
  margin: 70px 0 0 auto;
  padding-bottom: 8px;
  align-items: center;
  gap: 45px;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
}

.text-link span {
  font-size: 1.5rem;
}

/* Services */

.services {
  background: var(--yellow);
}

.services__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-top: 2px solid var(--ink);
}

.service-list {
  border-right: 2px solid var(--ink);
}

.service-item {
  display: grid;
  width: 100%;
  padding: 30px 25px 30px 0;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.25s ease,
    padding 0.25s ease,
    background 0.25s ease;
}

.service-item:hover,
.service-item.is-active {
  padding-left: 25px;
  color: var(--white);
  background: var(--ink);
}

.service-item span {
  font-size: 0.7rem;
  font-weight: 900;
}

.service-item strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.service-item i {
  font-size: 1.7rem;
  font-style: normal;
}

.service-panel {
  position: sticky;
  top: 110px;
  min-height: 640px;
  margin-left: 45px;
  overflow: hidden;
  color: var(--white);
  background: #2c45e8;
}

.service-panel__art {
  position: relative;
  height: 58%;
  overflow: hidden;
  background: currentColor;
}

.service-panel__art span {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform 0.6s ease;
}

.service-panel__art span:nth-child(1) {
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
}

.service-panel__art span:nth-child(2) {
  bottom: -110px;
  left: -60px;
  width: 310px;
  height: 310px;
  background: var(--white);
}

.service-panel__art span:nth-child(3) {
  top: 60px;
  left: 34%;
  width: 150px;
  height: 150px;
  border: 28px solid var(--ink);
  background: transparent;
}

.service-panel:hover .service-panel__art span:nth-child(1) {
  transform: translate(-45px, 20px);
}

.service-panel:hover .service-panel__art span:nth-child(2) {
  transform: translate(40px, -20px);
}

.service-panel:hover .service-panel__art span:nth-child(3) {
  transform: rotate(35deg) scale(1.1);
}

.service-panel__art strong {
  position: absolute;
  right: 25px;
  bottom: 15px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 6rem;
  letter-spacing: -0.08em;
}

.service-panel__content {
  padding: 35px;
  color: var(--white);
  background: var(--ink);
}

.service-panel__content h3 {
  max-width: 600px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-panel__description {
  max-width: 600px;
  color: #d1d1d1;
  line-height: 1.65;
}

.service-panel__tags {
  margin: 25px 0 0;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-panel[data-theme="web"] .service-panel__art {
  color: #3155ff;
}

.service-panel[data-theme="branding"] .service-panel__art {
  color: #ff5a3d;
}

.service-panel[data-theme="social"] .service-panel__art {
  color: #b16cff;
}

.service-panel[data-theme="campaign"] .service-panel__art {
  color: #ff3366;
}

.service-panel[data-theme="search"] .service-panel__art {
  color: #00a978;
}

.service-panel[data-theme="video"] .service-panel__art {
  color: #ff8200;
}

/* Clients */

.clients {
  padding: 120px 0;
  overflow: hidden;
  background: var(--paper);
}

.clients__heading {
  margin-bottom: 75px;
}

.clients__heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.clients__marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
}

.clients__track {
  display: flex;
  width: max-content;
  animation: clients-marquee 25s linear infinite;
}

.clients__track span {
  display: grid;
  min-width: 280px;
  min-height: 145px;
  padding: 20px 45px;
  place-items: center;
  border-right: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

@keyframes clients-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Projects */

.projects {
  color: var(--white);
  background: var(--ink);
}

.projects__heading {
  display: flex;
  margin-bottom: 80px;
  align-items: flex-end;
  justify-content: space-between;
}

.projects__heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-transform: uppercase;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.project-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.project-card--wide {
  grid-column: 1 / -1;
  min-height: 620px;
}

.project-card__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-card__art strong {
  position: absolute;
  z-index: 3;
  font-family: var(--display);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.project-card__info {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  padding: 22px 25px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  transform: translateZ(35px);
}

.project-card__info h3 {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.project-card__info p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card__info > span {
  font-size: 2rem;
}

/* Hyatt art */

.project-card--hyatt .project-card__art {
  background:
    linear-gradient(145deg, #6115ff, #ff367e 65%, #ffb000);
}

.project-letter {
  position: absolute;
  top: 20px;
  left: 6%;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-size: clamp(16rem, 28vw, 31rem);
  letter-spacing: -0.15em;
  line-height: 1;
}

.project-circle {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 310px;
  height: 310px;
  border: 70px solid var(--yellow);
  border-radius: 50%;
}

.project-circle--small {
  top: auto;
  right: auto;
  bottom: 90px;
  left: 45%;
  width: 90px;
  height: 90px;
  border-width: 20px;
}

/* Popo art */

.project-card--popo .project-card__art {
  background: #ff7355;
}

.popo-ball {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff, #ffdb41 18%, #ff4485 60%, #5214d4);
  box-shadow: 0 35px 50px rgba(50, 0, 0, 0.2);
}

.popo-ball--one {
  top: 50px;
  left: 50px;
  width: 280px;
  height: 280px;
}

.popo-ball--two {
  top: 160px;
  right: 30px;
  width: 220px;
  height: 220px;
}

.popo-ball--three {
  right: 35%;
  bottom: -40px;
  width: 150px;
  height: 150px;
}

.project-card--popo strong {
  top: 38%;
  left: 9%;
  color: var(--white);
  font-size: clamp(5rem, 11vw, 11rem);
  text-shadow: 8px 8px 0 #6611cf;
}

/* Coffee art */

.project-card--coffee .project-card__art {
  background: #e8cfaa;
}

.coffee-sun {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #ed5c32;
}

.coffee-cup {
  position: absolute;
  right: 15%;
  bottom: 18%;
  width: 180px;
  height: 220px;
  border-radius: 10px 10px 60px 60px;
  background: #5d321f;
  box-shadow: 25px 30px 0 rgba(0, 0, 0, 0.12);
  transform: rotate(8deg);
}

.coffee-cup::after {
  position: absolute;
  top: 55px;
  right: -70px;
  width: 85px;
  height: 100px;
  border: 25px solid #5d321f;
  border-left: 0;
  border-radius: 0 60px 60px 0;
  content: "";
}

.coffee-cup span {
  position: absolute;
  top: 30px;
  right: 20px;
  left: 20px;
  height: 24px;
  border-radius: 50%;
  background: #20100b;
}

.project-card--coffee strong {
  top: 60px;
  left: 45px;
  width: 45%;
  color: #542818;
  font-size: clamp(4rem, 8vw, 8rem);
}

/* Pasta art */

.project-card--pasta .project-card__art {
  background: var(--yellow);
}

.pasta-line {
  position: absolute;
  width: 420px;
  height: 100px;
  border: 22px solid #f0442d;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.pasta-line--one {
  top: 50px;
  left: -100px;
}

.pasta-line--two {
  top: 210px;
  right: -120px;
  border-color: #1d22af;
  transform: rotate(22deg);
}

.pasta-line--three {
  bottom: 40px;
  left: 80px;
  border-color: #f0442d;
  transform: rotate(5deg);
}

.project-card--pasta strong {
  top: 32%;
  left: 8%;
  color: #f0442d;
  font-size: clamp(4.5rem, 9vw, 9rem);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 8px 8px 0 var(--white);
}

/* Mind art */

.project-card--mind .project-card__art {
  background: #1f68ed;
}

.mind-face {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 350px;
  height: 410px;
  border-radius: 48% 48% 43% 43%;
  background: var(--yellow);
  transform: translateX(-50%);
}

.mind-face span {
  position: absolute;
  top: 150px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--ink);
}

.mind-face span:first-child {
  left: 90px;
}

.mind-face span:nth-child(2) {
  right: 90px;
}

.mind-face i {
  position: absolute;
  bottom: 80px;
  left: 50%;
  width: 110px;
  height: 55px;
  border-bottom: 15px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.project-card--mind strong {
  right: 20px;
  bottom: 130px;
  left: 20px;
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 7rem);
  text-align: center;
}

/* Peach art */

.project-card--peach .project-card__art {
  background: #ffa8ce;
}

.peach {
  position: absolute;
  border-radius: 52% 48% 50% 50%;
  background:
    radial-gradient(circle at 30% 25%, #ffe5e9, #ff7b82 48%, #f13a5c);
  box-shadow: inset -25px -25px 40px rgba(160, 0, 40, 0.22);
}

.peach--one {
  top: 20px;
  left: 55px;
  width: 300px;
  height: 330px;
  transform: rotate(-15deg);
}

.peach--two {
  right: -20px;
  bottom: 60px;
  width: 250px;
  height: 280px;
  transform: rotate(25deg);
}

.peach-leaf {
  position: absolute;
  top: 60px;
  left: 290px;
  width: 150px;
  height: 70px;
  border-radius: 100% 0 100% 0;
  background: #168852;
  transform: rotate(-20deg);
}

.project-card--peach strong {
  right: 30px;
  bottom: 145px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 9rem);
  text-shadow: 6px 6px 0 #ef426a;
}

/* Eco art */

.project-card--eco .project-card__art {
  background:
    linear-gradient(135deg, #00a46c, #67d16c);
}

.eco-building {
  position: absolute;
  bottom: 0;
  border: 5px solid rgba(255, 255, 255, 0.8);
  border-bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 30px,
      rgba(255, 255, 255, 0.5) 31px 34px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 40px,
      rgba(255, 255, 255, 0.45) 41px 44px
    );
}

.eco-building--one {
  left: 8%;
  width: 25%;
  height: 70%;
}

.eco-building--two {
  left: 39%;
  width: 20%;
  height: 50%;
}

.eco-building--three {
  right: 7%;
  width: 27%;
  height: 82%;
}

.project-card--eco strong {
  top: 65px;
  left: 55px;
  color: var(--yellow);
  font-size: clamp(5rem, 12vw, 12rem);
}

/* Locations */

.locations {
  background: var(--paper);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--ink);
}

.location-card {
  position: relative;
  min-height: 490px;
  padding: 45px;
  border-right: 1px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.location-card:last-child {
  border-right: 0;
}

.location-card__number {
  position: absolute;
  top: 30px;
  right: 35px;
  color: rgba(0, 0, 0, 0.1);
  font-family: var(--display);
  font-size: 8rem;
  letter-spacing: -0.1em;
}

.location-card h3 {
  margin: 140px 0 35px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.location-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.location-card a {
  position: absolute;
  right: 45px;
  bottom: 40px;
  left: 45px;
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  font-weight: 800;
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact__marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
}

.contact__marquee > div {
  display: flex;
  width: max-content;
  padding: 18px 0;
  align-items: center;
  gap: 28px;
  animation: marquee 22s linear infinite;
}

.contact__marquee span {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.contact__marquee i {
  font-style: normal;
}

.contact__content {
  display: flex;
  min-height: 680px;
  padding: 130px 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.contact__content h2 {
  margin-bottom: 65px;
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 15rem);
  letter-spacing: -0.09em;
  line-height: 0.75;
  text-transform: uppercase;
}

.contact__content h2 span {
  display: block;
  color: var(--yellow);
}

.contact__button {
  display: flex;
  width: min(100%, 680px);
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.contact__button i {
  color: var(--yellow);
  font-style: normal;
}

.footer {
  display: grid;
  padding: 35px 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 30px;
}

.footer p {
  margin: 0;
  text-align: right;
}

/* Responsive */

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 1000px);
  }

  .hero__content {
    padding-top: 180px;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 420px;
  }

  .bear-scene {
    position: absolute;
    right: -10%;
    bottom: 45px;
    width: 85%;
    min-height: 500px;
  }

  .bear-bike {
    right: 0;
    width: 720px;
    max-width: none;
  }

  .bear-scene__badge {
    top: 10%;
    right: 7%;
  }

  .about__layout {
    grid-template-columns: 1fr;
  }

  .about__label {
    align-items: flex-start;
    flex-direction: row;
  }

  .services__layout {
    grid-template-columns: 1fr;
  }

  .service-list {
    border-right: 0;
  }

  .service-panel {
    position: relative;
    top: auto;
    min-height: 600px;
    margin: 45px 0 0;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100% - 30px);
    --radius: 18px;
  }

  .section {
    padding: 90px 0;
  }

  .header {
    top: 12px;
  }

  .brand {
    min-height: 49px;
    padding-right: 14px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__text {
    display: none;
  }

  .menu-toggle {
    min-height: 49px;
    padding: 0 16px;
  }

  .menu {
    padding: 105px 20px 30px;
  }

  .menu__navigation a {
    padding: 13px 0;
  }

  .menu__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-marquee--top {
    top: 77px;
  }

  .hero__content {
    padding-top: 145px;
  }

  .hero__copy {
    padding-bottom: 330px;
  }

  .hero__copy .eyebrow {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__copy h1 {
    font-size: clamp(3.8rem, 17vw, 7rem);
  }

  .hero__copy h1 span {
    -webkit-text-stroke-width: 1px;
    text-shadow: 3px 3px 0 var(--ink);
  }

  .hero__description {
    max-width: 420px;
    font-size: 0.95rem;
  }

  .round-button {
    width: 120px;
    height: 120px;
  }

  .bear-scene {
    right: -24%;
    bottom: 30px;
    width: 125%;
    min-height: 390px;
  }

  .bear-bike {
    width: 600px;
  }

  .bear-scene__badge {
    display: none;
  }

  .values__grid,
  .locations__grid,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 410px;
    padding: 30px;
  }

  .value-card h3 {
    margin-top: 95px;
  }

  .about__content h2 {
    margin-bottom: 50px;
  }

  .about__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .text-link {
    margin-left: 0;
  }

  .section-heading,
  .projects__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .service-item {
    padding-block: 24px;
  }

  .service-panel {
    min-height: 560px;
  }

  .projects__grid {
    gap: 18px;
  }

  .project-card,
  .project-card--wide {
    min-height: 500px;
    grid-column: auto;
  }

  .location-card {
    min-height: 420px;
    padding: 30px;
    border-right: 0;
  }

  .location-card h3 {
    margin-top: 120px;
  }

  .location-card a {
    right: 30px;
    left: 30px;
  }

  .contact__content {
    min-height: 600px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .cursor {
    display: none;
  }

  .hero__copy {
    padding-bottom: 270px;
  }

  .hero__copy h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .bear-scene {
    right: -43%;
    width: 145%;
  }

  .bear-bike {
    width: 520px;
  }

  .service-item {
    grid-template-columns: 35px 1fr auto;
  }

  .service-item strong {
    font-size: 1.25rem;
  }

  .service-panel__content {
    padding: 25px;
  }

  .project-card,
  .project-card--wide {
    min-height: 440px;
  }

  .project-card__info {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 17px;
  }

  .rotating-stamp {
    width: 110px;
  }

  .contact__content h2 {
    font-size: clamp(4rem, 23vw, 7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}