/* ─── Hero ───────────────────────────────────────────── */
.hero-frame {
  position: relative;
  overflow: hidden;
}

@media (min-width: 780px) {
  .hero-frame {
    padding-bottom: 90px;
    margin-bottom: -90px;
  }
}

.hero {
  padding: 26px var(--pad) 24px;
  position: relative;
  overflow: hidden;
}

.hero-edition {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--coffee);
  transform: rotate(-2deg);
}

.hero-edition::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--ink);
}

.hero-title {
  font-family: var(--f-brand);
  font-weight: 400;
  font-size: clamp(72px, 18vw, 124px);
  line-height: .88;
  letter-spacing: .01em;
  margin-top: 8px;
}

.hero-title .coffee,
.hero-title .day { display: block; }
.hero-title .coffee { color: var(--coffee); }
.hero-title .day { color: var(--ink); transform: translateX(14px); }

.hero-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.hero-aeropress {
  position: relative;
  margin: 0 auto;
  width: min(78%, 360px);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.35));
}

.hero-aeropress img { width: 100%; }

/* Hands */
.hand-floating {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.28));
  display: none;
}

.hand-rock {
  right: 0;
  bottom: 0;
  transform-origin: bottom right;
  transform: scaleX(-1);
}

.hand-ok {
  right: 0;
  top: 0;
  transform-origin: top right;
}

.hero-sig {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--f-hand);
  font-size: 24px;
  color: var(--coffee);
  line-height: 1;
  opacity: .7;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 3;
}

.hero-sig i { font-style: normal; margin-left: 1px; opacity: .8; }

.hero-trazo {
  position: absolute;
  z-index: 2;
  width: 300px;
  opacity: .82;
  pointer-events: none;
  left: 14px;
  top: 230px;
  transform: rotate(-3deg);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.meta-block .label {
  font-family: var(--f-stamp);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coffee);
}

.meta-block .value {
  font-family: var(--f-hand);
  font-size: 26px;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 4px;
}

.meta-block .value small {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink);
  opacity: .7;
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

.hero-tagline {
  margin-top: 20px;
  font-family: var(--f-hand);
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
}

.hero-tagline u {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-color: var(--coffee);
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 780px) {
  .hero { padding: 48px 56px 40px; }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
    margin-top: 14px;
  }

  .hero-title {
    font-size: clamp(96px, 11vw, 168px);
    margin-top: 0;
    align-self: start;
  }

  .hero-center {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 18px;
  }

  .hero-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 22px;
  }

  .meta-block .value { font-size: 22px; }
  .hero-tagline { margin-top: 0; font-size: 22px; }
  .hero-cta { margin-top: 4px; }

  .hero-left {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .hero-aeropress {
    position: relative;
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(2deg);
    z-index: 2;
  }

  .hero-aeropress img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    object-fit: contain;
    object-position: center;
  }

  .hand-floating { display: block; }

  .hand-rock {
    width: 14%;
    max-width: 180px;
    right: -30px;
    bottom: -20px;
    transform: scaleX(-1) rotate(-12deg);
  }

  .hand-ok {
    width: 20%;
    max-width: 260px;
  }

  .hero-sig { top: 24px; right: 32px; font-size: 28px; }

  .hero-trazo {
    width: 380px;
    left: 48px;
    top: auto;
    bottom: 200px;
    transform: rotate(-3deg);
    opacity: .65;
  }
}
