@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("assets/fonts/AlteHaasGroteskRegular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("assets/fonts/AlteHaasGroteskBold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #010101;
  --fg: #f3eadb;
  --accent: #d77f22;
  --muted: rgba(243, 234, 219, 0.62);
  --line: rgba(243, 234, 219, 0.22);
  --dark-line: rgba(1, 1, 1, 0.22);
  --paper: #efe7d8;
  --title-font: "Alte Haas Grotesk", Arial, sans-serif;
  --subtitle-font: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --body-font: "Alte Haas Grotesk", Arial, sans-serif;
}

[data-scheme="1"] {
  --bg: #efe7d8;
  --fg: #050505;
  --accent: #d77f22;
  --muted: rgba(5, 5, 5, 0.58);
  --line: rgba(5, 5, 5, 0.22);
}

[data-scheme="2"] {
  --bg: #d77f22;
  --fg: #050505;
  --accent: #efe7d8;
  --muted: rgba(5, 5, 5, 0.6);
  --line: rgba(5, 5, 5, 0.22);
}

[data-scheme="3"] {
  --bg: #111923;
  --fg: #efe7d8;
  --accent: #f6c044;
  --muted: rgba(239, 231, 216, 0.62);
  --line: rgba(239, 231, 216, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  overflow-x: hidden;
  cursor: none;
  transition: background 500ms ease, color 500ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, currentColor 0 1px, transparent 1px),
    radial-gradient(circle at 82% 70%, currentColor 0 1px, transparent 1px);
  background-size: 27px 27px, 41px 41px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.block-title {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: clamp(4.1rem, 13vw, 18rem);
  line-height: 0.76;
}

.cursor {
  position: fixed;
  z-index: 120;
  left: 0;
  top: 0;
  width: 54px;
  height: 60px;
  display: grid;
  place-items: center;
  pointer-events: none;
  translate: -50% -50%;
  mix-blend-mode: difference;
}

.cursor span {
  width: 22px;
  height: 24px;
  background: url("assets/img/unboring-symbol-white.svg") center / contain no-repeat;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cursor.is-active span {
  transform: scale(1.9);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #010002;
  transition: opacity 520ms ease, visibility 520ms ease;
}

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

body.is-loading {
  overflow: hidden;
}

body.is-loading .header,
body.is-loading .page-details,
body.is-loading main {
  opacity: 0;
  visibility: hidden;
}

.loader__video {
  display: block;
  width: clamp(176px, 24.2vw, 352px);
  max-width: calc(100vw - 48px);
  height: auto;
  background: #010002;
  object-fit: contain;
}

.header {
  position: fixed;
  inset: 22px 28px auto;
  z-index: 110;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  pointer-events: none;
}

.header > * {
  pointer-events: auto;
}

.header__menu {
  position: relative;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg), transparent 20%);
  color: var(--fg);
  padding: 0;
}

.header__menu span {
  position: absolute;
  left: 17px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: top 220ms ease, rotate 220ms ease;
}

.header__menu span:first-child { top: 22px; }
.header__menu span:last-child { top: 32px; }
.header__menu.is-open span:first-child { top: 27px; rotate: 45deg; }
.header__menu.is-open span:last-child { top: 27px; rotate: -45deg; }

.header__brand {
  justify-self: center;
  width: clamp(118px, 12vw, 168px);
  height: 58px;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}

.header__brand img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.btn-chubby {
  position: relative;
  min-height: 56px;
  min-width: 166px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg), transparent 18%);
  color: var(--fg);
  font-family: var(--subtitle-font);
  text-transform: uppercase;
  font-size: 13px;
}

.btn-chubby span {
  position: relative;
  z-index: 2;
}

.btn-chubby i {
  position: absolute;
  width: 170px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(95%);
  transition: transform 300ms ease;
}

