.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-teal);
  color: var(--color-cream);
  padding: var(--space-section) var(--container-pad);
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 8%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-terracotta) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
  animation: fze-drift 12s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -6%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-teal-light) 30%, transparent) 0%, transparent 70%);
  pointer-events: none;
  animation: fze-drift 15s ease-in-out infinite reverse;
}
@media (prefers-reduced-motion: reduce) { .hero::after { animation: none; } }

.hero__eyebrow {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--color-cream) 75%, transparent);
  margin: 0 0 var(--space-xs);
}
.hero h1 { font-size: clamp(2.25rem, 1.3rem + 3.2vw, 3.75rem); margin: 0 0 var(--space-sm); }
.hero__lede { font-size: var(--text-lg); color: color-mix(in srgb, var(--color-cream) 92%, transparent); }

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }

.hero__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 700 / 394;
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-teal-dark);
}
.hero__video,
.hero__media-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media-fallback { z-index: 0; }
.hero__video { z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

.hero__eyebrow,
.hero__trust-line,
.hero__lede,
.hero__inline-pills,
.hero__actions {
  animation: fze-hero-fade-up 0.8s var(--ease-out-soft) both;
}
.hero__eyebrow      { animation-delay: 0.05s; }
.hero__trust-line   { animation-delay: 0.22s; }
.hero__lede         { animation-delay: 0.32s; }
.hero__inline-pills { animation-delay: 0.42s; }
.hero__actions      { animation-delay: 0.5s; }
.hero__hours-chip { animation: fze-hero-fade-up 0.8s var(--ease-out-soft) both; animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__trust-line, .hero__lede, .hero__inline-pills, .hero__actions, .hero__hours-chip {
    animation: none;
  }
}

/* ---------- Overlapping Card layout (homepage hero) ---------- */
.hero--overlay {
  min-height: 32rem;
  display: block;
  padding: 0;
}
.hero--overlay::before,
.hero--overlay::after {
  display: none; /* full-bleed media already covers the section; the decorative blobs would be hidden under it */
}
.hero__media--full {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
  /* Drop the base component's fixed ratio: this variant is a full-bleed
     backdrop sized by the hero, not a framed 700x394 panel. Without this the
     media stops short of the section and leaves a dead teal strip below it. */
  aspect-ratio: auto;
}
.hero__media--full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--color-teal-dark) 55%, transparent) 0%, transparent 62%);
}
.hero__media--full video,
.hero__media--full img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay-card {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: var(--space-xl) var(--space-xl) 0;
  background: var(--color-cream-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  color: var(--color-ink);
}
.hero__overlay-card .hero__eyebrow { color: var(--color-terracotta); }
.hero__overlay-card h1 { color: var(--color-ink); font-size: var(--text-3xl); }
.hero__overlay-card .hero__lede { color: var(--color-ink-soft); }

.hero__trust-line {
  font-size: var(--text-xs);
  color: color-mix(in srgb, var(--color-ink) 65%, transparent);
  margin: -0.3rem 0 var(--space-sm);
}

.hero__inline-pills { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin: var(--space-sm) 0; }
.hero__inline-pill {
  font-size: var(--text-xs);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--color-border);
  color: var(--color-teal);
  transition: background var(--duration-fast) var(--ease-out-expo);
}
.hero__inline-pill:hover { background: var(--color-teal-pale); }

.hero__hours-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: var(--space-md) var(--space-xl) var(--space-xl);
  background: var(--color-teal-dark);
  color: var(--color-cream);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: var(--text-sm);
}
.hero__hours-chip strong { font-family: var(--font-display); font-size: var(--text-base); }
.hero__hours-chip__note { font-size: var(--text-xs); opacity: 0.75; }

@media (max-width: 700px) {
  .hero__overlay-card { margin: var(--space-lg) var(--space-sm) 0; }
  .hero__hours-chip { margin: var(--space-sm) var(--space-sm) var(--space-lg); }
}
