.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  overflow: visible;
  z-index: 2;
  padding-right: 20px;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border: var(--border);
  box-shadow: 8px 8px 0 var(--orange);
  transform: rotate(1deg);
}



.photo-note {
  position: absolute;
  right: 10px;
  bottom: -20px;
  max-width: 240px;
  padding: 0.85rem;
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  box-shadow: 5px 5px 0 var(--pink);
  font-size: 0.9rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.photo-note::before {
  content: "PORK SMASH BURGER";
  display: block;
  margin-bottom: 0.5rem;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}



.hero::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  left: 10%;
  bottom: 40px;
  opacity: 0.25;
}
.floating-acorn{
  position: absolute;
  right: 800px;
  top: 90px;

  width: 240px;

  opacity: 0.12;

  z-index: 1;
}
@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .floating-acorn,
  .hero-acorn {
    width: 200px;
    top: 10px;
    right: 20px;
    opacity: 0.35;
    z-index: 1;
  }

  .hero-visual {
    overflow: visible;
  }
}

@media (max-width: 650px) {
  .hero-visual {
    overflow: visible;
  }

  .hero-photo {
    transform: none;
    box-shadow: 6px 6px 0 var(--orange);
  }

  .photo-note {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
    transform: none;
    box-shadow: 5px 5px 0 var(--pink);
  }
}