.btn-chubby i:nth-child(2) { left: -34px; transition-delay: 20ms; }
.btn-chubby i:nth-child(3) { left: 28px; transition-delay: 60ms; }
.btn-chubby i:nth-child(4) { right: -34px; transition-delay: 100ms; }
.btn-chubby:hover { color: #050505; }
.btn-chubby:hover i { transform: translateY(8%); }

.header__panel {
  position: absolute;
  top: 72px;
  left: 0;
  width: min(640px, calc(100vw - 56px));
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 4px;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid currentColor;
  transform: translate3d(0, -12px, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.header__panel.is-open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.header__panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 12px;
  font-family: var(--subtitle-font);
  text-transform: uppercase;
}

.header__panel-top span:last-child {
  text-align: right;
  white-space: nowrap;
}

.header__panel a {
  padding: 12px 8px 12px 0;
  border-top: 1px solid currentColor;
  font-family: var(--title-font);
  font-size: clamp(2.6rem, 6.8vw, 5.8rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.header__panel p {
  margin: 16px 0 0;
  max-width: 390px;
  font-family: var(--subtitle-font);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-details {
  position: fixed;
  right: 30px;
  top: 50%;
  z-index: 105;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--fg);
  mix-blend-mode: difference;
  transform: translateY(-50%);
}

.page-details__picker {
  width: 35px;
  height: 142px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  box-shadow: 0 0 0 1px color-mix(in srgb, currentColor 70%, transparent);
}

.page-details__swatch {
  display: block;
  width: 100%;
  height: 100%;
}

.swatch-1 { background: #f09216; }
.swatch-2 { background: #b86d18; }
.swatch-3 { background: #050505; }
.swatch-4 { background: #efe7d8; }

.page-details p {
  margin: 0;
  font-size: 11px;
  font-family: var(--subtitle-font);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 10px #000;
}

.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  transition: background 500ms ease, color 500ms ease;
}

.banner-hero {
  display: grid;
  align-items: center;
  padding: 124px clamp(20px, 5vw, 86px) 40px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.banner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg), transparent 16%), transparent 46%),
    linear-gradient(0deg, color-mix(in srgb, var(--bg), transparent 10%), transparent 36%);
  pointer-events: none;
}

.banner-hero__desc {
  position: absolute;
  top: 24vh;
  left: clamp(20px, 5vw, 86px);
  z-index: 3;
  display: grid;
  gap: 14px;
  width: min(330px, 40vw);
  color: var(--muted);
}

.banner-hero__desc svg {
  width: 82px;
  color: var(--accent);
}

.banner-hero__desc p {
  margin: 0;
  font-family: var(--subtitle-font);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.banner-hero__links {
  position: relative;
  z-index: 3;
  display: grid;
  margin-left: clamp(0px, 22vw, 420px);
  transform: translateY(3vh);
}

.banner-hero__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.08em;
  width: max-content;
  color: var(--fg);
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(5rem, 15vw, 20rem);
  line-height: 0.74;
}

.hero-link-arrow {
  flex: 0 0 auto;
  width: 0.17em;
  height: 0.17em;
  margin-top: 0.1em;
  color: var(--fg);
  overflow: visible;
}

.hero-link-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.banner-hero__item::after {
  content: attr(href);
  display: none;
}

.banner-hero__item span {
  display: inline-block;
  transition: transform 350ms cubic-bezier(.22, 1, .36, 1), color 250ms ease;
}

.banner-hero__item span::before,
.banner-hero__item span::after {
  content: attr(data-repeat);
  position: absolute;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.banner-hero__item span::before { top: -0.74em; }
.banner-hero__item span::after { top: 0.74em; }
.banner-hero__item:hover span {
  color: var(--accent);
  transform: translateY(-0.12em);
}

.banner-hero__form {
  position: absolute;
  right: clamp(20px, 5vw, 86px);
  bottom: 46px;
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 40px));
}

.banner-hero__form label {
  color: var(--muted);
  font-family: var(--subtitle-font);
  font-size: 12px;
  text-transform: uppercase;
}

.banner-hero__form div {
  display: grid;
  grid-template-columns: 1fr 48px;
  border-bottom: 1px solid var(--line);
}

.banner-hero__form input {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--subtitle-font);
  text-transform: uppercase;
  outline: 0;
}

.banner-hero__form button {
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 28px;
}

.hero-hand {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 4;
  width: 74px;
  height: 112px;
  display: grid;
  place-items: center;
  translate: -50% 0;
  color: var(--accent);
  font-size: 54px;
  animation: hand-bob 1.8s ease-in-out infinite;
}

.ribbon-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.block-works,
.block-sun,
.block-offer,
.block-clients,
.block-vibes,
.block-contact {
  padding: clamp(92px, 11vw, 154px) clamp(20px, 5vw, 86px);
}

.block-works {
  background: var(--paper);
  color: #050505;
}

.block-works__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 46px;
}

.block-works__top h2 span {
  display: block;
}

.block-counter,
.client-counter {
  display: flex;
  align-items: start;
  gap: 8px;
  color: var(--accent);
  font-family: var(--title-font);
}

.block-counter strong,
.client-counter strong {
  font: inherit;
}

.block-counter small,
.client-counter small {
  margin-top: 0.2em;
  font-size: clamp(2rem, 5vw, 5rem);
}

.work-list {
  display: grid;
  gap: clamp(48px, 8vw, 120px);
}

.work-card {
  display: grid;
  grid-template-columns: minmax(280px, 40vw) minmax(360px, 46vw);
  gap: clamp(34px, 5.6vw, 86px);
  align-items: end;
}

.work-card--right {
  justify-content: end;
  grid-template-columns: minmax(360px, 46vw) minmax(280px, 40vw);
}

.work-card--right .work-card__media {
  order: 2;
}

.work-card__media {
  position: relative;
  min-height: clamp(360px, 54vw, 760px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 100px;
  overflow: hidden;
  background: #050505;
  color: var(--paper);
}

.work-card__media--image {
  padding: 0;
  background: #050505;
}

.work-card__media--video {
  padding: 0;
  background: #050505;
}

.work-card__media--image img,
.work-card__media--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__media--video video {
  display: block;
}

.work-card__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(239, 231, 216, 0.28);
}

.work-card__media--image::before,
.work-card__media--video::before {
  inset: 0;
  border: 0;
}

.work-card__media span,
.work-card__media strong {
  position: relative;
  z-index: 2;
}

.work-card__media span {
  font-family: var(--subtitle-font);
  font-size: 12px;
  text-transform: uppercase;
}

.work-card__media strong {
  max-width: 80%;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(3.4rem, 8vw, 9rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.media-a {
  background:
    radial-gradient(circle at 72% 26%, rgba(215, 127, 34, 0.92), transparent 24%),
    repeating-linear-gradient(135deg, #050505 0 24px, #191919 24px 26px);
}

.media-b {
  background:
    linear-gradient(90deg, rgba(239, 231, 216, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(239, 231, 216, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 62%, #d77f22 0 18%, transparent 19%),
    #050505;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.media-c {
  background:
    conic-gradient(from 90deg at 68% 42%, #d77f22, #050505, #efe7d8, #050505, #d77f22);
}

.work-card__content {
  min-width: 0;
  padding-bottom: clamp(10px, 3vw, 40px);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tags span {
  padding: 8px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--subtitle-font);
  font-size: 11px;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.25vw, 5.45rem);
  line-height: 0.88;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.work-card p {
  margin: 0;
  max-width: 420px;
  color: rgba(5, 5, 5, 0.68);
  font-family: var(--subtitle-font);
  font-size: 17px;
  line-height: 1.35;
  text-transform: uppercase;
}

.watcher {
  position: sticky;
  left: calc(100% - 188px);
  bottom: 38px;
  width: 170px;
  height: 170px;
  margin-top: 44px;
  display: grid;
  place-items: center;
  color: #050505;
  text-align: center;
}

.watcher__eyes {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 3px;
}

.watcher__eyes::before,
.watcher__eyes::after {
  content: "";
  flex: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.watcher__eyes i {
  position: absolute;
  top: 67px;
  width: 18px;
  height: 30px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(var(--eye-x, 0), var(--eye-y, 0));
}

.watcher__eyes i:first-child { left: 48px; }
.watcher__eyes i:last-child { right: 48px; }
.watcher strong {
  position: relative;
  z-index: 2;
  width: 92px;
  font-family: var(--subtitle-font);
  font-size: 13px;
  line-height: 1.05;
  text-transform: uppercase;
}

.block-sun {
  display: grid;
  place-items: center;
  text-align: center;
}

.sun-mark {
  position: absolute;
  width: min(72vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, transparent 0 8deg, color-mix(in srgb, var(--accent), transparent 44%) 8deg 10deg),
    radial-gradient(circle, transparent 0 42%, var(--accent) 43% 44%, transparent 45%);
  opacity: 0.42;
  animation: spin 28s linear infinite;
}

.block-sun h2 {
  position: relative;
  z-index: 2;
}

.block-sun h2 span {
  display: block;
}

.block-sun__features {
  position: absolute;
  left: clamp(20px, 5vw, 86px);
  right: clamp(20px, 5vw, 86px);
  bottom: 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: var(--subtitle-font);
  text-transform: uppercase;
}

.block-sun__features p {
  margin: 0;
}

.block-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  background: #050505;
  color: var(--paper);
  --muted: rgba(239, 231, 216, 0.62);
  --line: rgba(239, 231, 216, 0.22);
}

.offer-head {
  position: sticky;
  top: 130px;
}

.offer-head p {
  margin: 0 0 24px;
  color: var(--accent);
  font-family: var(--subtitle-font);
  text-transform: uppercase;
}

.offer-head h2 span {
  display: block;
}

.block-offer .block-title {
  font-size: clamp(4.4rem, 9vw, 12.8rem);
}

.offer-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.offer-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.offer-item span {
  color: var(--accent);
  font-family: var(--subtitle-font);
  font-size: 13px;
}

.offer-item h3 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 4.4vw, 5.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.offer-item p {
  grid-column: 2;
  margin: 10px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-family: var(--subtitle-font);
  font-size: 15px;
  line-height: 1.42;
  text-transform: uppercase;
}

.block-clients {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  gap: 28px;
  background: var(--paper);
  color: #050505;
}

.block-clients h2 span {
  display: block;
}

.block-clients__desc {
  max-width: 520px;
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-family: var(--subtitle-font);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.22;
  text-transform: uppercase;
}

.client-cloud {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10vh;
}

.client-cloud span {
  padding: 14px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.block-vibes {
  min-height: 120svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.vibes-collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.photo {
  position: absolute;
  display: block;
  border-radius: 100px;
  overflow: hidden;
  background: #d77f22;
}

.photo::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.22) 35% 40%, transparent 40%),
    radial-gradient(circle at 30% 34%, var(--accent), transparent 26%),
    linear-gradient(135deg, #161616, #efe7d8);
  filter: saturate(1.1);
}

.p1::before {
  inset: 0;
  background: url("assets/img/guarderaju-identidade.jpg") center / cover no-repeat;
  filter: contrast(0.96) saturate(0.92);
}

.p2::before {
  inset: 0;
  background: url("assets/img/metodo-unb-terceira-lhf.jpg") center / cover no-repeat;
  filter: contrast(0.98) saturate(0.96);
}

.p3::before {
  inset: 0;
  background: url("assets/img/metodo-unb-inferior-esquerdo.jpg") center / cover no-repeat;
  filter: contrast(0.98) saturate(0.96);
}

.p4::before {
  inset: 0;
  background: url("assets/img/metodo-unb-inferior-direito.jpg") center / cover no-repeat;
  filter: contrast(0.98) saturate(0.96);
}

.p5::before {
  inset: 0;
  background: url("assets/img/metodo-unb-circulo.jpg") center / cover no-repeat;
  filter: contrast(0.96) saturate(0.96);
}

.p1 { width: 28vw; height: 18vw; left: 4vw; top: 14vh; }
.p2 { width: 24vw; height: 17vw; right: 7vw; top: 22vh; }
.p3 { width: 18vw; height: 13vw; left: 14vw; bottom: 22vh; }
.p4 { width: 28vw; height: 20vw; right: 17vw; bottom: 12vh; }
.p5 { width: 13vw; height: 13vw; left: 45vw; top: 8vh; border-radius: 50%; }

.block-vibes h2 {
  position: relative;
  z-index: 2;
  color: var(--accent);
}

.block-vibes__desc {
  position: absolute;
  z-index: 3;
  width: min(560px, calc(100vw - 40px));
  margin: 0;
  color: var(--fg);
  font-family: var(--subtitle-font);
  font-size: clamp(1.2rem, 2vw, 2.4rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.vibes-list {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 86px);
  bottom: 48px;
  width: min(360px, calc(100vw - 40px));
  display: grid;
  gap: 18px;
  text-align: left;
}

.vibes-list svg {
  width: 78px;
  color: var(--accent);
}

.vibes-list p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--subtitle-font);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

.block-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  background: var(--paper);
  color: #050505;
}

.block-contact h2 span {
  display: block;
  border-top: 1px solid currentColor;
  padding-top: 0.02em;
}

.block-contact .block-title {
  font-size: clamp(4.2rem, 9.2vw, 12.6rem);
}

.contact-heading {
  display: grid;
  align-content: end;
  gap: clamp(28px, 4vw, 54px);
}

.contact-seal {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: clamp(82px, 8vw, 132px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  padding: clamp(14px, 1.6vw, 22px) 0;
  color: #050505;
}

.contact-seal img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}

.contact-seal__copy {
  display: grid;
  gap: 7px;
  font-family: var(--subtitle-font);
  text-transform: uppercase;
  line-height: 1.08;
}

.contact-seal__copy strong,
.contact-seal__copy span,
.contact-seal__copy small,
.contact-seal__copy p {
  margin: 0;
}

.contact-seal__copy strong {
  font-size: clamp(1.05rem, 2vw, 1.65rem);
  letter-spacing: 0;
}

.contact-seal__copy span {
  max-width: 34ch;
  font-size: clamp(0.72rem, 1.05vw, 0.95rem);
}

.contact-seal__copy small {
  font-size: clamp(0.7rem, 1vw, 0.9rem);
}

.contact-seal__copy p {
  font-size: clamp(0.58rem, 0.76vw, 0.72rem);
}

.contact-seal__copy p:first-of-type {
  padding-bottom: 6px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 20px;
}

.contact-form label,
.contact-form__group {
  display: grid;
  gap: 8px;
}

.contact-form__wide,
.contact-form__group {
  grid-column: 1 / -1;
}

.contact-form span,
.contact-form legend {
  font-family: var(--subtitle-font);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.34);
  background: transparent;
  color: #050505;
  outline: 0;
  padding: 0 0 14px;
}

.contact-form__group {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form__group label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form__group input {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid rgba(5, 5, 5, 0.52);
  accent-color: #050505;
  flex: 0 0 auto;
}

.contact-form__group span {
  line-height: 1.35;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border-color: rgba(5, 5, 5, 0.34);
  background: transparent;
  color: #050505;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-form__status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: -10px 0 0;
  font-family: var(--subtitle-font);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form__status[data-state="success"] {
  color: #165b35;
}

.contact-form__status[data-state="error"] {
  color: #8f1d1d;
}

.footer {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: 56px clamp(20px, 5vw, 86px) 72px;
  background: #050505;
  color: #efe7d8;
}

.footer div,
.footer form {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer p {
  margin: 0 0 10px;
  color: rgba(239, 231, 216, 0.62);
  font-family: var(--subtitle-font);
  text-transform: uppercase;
}

.footer-social {
  display: flex !important;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}

.footer-social__icon {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(239, 231, 216, 0.78);
}

.footer-social__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.footer-social__icon--linkedin {
  width: 24px;
  height: 27px;
}

.footer-social__icon--behance {
  width: 28px;
  height: 28px;
}

.footer-signup {
  justify-self: end;
  width: min(100%, 390px);
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-signup__copy {
  position: relative;
  gap: 10px;
  padding-bottom: 0;
}

.footer-signup__copy p {
  margin-bottom: 0;
}

.footer-signup__copy strong {
  max-width: 18ch;
  font-family: var(--subtitle-font);
  font-size: clamp(1.28rem, 1.7vw, 1.82rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-signup__copy > span {
  color: rgba(239, 231, 216, 0.62);
  font-family: var(--subtitle-font);
  font-size: clamp(0.72rem, 0.85vw, 0.88rem);
  line-height: 1.55;
  text-transform: uppercase;
}

.footer-signup__field {
  display: grid;
  gap: 8px;
}

.footer-signup__field span {
  color: rgba(239, 231, 216, 0.62);
  font-family: var(--subtitle-font);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-signup__control {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(239, 231, 216, 0.52);
  border-radius: 0;
  background: #efe7d8;
}

.footer-signup__field input {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #050505;
  font-family: var(--subtitle-font);
  font-size: 13px;
  outline: 0;
  padding: 0 14px;
  text-transform: none;
}

.footer-signup__field input::placeholder {
  color: rgba(5, 5, 5, 0.52);
}

.footer-signup__button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-left: 1px solid rgba(5, 5, 5, 0.2);
  background: var(--accent);
  color: #050505 !important;
  font-family: var(--subtitle-font);
  font-size: 11px;
  text-transform: uppercase;
  padding: 0 13px;
  text-shadow: none;
}

.footer-signup__button span,
.footer-signup__button b {
  color: #050505 !important;
}

.footer-signup__button b {
  font-family: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.22, 1, .36, 1);
}

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

@keyframes spin {
  to { rotate: 360deg; }
}

@keyframes hand-bob {
  50% { transform: translateY(18px); }
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .header {
    inset: 14px 14px auto;
    grid-template-columns: 48px 1fr;
  }

  .header__menu {
    width: 48px;
    height: 48px;
  }

  .header__menu span {
    left: 14px;
  }

  .header__brand {
    width: 112px;
    height: 50px;
    padding-top: 0;
  }

  .header__project {
    display: none;
  }

  .header__panel {
    width: calc(100vw - 28px);
  }

  .page-details {
    right: 14px;
    top: 84px;
    bottom: auto;
    transform: none;
  }

  .page-details__picker {
    width: 25px;
    height: 98px;
  }

  .page-details p {
    font-size: 9px;
  }

  .banner-hero {
    padding: 96px 18px 150px;
    align-items: end;
  }

  .banner-hero__desc {
    position: relative;
    top: auto;
    left: auto;
    width: min(360px, 76vw);
    margin-bottom: 38px;
  }

  .banner-hero__links {
    margin-left: 24px;
  }

  .banner-hero__item {
    font-size: clamp(4.4rem, 21vw, 8rem);
  }

  .hero-link-arrow {
    width: 0.15em;
    height: 0.15em;
    margin-top: 0.1em;
  }

  .banner-hero__form {
    left: 18px;
    right: 18px;
    bottom: 12px;
    width: auto;
  }

  .hero-hand {
    display: none;
  }

  .block-works__top,
  .work-card,
  .work-card--right,
  .block-offer,
  .block-clients,
  .block-contact,
  .footer,
  .footer-signup {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 34px;
    padding-bottom: 54px;
  }

  .footer-signup {
    margin-top: 18px;
    justify-self: stretch;
    width: 100%;
    gap: 18px;
    padding: 0;
  }

  .footer-signup__copy {
    padding-bottom: 0;
  }

  .footer-signup__copy strong {
    max-width: 17ch;
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .footer-signup__control {
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .footer-signup__field input {
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
    padding: 0 14px;
  }

  .footer-signup__button {
    min-height: 52px;
    padding: 0;
  }

  .footer-signup__button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .footer-signup__button b {
    font-size: 28px;
  }

  .offer-head {
    position: relative;
    top: auto;
  }

  .offer-item {
    grid-template-columns: 1fr;
  }

  .offer-item p {
    grid-column: auto;
  }

  .work-card--right .work-card__media {
    order: 0;
  }

  .work-card__media {
    min-height: 430px;
  }

  .watcher {
    position: relative;
    left: auto;
    bottom: auto;
  }

  .block-sun__features {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 34px;
    justify-content: center;
  }

  .block-vibes {
    min-height: 100svh;
    align-content: start;
    padding-top: 280px;
    padding-bottom: 80px;
  }

  .block-vibes h2 {
    margin-top: 0;
  }

  .block-vibes__desc {
    position: relative;
    margin-top: 34px;
  }

  .vibes-list {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    margin: 104px auto 0;
    padding: 14px 0 0;
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.56);
  }

  .p1 { width: 44vw; height: 30vw; left: -8vw; top: 15vh; }
  .p2 { width: 42vw; height: 31vw; right: -7vw; top: 17vh; }
  .p3 { display: none; }
  .p4 { width: 54vw; height: 38vw; right: 14vw; top: 68vh; bottom: auto; }
  .p5 { width: 24vw; height: 24vw; left: 38vw; top: 18vh; }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    gap: 28px;
  }

  .contact-seal {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .block-vibes {
    min-height: 112svh;
    padding-top: 332px;
    padding-bottom: 82px;
  }

  .block-vibes h2 {
    margin-top: 0;
  }

  .block-vibes__desc {
    margin-top: 28px;
    width: min(430px, calc(100vw - 56px));
  }

  .vibes-list {
    width: calc(100% - 36px);
    margin-top: 246px;
  }

  .p1 { width: 48vw; height: 34vw; left: -11vw; top: 20vh; }
  .p2 { width: 47vw; height: 35vw; right: -13vw; top: 21vh; }
  .p4 { width: 62vw; height: 42vw; right: 9vw; top: 68vh; bottom: auto; }
  .p5 { width: 25vw; height: 25vw; left: 37.5vw; top: 24vh; }

  .contact-seal {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-seal img {
    width: 96px;
  }
}
