.hero {
  background: var(--mist);
  padding: 54px max(28px, calc((100vw - 1320px) / 2)) 0;
}

.hero-stage {
  position: relative;
  width: min(1320px, 100%);
  min-height: 700px;
  margin-inline: auto;
}

.hero-visual {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #4fae2f 100%);
  border-radius: 28px 0 0 28px;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px 0 0 28px;
  box-shadow: inset 0 0 0 1px rgba(46, 139, 29, .18);
  pointer-events: none;
  z-index: 2;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: min(680px, 58%);
  margin-left: auto;
  top: 76px;
  padding: 54px 56px 48px;
  border-radius: 28px;
  border-left: 10px solid var(--green);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-lift);
}

.hero-panel::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 92px;
  height: 92px;
  border-radius: 0 0 28px 0;
  border-right: 18px solid var(--lime);
  border-bottom: 18px solid var(--lime);
  pointer-events: none;
}

.hero-panel h1 { font-size: clamp(34px, 3.25vw, 49px); }
.hero-panel .hero-copy { max-width: 37em; }

.hero-note {
  position: relative;
  z-index: 4;
  margin-top: 34px;
  border-top: none;
}

@media (max-width: 980px) {
  .hero { padding: 32px 24px 0; }
  .hero-stage { min-height: 680px; }
  .hero-visual { width: 50%; }
  .hero-panel { width: 64%; top: 58px; padding: 42px 38px 38px; }
  .hero-panel h1 { font-size: 34px; }
  .hero-panel .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-panel .hero-actions .button:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .hero { padding: 0; overflow: hidden; }
  .hero-stage { min-height: 0; display: flex; flex-direction: column; }
  .hero-visual { position: relative; width: 100%; height: 340px; order: 1; border-radius: 0; }
  .hero-visual::after { border-radius: 0; }
  .hero-panel {
    order: 2;
    top: auto;
    width: calc(100% - 32px);
    margin: -40px 16px 24px;
    padding: 30px 24px 27px;
    border-radius: 22px;
    border-left-width: 8px;
    box-shadow: var(--shadow-lift);
  }
  .hero-panel::after { right: -10px; bottom: -10px; width: 52px; height: 52px; border-width: 10px; border-radius: 0 0 22px 0; }
  .hero-panel h1 { font-size: clamp(26px, 7vw, 34px); }
  .hero-panel .hero-copy { font-size: 15px; }
  .hero-panel .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-panel .hero-actions .button:first-child { grid-column: 1 / -1; }
  .hero-note { margin-top: 0; }
}

@media (max-width: 420px) {
  .hero-visual { height: 290px; min-height: 290px; }
  .hero-panel { padding: 27px 19px 24px; }
  .hero-panel .eyebrow { font-size: 11px; }
  .hero-panel .hero-copy br:nth-child(2) { display: none; }
  .hero-panel .signature { align-items: flex-start; flex-direction: column; gap: 2px; }
}
