/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(from #0A0906 l c h / 0.1) 0%,
    oklch(from #0A0906 l c h / 0.0) 30%,
    oklch(from #0A0906 l c h / 0.5) 70%,
    oklch(from #0A0906 l c h / 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-32) clamp(var(--space-6), 6vw, var(--space-16)) var(--space-20);
  max-width: var(--content-wide);
  margin-inline: auto;
}

.hero-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 2rem + 8vw, 10rem);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-4);
  text-shadow: 0 4px 32px oklch(0 0 0 / 0.6);
}

.hero-genre {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero-origin {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-dot { animation: scrollDot 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ── Bio Strip ───────────────────────────────── */
.bio-strip { background: var(--color-surface); }

.bio-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: center;
}

.bio-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.bio-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.bio-strip-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  text-align: center;
  padding: var(--space-8);
  border-left: 1px solid var(--color-border);
}

.stat-num {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

@media (max-width: 640px) {
  .bio-strip-inner { grid-template-columns: 1fr; }
  .bio-strip-stats { flex-direction: row; border-left: none; border-top: 1px solid var(--color-border); padding: var(--space-6) 0 0; }
}

/* ── Credentials ─────────────────────────────── */
.credentials-section { background: var(--color-bg); }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.cred-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cred-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.cred-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.cred-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.cred-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ── Booking CTA ─────────────────────────────── */
.booking-cta {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.cta-heading {
  font-size: clamp(1rem, 2.5vw, var(--text-2xl));
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.3;
  white-space: nowrap;
}
.cta-heading em {
  font-style: italic;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.15em;
}

.cta-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-top: var(--space-4);
}

/* ── Promo Video ─────────────────────────────── */
.promo-video-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.promo-video-heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.video-frame {
  position: relative;
  margin-top: var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #000;
  max-width: 760px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg), 0 0 60px oklch(from #C9A84C l c h / 0.08);
}
.promo-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0 0 0 / 0.35);
  transition: opacity var(--transition);
  cursor: pointer;
}
.video-play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.play-btn:hover {
  background: var(--color-primary-hover);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}
.video-caption {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  font-style: italic;
}
.video-frame--portrait {
  max-width: 380px;
}
.video-disclaimer {
  margin-top: var(--space-2);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  letter-spacing: 0.02em;
  font-style: normal;
}
.promo-video--portrait {
  aspect-ratio: 9/16;
  object-fit: cover;
}
