:root {
  --ink: #16212d;
  --muted: #66717d;
  --paper: #fffdf8;
  --white: #ffffff;
  --sky: #66befa;
  --sky-soft: #e7f7ff;
  --lemon: #ffe861;
  --rose: #f2a8a2;
  --tan: #c99a5f;
  --line: rgba(22, 33, 45, 0.14);
  --shadow: 0 28px 80px rgba(59, 139, 190, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(115deg, rgba(255, 232, 97, 0.55), transparent 30rem),
    radial-gradient(circle at 80% 10%, rgba(102, 190, 250, 0.32), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 45%, #fffaf0 100%);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.soft-cursor {
  --x: 50vw;
  --y: 30vh;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at var(--x) var(--y), rgba(255, 232, 97, 0.25), transparent 15rem);
}

.page {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 6px 0 rgba(22, 33, 45, 0.13);
  font-weight: 900;
}

.logo strong {
  color: var(--sky);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav nav a,
.final-links a {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.nav nav a:hover,
.final-links a:hover {
  background: var(--lemon);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  align-items: center;
  gap: 34px;
  min-height: 680px;
  padding: 60px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 54px -80px 38px;
  z-index: -1;
  background:
    repeating-conic-gradient(from -12deg at 78% 30%, rgba(255, 232, 97, 0.46) 0 8deg, transparent 8deg 16deg),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 247, 255, 0.92));
  border: 2px solid rgba(22, 33, 45, 0.12);
  border-radius: 8px;
  transform: rotate(-1.2deg);
  box-shadow: var(--shadow);
}

.copy-panel {
  max-width: 650px;
}

.kicker {
  margin: 0 0 14px;
  color: #2d83bd;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
  overflow-wrap: anywhere;
  text-shadow: 7px 8px 0 rgba(102, 190, 250, 0.23);
}

.lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.actions,
.final-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 6px 0 rgba(22, 33, 45, 0.14);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 7px 8px 0 rgba(22, 33, 45, 0.12);
}

.btn.main {
  background: var(--lemon);
}

.btn.pale {
  background: var(--sky-soft);
}

.photo-card {
  position: relative;
  width: min(100%, 500px);
  justify-self: center;
  padding: 20px 20px 34px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 16px 0 rgba(22, 33, 45, 0.12);
  transform: rotate(-3deg);
  transition: transform 220ms ease;
}

.photo-card::before,
.photo-card::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 30px;
  background: rgba(255, 232, 97, 0.72);
  border: 1px solid rgba(22, 33, 45, 0.08);
  transform: rotate(-12deg);
}

.photo-card::before {
  top: -12px;
  left: 38px;
}

.photo-card::after {
  right: 42px;
  bottom: -12px;
}

.photo-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(22, 33, 45, 0.13));
}

.stamp {
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 2px solid rgba(22, 33, 45, 0.48);
  border-radius: 8px;
  color: rgba(22, 33, 45, 0.56);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.ticker-strip {
  display: flex;
  gap: 12px;
  margin: 8px calc(50% - 50vw) 46px;
  padding: 15px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--lemon);
  border-block: 2px solid var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.ticker-strip span {
  min-width: max-content;
  padding-inline: 28px;
  animation: marquee 14s linear infinite;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.poster-grid article {
  min-height: 205px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 9px 0 rgba(102, 190, 250, 0.18);
}

.poster-grid b {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--sky);
  font-size: 1.08rem;
}

.poster-grid h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.poster-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.56;
}

.banner-showcase {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 22px;
  align-items: center;
  margin: 54px 0;
}

.banner-copy {
  padding: 26px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 9px 0 rgba(22, 33, 45, 0.12);
}

.banner-copy h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.15rem);
  line-height: 1.02;
}

.banner-showcase img {
  width: 100%;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 12px 0 rgba(22, 33, 45, 0.12);
}

.final-panel {
  min-height: 320px;
  display: grid;
  align-content: center;
  padding: 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(231, 247, 255, 0.9)),
    radial-gradient(circle at 90% 0%, rgba(242, 168, 162, 0.45), transparent 18rem);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-panel h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.98;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .banner-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 28px -22px 20px;
  }

  .photo-card {
    order: -1;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 22px, 1180px);
    padding-top: 10px;
  }

  .nav nav {
    width: 100%;
  }

  .nav nav a {
    flex: 1;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.9rem);
  }

  .lead {
    font-size: 1.04rem;
  }

  .btn {
    width: 100%;
  }

  .photo-card {
    transform: rotate(-1deg);
  }

  .final-panel {
    padding: 30px 22px;
  }
}
