:root {
  --cream: #fff7dd;
  --ink: #191919;
  --orange: #ff7a1a;
  --pink: #ff4fa3;
  --blue: #2f7cff;
  --green: #0bbf72;
  --yellow: #ffd84d;
  --line: #191919;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 3px solid var(--line);
  background: var(--cream);
}

.logo {
  font-weight: 950;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: -0.06em;
}

nav {
  display: flex;
  gap: 10px;
}

nav a,
.cta,
button {
  border: 3px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  color: var(--ink);
  background: #fff;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

nav a:hover,
.cta:hover,
button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--line);
}

.hamburger {
  display: none;
  background: var(--yellow);
}

.hero {
  min-height: 760px;
  position: relative;
  padding: 74px 6vw 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
}

.corner-mark {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 12px solid var(--line);
  pointer-events: none;
}

.corner-mark.one {
  top: 56px;
  left: 28px;
  border-right: 0;
  border-bottom: 0;
}

.corner-mark.two {
  right: 28px;
  bottom: 36px;
  border-left: 0;
  border-top: 0;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 950;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.1em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h3 {
  font-size: 1.55rem;
}

p,
li {
  line-height: 1.68;
  font-size: 1.03rem;
}

.hero-copy p:not(.tag) {
  max-width: 720px;
  font-size: 1.18rem;
}

.cta {
  display: inline-flex;
  margin-top: 20px;
  background: var(--orange);
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  transform: rotate(2deg);
}

.tile {
  min-height: 190px;
  border: 4px solid var(--line);
  box-shadow: 8px 8px 0 var(--line);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 950;
}

.yellow { background: var(--yellow); }
.pink { background: #ffc0dd; }
.blue { background: #bcd4ff; }
.green { background: #b9f2d5; }

.section,
.studio,
.contact,
footer {
  padding: 82px 6vw;
}

.headline {
  max-width: 1050px;
  margin-bottom: 34px;
}

.workspace-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.workspace-grid article,
.pricing article,
.story-grid article,
.contact-box,
.shelf-item {
  border: 4px solid var(--line);
  box-shadow: 8px 8px 0 var(--line);
  background: #fff;
  padding: 26px;
}

.workspace-grid article:nth-child(1) { background: #ffe08a; }
.workspace-grid article:nth-child(2) { background: #cbe5ff; }
.workspace-grid article:nth-child(3) { background: #ffd1e8; }
.workspace-grid article:nth-child(4) { background: #c9f6dd; }

.studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  background: var(--ink);
  color: #fff;
}

.studio p {
  color: #f4ecd1;
}

.studio-menu {
  display: grid;
  gap: 12px;
}

.studio-tab {
  text-align: left;
  background: #fff;
}

.studio-tab.active {
  background: var(--pink);
}

.studio-panel {
  border: 4px solid #fff;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.packages {
  background: #f3e5ff;
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing span {
  display: inline-flex;
  margin-bottom: 18px;
  background: var(--yellow);
  border: 3px solid var(--line);
  padding: 8px 12px;
  font-weight: 950;
}

.pricing .featured {
  background: var(--orange);
  transform: translateY(-18px);
}

.shelf {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.shelf-item {
  min-height: 210px;
}

.shelf-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  background: var(--yellow);
  border-top: 4px solid var(--line);
}

form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

input,
textarea {
  width: 100%;
  border: 3px solid var(--line);
  padding: 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
}

form button {
  background: var(--green);
}

footer {
  background: var(--ink);
  color: #fff;
}

.pop {
  opacity: 0;
  transform: scale(0.96) rotate(-1deg);
  transition: 0.5s ease;
}

.pop.visible {
  opacity: 1;
  transform: scale(1) rotate(0);
}

@media (max-width: 980px) {
  .hamburger {
    display: inline-flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    background: var(--cream);
    padding: 18px;
    border: 3px solid var(--line);
  }

  nav.open {
    display: flex;
  }

  .hero,
  .studio,
  .contact,
  .workspace-grid,
  .pricing,
  .shelf,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .pricing .featured {
    transform: none;
  }
}
