/* ============================================================
   hero.css — Hero / landing section styles
   ============================================================ */

#hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 74px; overflow: hidden;
}

/* ── Left panel ── */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 5rem; position: relative;
}
/* Subtle pink glow — bottom right, away from text */
.hero-left::before {
  content: ''; position: absolute;
  bottom: -8%; right: 0;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--pink-lt) 0%, transparent 70%);
  pointer-events: none; opacity: .5;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300; line-height: 1.0;
  color: var(--dark); margin-bottom: 1rem;
}
.hero-name em { display: block; font-style: italic; color: var(--pink); }

.hero-eyebrow {
  font-size: .68rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 2rem;
}

.hero-desc {
  font-size: .9rem; font-weight: 300; line-height: 1.9;
  color: var(--text-lt); max-width: 380px; margin-bottom: 3rem;
}

.hero-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.tag {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem .9rem; border: 1px solid var(--pink-lt);
  border-radius: 999px; color: var(--pink-dk);
  background: var(--pink-xs); transition: all .25s; cursor: default;
}
.tag:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

.hero-cta {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 400; color: var(--pink-dk); text-decoration: none; transition: gap .3s;
}
.hero-cta svg { transition: transform .3s; }
.hero-cta:hover { gap: 1.2rem; }
.hero-cta:hover svg { transform: translateX(4px); }

/* ── Right panel — slideshow ── */
.hero-right {
  position: relative;
  background: var(--pink-xs);
  overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; bottom: -8%; right: -8%;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--pink-lt); opacity: .5; pointer-events: none; z-index: 0;
}
.hero-right::after {
  content: ''; position: absolute; top: -6%; left: -6%;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--green-xs); opacity: .65; pointer-events: none; z-index: 0;
}

/* Slider track */
.hero-slider {
  position: relative; width: 100%; height: 100%; min-height: 600px;
  z-index: 1;
}

/* Individual slides */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .65s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Placeholder tiles */
.hero-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--pink-lt);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}
.hero-placeholder svg { opacity: .35; }

/* Prev / Next arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(255,255,255,.82); border: 1px solid var(--beige-md);
  border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--pink-dk);
  box-shadow: 0 2px 12px rgba(28,26,27,.08);
  transition: background .2s, transform .2s;
}
.hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hero-prev { left: 1.2rem; }
.hero-next { right: 1.2rem; }

/* Dot indicators */
.hero-dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .5rem; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(168,80,89,.3); border: none; padding: 0; cursor: pointer;
  transition: background .25s, transform .25s;
}
.hero-dot.active {
  background: var(--pink-dk); transform: scale(1.35);
}

.hero-badge {
  position: absolute; bottom: 2.5rem; left: 2.5rem; z-index: 4;
  background: rgba(255,255,255,.92); border: 1px solid var(--beige-md);
  border-radius: 1rem; padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(28,26,27,.06);
}
.hero-badge p { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-lt); margin-bottom: .3rem; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--dark); }

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem; }
  .hero-right { min-height: 60vw; }
  .hero-slider { min-height: 60vw; }
  .hero-placeholder { min-height: 60vw; }
}