:root {
  --ink: #111111;
  --cream: #fff7df;
  --lime: #d7ff49;
  --pink: #ff7ab6;
  --blue: #6bc6ff;
  --violet: #7c5cff;
  --line: rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Arial Black", Impact, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
blockquote,
button,
span,
strong {
  font-family: Arial, Helvetica, sans-serif;
}

.cursor-dot {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  mix-blend-mode: difference;
  background: #fff;
  transform: translate(-50%, -50%);
}

.header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: 26px;
  background: rgba(255, 247, 223, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 8px 8px 0 var(--ink);
}

.brand {
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--cream);
  background: var(--ink);
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a,
.nav-button {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.nav a:hover {
  background: var(--lime);
}

.nav-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 24px 70px;
  display: grid;
  align-content: end;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.hero-label {
  width: fit-content;
  margin-bottom: 22px;
  padding: 12px 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-weight: 900;
  transform: rotate(-2deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1180px;
  margin: 0 auto 32px;
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.5rem, 7vw, 6.7rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) 160px;
  gap: 28px;
  align-items: center;
}

.hero-bottom p,
.studio-text p,
.project-card p,
.offer-row strong,
.contact-panel,
.copy-status {
  font-size: 1.08rem;
  line-height: 1.65;
}

.round-link {
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.round-link:hover {
  transform: rotate(8deg) scale(1.04);
}

.shape {
  position: absolute;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  z-index: -1;
}

.shape-one {
  top: 145px;
  right: 8%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue);
}

.shape-two {
  left: 6%;
  bottom: 34%;
  width: 190px;
  height: 105px;
  border-radius: 999px;
  background: var(--pink);
  transform: rotate(-18deg);
}

.shape-three {
  right: 18%;
  bottom: 18%;
  width: 120px;
  height: 120px;
  background: var(--lime);
  transform: rotate(14deg);
}

.marquee {
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.marquee div {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 18px 0;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.studio,
.projects,
.offer,
.quote,
.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px;
}

.studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.studio-card,
.studio-text,
.project-card,
.offer-list,
.contact-panel {
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: 8px 8px 0 var(--ink);
}

.studio-card {
  padding: 30px;
  background: var(--blue);
}

.studio-text {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #fff;
}

.kicker {
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.project-card span {
  margin-bottom: auto;
  font-size: 4rem;
  font-weight: 900;
}

.project-card.lime {
  background: var(--lime);
}

.project-card.pink {
  background: var(--pink);
}

.project-card.blue {
  background: var(--blue);
}

.offer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.offer-list {
  overflow: hidden;
  background: #fff;
}

.offer-row {
  width: 100%;
  display: grid;
  gap: 8px;
  border: 0;
  border-bottom: 3px solid var(--ink);
  padding: 24px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.offer-row:last-child {
  border-bottom: 0;
}

.offer-row span {
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-row strong {
  display: none;
  font-weight: 500;
}

.offer-row.open {
  background: var(--lime);
}

.offer-row.open strong {
  display: block;
}

.quote {
  padding-top: 54px;
  padding-bottom: 54px;
}

blockquote {
  margin: 0;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: var(--violet);
  color: #fff;
  box-shadow: 8px 8px 0 var(--ink);
  font-size: clamp(1.7rem, 4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  background: var(--lime);
  font-weight: 900;
}

.contact-panel a {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.copy-email {
  width: fit-content;
  margin-top: 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.copy-status {
  min-height: 24px;
  margin: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 24px;
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

footer p {
  margin: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(24px) rotate(0.001deg);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0) rotate(0.001deg);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .cursor-dot {
    display: none;
  }

  .nav-button {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 3px solid var(--ink);
    border-radius: 24px;
    background: var(--cream);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .nav.open {
    display: flex;
  }

  .hero-bottom,
  .studio,
  .offer,
  .contact {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .header {
    top: 12px;
    width: calc(100% - 20px);
  }

  .brand {
    padding: 10px 12px;
  }

  .hero {
    padding-top: 132px;
  }

  .round-link {
    width: 132px;
    height: 132px;
  }

  .shape {
    opacity: 0.5;
  }
}
