* {
  box-sizing: border-box;
}

:root {
  --sky: #1688c8;
  --cream: #fff5d9;
  --yellow: #f7c64f;
  --apple: #cf3d1f;
  --timber: #603312;
  --forest: #244725;
  --ink: #17130e;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1.45;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(100svh, 960px);
  overflow: hidden;
  background: var(--sky);
  border-bottom: 8px solid var(--ink);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgb(0 0 0 / 48%));
}

.hero__art {
  width: 100%;
  height: 100%;
  min-height: min(100svh, 960px);
  object-fit: cover;
  object-position: center;
}

.hero__cue {
  position: absolute;
  z-index: 1;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem 0.65rem 1.1rem;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  border: 2px solid rgb(255 245 217 / 80%);
  background: rgb(23 19 14 / 72%);
}

.hero__cue svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  animation: bounce 1.8s ease-in-out infinite;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  width: min(1160px, calc(100% - 3rem));
  min-height: 80svh;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.intro::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 90px;
  height: 9px;
  content: "";
  background: var(--apple);
  box-shadow: 110px 0 0 var(--yellow), 220px 0 0 var(--forest);
}

.intro__stamp {
  display: grid;
  place-items: center;
  width: clamp(170px, 20vw, 240px);
  aspect-ratio: 1;
  padding: 1rem;
  justify-self: center;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-6deg);
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--apple);
}

.intro__stamp span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.intro__stamp strong {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.intro__copy {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--apple);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0 0 2rem;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.intro__copy p {
  max-width: 720px;
  margin: 0 0 1.2rem;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.intro__copy .lede {
  font-weight: 600;
}

.intro__copy .warning {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 0.75rem;
  color: var(--cream);
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-1deg);
  background: var(--apple);
  box-shadow: 5px 5px 0 var(--ink);
}

.callout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) max(1.5rem, calc((100% - 1160px) / 2));
  color: var(--cream);
  text-align: center;
  border-block: 7px solid var(--ink);
  background-color: var(--forest);
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgb(255 255 255 / 5%) 18px 20px);
}

.callout p {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.2rem, 6vw, 6rem);
  line-height: 1;
}

.callout p:first-child {
  color: var(--yellow);
  transform: rotate(-3deg);
}

.callout p:last-child {
  color: #f27946;
  transform: rotate(3deg);
}

.callout span {
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

footer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1.4rem;
  color: var(--cream);
  font-weight: 700;
  text-align: center;
  background: var(--ink);
}

footer span[aria-hidden] {
  color: var(--yellow);
}

@keyframes bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
  }

  .hero::after {
    height: 35%;
  }

  .hero__art {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }

  .hero__cue {
    bottom: 0.8rem;
    padding-block: 0.45rem;
    font-size: 0.9rem;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: min(100% - 2rem, 620px);
    padding: 5.5rem 0 4.5rem;
  }

  .intro__stamp {
    width: 150px;
    justify-self: start;
  }

  .intro__stamp strong {
    font-size: 2.8rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .callout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .callout p {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  footer {
    flex-wrap: wrap;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__cue svg {
    animation: none;
  }
}
