/* Berhe Law Firm - Article Styles */

/* ==============================================
       ARTICLE HERO HEADER
    ============================================== */
    .article-header {
      background: var(--dark);
      padding: 8rem 3rem 4rem;
      position: relative;
      overflow: hidden;
    }

.article-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,180,200,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 100%, rgba(0,180,200,0.04) 0%, transparent 60%);
      pointer-events: none;
    }

.article-header-inner {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
    }

.article-header-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
      color: rgba(255,255,255,0.4);
      margin-bottom: 2rem;
      transition: color 0.2s ease;
    }

.article-header-back:hover { color: rgba(255,255,255,0.75); }

.article-header-tag {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--teal);
      background: rgba(0,180,200,0.1);
      border: 1px solid rgba(0,180,200,0.2);
      padding: 0.3rem 0.85rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
    }

.article-header-title {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1.75rem;
    }

.article-header-byline {
      font-size: 0.78rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

.article-wrap-inner {
      max-width: 720px;
      margin: 0 auto;
    }

/* ==============================================
       CTA SECTION
    ============================================== */
    .article-cta {
      margin-top: 4rem;
      padding: 3rem;
      background: var(--dark);
      border-radius: 4px;
      text-align: center;
    }

.article-cta-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--teal);
      margin-bottom: 1rem;
    }

.article-cta h2 {
      font-family: var(--serif);
      font-size: 1.65rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 0.875rem;
    }

.article-cta p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
      line-height: 1.75;
      max-width: 480px;
      margin: 0 auto 2rem;
    }

.article-cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

.article-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--teal);
      color: var(--dark);
      padding: 0.9rem 2rem;
      font-family: var(--sans);
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 2px;
      transition: opacity 0.2s ease;
    }

.article-cta-primary:hover { opacity: 0.85; }

.article-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--white);
      padding: 0.9rem 2rem;
      font-family: var(--sans);
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 2px;
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.2s ease;
    }

.article-cta-secondary:hover {
      border-color: rgba(255,255,255,0.5);
      color: var(--white);
    }

.article-cta-practice {
      margin-top: 1.5rem;
      font-size: 0.78rem;
      color: var(--teal);
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: opacity 0.2s ease;
    }

.article-cta-practice:hover { opacity: 0.7; }

@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

a { text-decoration: none; color: inherit; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==============================================
       HARLAN FAB
    ============================================== */
    .harlan-fab {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #00b4c8;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,180,200,0.35);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
    }

.harlan-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,180,200,0.5); }

.harlan-fab svg { width: 26px; height: 26px; }

.harlan-fab-label {
      position: absolute;
      right: 72px;
      background: #0f0e0d;
      color: #fff;
      font-family: "Inter", sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

.harlan-fab:hover .harlan-fab-label { opacity: 1; }

/* ==============================================
       PAGE TRANSITION
    ============================================== */
    .page-transition-overlay {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 99999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

.page-transition-overlay.active { opacity: 1; pointer-events: all; }

/* ==============================================
       FOCUS STATES
    ============================================== */
    *:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
