.hi-practice {
    animation: fadeUp 0.5s ease 0.38s both;
}
.hi-practice {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(184, 146, 42, 0.15);
}
.hi-practice-role {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 14px;
}
.hi-practice-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 1.7vw, 19px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}
.hi-practice-loc {
    font-size: 11.5px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.3);
}
/* -------------------------------------
     HERO
  ------------------------------------- */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
  }

  /* Layered background effects */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 90% at 100% 50%, rgba(200,168,75,0.07) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 0% 0%, rgba(30,49,80,0.8) 0%, transparent 50%),
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200,168,75,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Subtle dot grid */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200,168,75,0.12) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  /* Diagonal accent line */
  .hero-line {
    position: absolute;
    top: 0; right: 28%;
    width: 1px;
    height: 100%;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
  }

  .hero-left {}

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.1s;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.25s;
  }
  .hero h1 em {
    display: block;
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-credential {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.38s;
  }

  .hero-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.5s;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.62s;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* Hero sidebar card */
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,168,75,0.2);
    padding: 36px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.75s;
  }
  .hero-card .hc-title {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(200,168,75,0.15);
    display: block;
  }
  .hero-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-stat .hs-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    min-width: 60px;
  }
  .hero-stat .hs-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
  }

  /* Scroll hint */
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1s;
  }
  .scroll-hint span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }
  .scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200,168,75,0.6), transparent);
    animation: scrollPulse 1.8s ease infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }