:root {
  --black: #111111;
  --cream: #fff4d6;
  --yellow: #ffd84d;
  --blue: #49b8ff;
  --pink: #ff6aa2;
  --green: #63d681;
  --line: #1d1d1d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: "Arial Black", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  font-family: Arial, sans-serif;
  font-weight: 500;
  line-height: 1.65;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 4px solid var(--black);
  background: var(--cream);
  padding: 14px 28px;
}

.mark {
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-size: 1.5rem;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

button,
.actions a {
  border: 4px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  padding: 12px 18px;
  cursor: pointer;
  font: inherit;
  box-shadow: 6px 6px 0 var(--black);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 4px solid var(--black);
}

.poster {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  background: var(--pink);
  border-right: 4px solid var(--black);
  overflow: hidden;
}

.poster span {
  display: block;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.8;
  letter-spacing: -0.1em;
  transform: rotate(-6deg);
  text-shadow: 8px 8px 0 var(--yellow);
}

.hero-copy {
  padding: 70px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  margin: 0 0 18px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.1em;
}

.hero-copy p:last-of-type {
  max-width: 780px;
  font-size: 1.1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.actions a:last-child {
  background: var(--blue);
}

.studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 4px solid var(--black);
}

.studio-intro,
.studio-copy {
  padding: 56px 34px;
}

.studio-intro {
  background: var(--yellow);
  border-right: 4px solid var(--black);
}

.studio h2,
.cases h2,
.process h2,
footer h2 {
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
}

.studio-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  background: white;
}

.directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 4px solid var(--black);
}

.tile {
  min-height: 320px;
  padding: 30px;
  border-right: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}

.tile:nth-child(3n) {
  border-right: 0;
}

.tile h3 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.yellow {
  background: var(--yellow);
}

.blue {
  background: var(--blue);
}

.pink {
  background: var(--pink);
}

.green {
  background: var(--green);
}

.dark {
  background: var(--black);
  color: white;
}

.white {
  background: white;
}

.cases {
  padding: 70px 34px;
  border-bottom: 4px solid var(--black);
  background: #ffffff;
}

.case-heading {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  margin-bottom: 36px;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 4px solid var(--black);
}

.case-list article {
  min-height: 330px;
  padding: 24px;
  border-right: 4px solid var(--black);
  background: var(--cream);
}

.case-list article:last-child {
  border-right: 0;
}

.case-list span {
  display: inline-block;
  margin-bottom: 34px;
  background: var(--black);
  color: white;
  padding: 8px 10px;
}

.case-list h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.process {
  padding: 70px 34px;
  background: var(--green);
  border-bottom: 4px solid var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.process-grid p {
  margin: 0;
  padding: 24px;
  background: white;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 54px 34px;
  background: var(--black);
  color: white;
}

address {
  display: grid;
  align-content: center;
  gap: 12px;
  font-style: normal;
  font-size: 1.4rem;
}

@media (max-width: 980px) {
  .header,
  .hero,
  .studio,
  .directions,
  .case-heading,
  .case-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .poster,
  .studio-intro,
  .tile,
  .case-list article {
    border-right: 0;
  }

  footer {
    display: grid;
  }
}
