/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-copy h1 .accent {
  color: var(--gold);
  display: block;
  font-size: 52px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.hero-divider .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-divider span {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-on-dark);
  font-weight: 400;
}

.hero-desc {
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  max-width: 480px;
  margin-bottom: 26px;
}

.advocate-name {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
}

.advocate-role {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--text-on-dark);
  font-size: 14px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: linear-gradient(160deg, var(--black-softer), var(--black-softer));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-on-dark-muted);
  position: relative;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold);
  opacity: 0.35;
  transform: translate(14px, 14px);
  z-index: -1;
}

.hero-photo-frame i {
  font-size: 54px;
  color: var(--gold-dark);
}

.hero-photo-frame span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 30px;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--success-green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform var(--transition);
}

.whatsapp-float i {
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-frame {
    max-width: 320px;
  }

  .hero-copy h1,
  .hero-copy h1 .accent {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}
