.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 14vh, 9rem) var(--spacing-md) var(--spacing-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 50% 28%, rgba(124, 139, 110, 0.1), transparent 70%),
    radial-gradient(ellipse at 88% 92%, rgba(232, 80, 58, 0.07), transparent 55%),
    var(--bg);
}

/* Faint enso texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../assets/hero-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}

/* ============ Two-column grid — copy left, framed dish right ============ */
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy-col {
  text-align: left;
}

.hero-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-weight: 500;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}

.hero-lede {
  font-size: clamp(1.02rem, 0.95rem + 0.35vw, 1.18rem);
  line-height: 1.85;
  color: var(--ink-dim);
  max-width: 44ch;
  margin-bottom: var(--spacing-lg);
}

/* ============ Framed dish image — r4 treatment ============ */
.hero-image-wrapper {
  position: relative;
  justify-self: center;
  width: min(440px, 100%);
  /* --tilt comes from the inline style; the reveal settles onto it */
}

.hero-image-frame {
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  border: 10px solid #fff;
  outline: 2px dashed rgba(174, 139, 74, 0.55);
  outline-offset: 9px;
  box-shadow: var(--shadow-soft), var(--shadow-lift);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  animation: ken-burns 26s ease-in-out infinite;
  will-change: transform;
}

/* Handwritten-style caption chip pinned to the frame */
.hero-caption {
  position: absolute;
  left: -26px;
  bottom: 34px;
  background: var(--surface);
  border: 1.5px dashed rgba(174, 139, 74, 0.6);
  border-radius: var(--radius-md);
  padding: 0.45rem 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--vermillion-deep);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  animation: float-y 7s ease-in-out infinite;
}

/* Rotating circular badge overlapping the arch */
.spin-badge-wrap {
  position: absolute;
  right: -46px;
  top: -34px;
  width: 118px;
  height: 118px;
  z-index: 2;
}
.spin-badge-wrap svg {
  width: 100%;
  height: 100%;
}
.spin-badge-wrap text {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: var(--ink-faint);
}

.spin-badge-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.spin-badge-center::before {
  content: '';
  grid-area: 1 / 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--vermillion);
}
.spin-badge-center::after {
  content: '';
  grid-area: 1 / 1;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background: var(--vermillion);
}

/* ============ Rating + pill CTAs ============ */
.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.hero-rating {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.hero-rating strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform var(--transition-pop),
    box-shadow var(--transition-pop),
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}
.hero-cta:active {
  transform: scale(0.94, 0.9) translateY(2px) !important;
  transition-duration: 0.09s;
}

/* Primary — vermillion pill with a hard offset shadow */
.hero-cta--primary {
  color: #fff;
  background: linear-gradient(160deg, var(--vermillion), var(--vermillion-deep));
  padding: 1.05em 2.4em;
  border-radius: 999px;
  box-shadow: 0 6px 0 -2px rgba(38, 37, 28, 0.24), var(--shadow-soft);
}
.hero-cta--primary:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 10px 0 -3px rgba(38, 37, 28, 0.2), var(--shadow-lift);
}

/* Ghost — outlined pill that fills on hover */
.hero-cta--ghost {
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  padding: calc(1.05em - 1.5px) calc(2.4em - 1.5px);
  background: transparent;
}
.hero-cta--ghost:hover {
  color: var(--vermillion-deep);
  border-color: var(--vermillion);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* Scroll cue — anchored to the bottom of the hero */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4vh, 2.25rem);
  display: block;
  width: 1px;
  height: 56px;
  background: var(--line-strong);
  overflow: hidden;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vermillion);
  animation: scroll-drip 2.2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 8vh, 4.5rem);
  }
  .hero-copy-col {
    text-align: center;
  }
  .hero-lede {
    margin-inline: auto;
  }
  .hero-meta {
    align-items: center;
  }
  .hero-image-wrapper {
    max-width: 480px;
  }
  .spin-badge-wrap {
    right: -20px;
    top: -26px;
    width: 92px;
    height: 92px;
  }
  .hero-caption {
    left: -8px;
    bottom: 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero-subtitle {
    letter-spacing: 0.3em;
  }
  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-caption {
    display: none;
  }
}
