:root {
  --black: #111111;
  --cream: #fff3db;
  --yellow: #ffd447;
  --pink: #ff5fa2;
  --blue: #3c6df0;
  --green: #48d18c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

.poster {
  position: relative;
  min-height: 840px;
  padding: 30px clamp(18px, 5vw, 76px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.38)),
    repeating-linear-gradient(135deg, #151515 0 34px, #202020 34px 68px);
}

.poster::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 80px;
  width: 480px;
  height: 480px;
  border: 48px solid var(--yellow);
  border-radius: 50%;
  box-shadow: -110px -120px 0 var(--pink), -230px 80px 0 var(--blue);
  opacity: 0.9;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  padding: 13px 17px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: #f5f5f5;
}

.language,
.hero-link {
  border: 2px solid white;
  color: white;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.language {
  padding: 10px 14px;
}

.poster-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  padding-top: 110px;
}

.stamp,
.label {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stamp {
  display: inline-block;
  padding: 10px 14px;
  color: var(--black);
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  text-transform: uppercase;
}

.poster-content p:not(.stamp) {
  max-width: 720px;
  color: #eeeeee;
  font-size: 21px;
  line-height: 1.65;
}

.hero-link {
  display: inline-block;
  margin-top: 28px;
  padding: 17px 24px;
  background: var(--pink);
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 40px;
  padding: 18px;
  color: var(--black);
  background: var(--yellow);
  font-size: clamp(22px, 5vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.split-section,
.blocks,
.campaigns,
.longform,
.contacts {
  padding: 96px clamp(18px, 5vw, 76px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: stretch;
}

.visual-card {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 30px;
  border: 5px solid var(--black);
  background: linear-gradient(145deg, var(--yellow), var(--pink));
  transform: rotate(-2deg);
}

.visual-card span {
  font-size: clamp(76px, 12vw, 150px);
  font-weight: 900;
}

.visual-card p {
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
}

.copy p,
.longform p,
.campaign-grid p,
.block p {
  font-size: 18px;
  line-height: 1.75;
}

.blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 0;
}

.block {
  min-height: 330px;
  padding: 34px;
  border: 3px solid var(--black);
}

.block h3 {
  font-size: 28px;
}

.dark {
  color: white;
  background: var(--black);
}

.yellow {
  background: var(--yellow);
}

.pink {
  background: var(--pink);
}

.blue {
  color: white;
  background: var(--blue);
}

.campaigns {
  background: white;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.campaign-grid div {
  padding: 28px;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
}

.campaign-grid strong {
  color: var(--pink);
  font-size: 42px;
}

.longform {
  color: white;
  background: var(--blue);
}

.longform p:last-child {
  max-width: 980px;
  font-size: 21px;
}

.contacts {
  display: flex;
  justify-content: space-between;
  gap: 46px;
  color: var(--black);
  background: var(--yellow);
}

address {
  display: grid;
  gap: 12px;
  min-width: min(100%, 390px);
  padding: 28px;
  border: 3px solid var(--black);
  background: white;
  font-style: normal;
  box-shadow: 10px 10px 0 var(--black);
}

address a {
  font-size: 25px;
  font-weight: 900;
}

.magazine {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  padding: 96px clamp(18px, 5vw, 76px);
  background: var(--cream);
}

.issue-cover {
  padding: 34px;
  border: 4px solid var(--black);
  background: var(--yellow);
  box-shadow: 14px 14px 0 var(--black);
}

.issue-cover span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: white;
  background: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.columns {
  column-count: 2;
  column-gap: 42px;
  padding: 34px;
  background: white;
  border-top: 12px solid var(--pink);
}

.columns p {
  break-inside: avoid;
  font-size: 20px;
  line-height: 1.75;
}

.media-menu {
  padding: 96px clamp(18px, 5vw, 76px);
  color: white;
  background: var(--black);
}

.menu-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: end;
}

.menu-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border: 3px solid white;
}

.menu-list p {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin: 0;
  padding: 24px;
  border-bottom: 3px solid white;
}

.menu-list p:last-child {
  border-bottom: 0;
}

.menu-list b {
  color: var(--yellow);
  font-size: 24px;
  text-transform: uppercase;
}

.menu-list span {
  color: #eeeeee;
  line-height: 1.7;
}

.production-sheet {
  padding: 96px clamp(18px, 5vw, 76px);
  background: white;
}

.sheet {
  margin-top: 38px;
  border: 3px solid var(--black);
}

.sheet div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  padding: 26px;
  border-bottom: 3px solid var(--black);
}

.sheet div:last-child {
  border-bottom: 0;
}

.sheet span {
  color: var(--pink);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet p {
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .split-section,
  .blocks,
  .campaign-grid,
  .contacts,
  .magazine,
  .menu-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .columns {
    column-count: 1;
  }

  .menu-list p,
  .sheet div {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }
}
