/* index.html — page-specific styles */

/* ─── TYPOGRAPHY ─── */

  /* ─── NAVBAR ─── */

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 70% 50%, rgba(200,151,59,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(12,24,48,0.8) 0%, transparent 50%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,151,59,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,151,59,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 5% 80px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
  }

  .hero-left { max-width: 680px; }

  .hero-right {
    opacity: 0;
    animation: fadeIn 1s 0.8s forwards;
  }

  .hero-slider {
    position: relative;
    width: 100%;
  }

  .hero-slider-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(200,151,59,0.15);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  }

  .hero-slider-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 28px; right: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    z-index: 0;
    animation: heroAutoSlide 15s ease-in-out infinite;
  }

  .hero-slide:nth-child(1) { animation-delay: 0s; }
  .hero-slide:nth-child(2) { animation-delay: -5s; }
  .hero-slide:nth-child(3) { animation-delay: -10s; }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
  }

  .hero-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: linear-gradient(to top, rgba(6,13,31,0.95) 0%, transparent 100%);
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    animation: heroCaption 15s ease-in-out infinite;
  }

  .hero-slide:nth-child(1) .hero-slide-caption { animation-delay: 0s; }
  .hero-slide:nth-child(2) .hero-slide-caption { animation-delay: -5s; }
  .hero-slide:nth-child(3) .hero-slide-caption { animation-delay: -10s; }

  .hero-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-slider-dot {
    width: 36px;
    height: 3px;
    padding: 0;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .hero-slider-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
  }

  .hero-slider-dot:nth-child(1)::after { animation: heroDotProgress 15s linear infinite 0s; }
  .hero-slider-dot:nth-child(2)::after { animation: heroDotProgress 15s linear infinite -5s; }
  .hero-slider-dot:nth-child(3)::after { animation: heroDotProgress 15s linear infinite -10s; }

  .hero-slider-dot:hover { background: rgba(255,255,255,0.25); }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

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

  .hero-h1 {
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
  }

  .hero-h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
  }

  .hero-h1 strong {
    font-weight: 600;
    display: block;
  }

  .hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .hero-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,151,59,0.15);
    padding: 40px;
    position: relative;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 40px; right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero-stat { border-left: 2px solid var(--gold); padding-left: 16px; }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

  .hero-card-services { list-style: none; }
  .hero-card-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .hero-card-services li:last-child { border: none; }
  .hero-card-services li::before {
    content: '—';
    color: var(--gold);
    font-size: 10px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
  }

  .scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s 1.5s infinite;
  }

  /* ─── CLIENTS MARQUEE ─── */
  .clients-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    overflow: hidden;
  }

  .clients-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: marquee 45s linear infinite;
  }

  .clients-track:hover { animation-play-state: paused; }

  .client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    min-width: 110px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  }

  .client-logo img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s;
  }

  .client-logo:hover img { transform: scale(1.04); }

  .client-logo--wide img {
    height: 44px;
    max-width: 240px;
  }

  /* ─── SECTION BASE ─── */
  section { position: relative; }

  .section-header {
    margin-bottom: 56px;
  }

  .section-header.center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }

  .section-title {
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 12px;
    line-height: 1.15;
  }

  .section-title em { font-style: italic; color: #6B4F2A; }

  .section-title.white { color: var(--white); }
  .section-title.white em { color: var(--gold-light); }

  .section-desc {
    font-size: 15px;
    color: var(--text-mid);
    margin-top: 16px;
    line-height: 1.8;
    max-width: 520px;
  }

  .section-desc.white { color: rgba(255,255,255,0.6); }

  /* ─── ABOUT ─── */
  .about-section {
    background: var(--off-white);
    padding: 100px 0;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img-frame {
    aspect-ratio: 4/5;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .about-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
  }

  .about-img-placeholder img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
    display: block;
  }

  .about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 24px;
    text-align: center;
    min-width: 120px;
  }

  .about-img-badge .badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: block;
  }

  .about-img-badge .badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
  }

  .about-corner-line {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }

  .about-text .section-title { margin-top: 12px; }

  .about-text .section-header {
    margin-bottom: 28px;
  }

  .about-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
  }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
  }

  .about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .highlight-icon {
    width: 32px;
    height: 32px;
    background: rgba(200,151,59,0.1);
    border: 1px solid rgba(200,151,59,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .highlight-icon svg { width: 14px; height: 14px; stroke: var(--gold); }

  .highlight-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
  }
  .highlight-text span {
    font-size: 12px;
    color: var(--text-light);
  }

  .about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 4px;
    transition: gap 0.25s, color 0.25s;
  }
  .about-link:hover { gap: 16px; color: #6B4F2A; }

  /* ─── PRACTICE AREAS ─── */
  .practice-section {
    background: var(--navy);
    padding: 100px 0;
  }

  .practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 20px;
  }

  .practice-card {
    background: var(--navy-mid);
    padding: 32px 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .practice-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s;
  }

  .practice-card:hover { background: var(--navy-light); }
  .practice-card:hover::before { width: 100%; }

  .practice-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(200,151,59,0.5);
  }

  .practice-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200,151,59,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .practice-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .practice-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
  }

  .practice-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
  }

  .practice-arrow {
    margin-top: auto;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .practice-card:hover .practice-arrow { opacity: 1; transform: translateX(4px); }

  /* ─── STATS ─── */
  .stats-section {
    background: var(--gold);
    padding: 60px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(6,13,31,0.15);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .stat-suffix {
    font-size: 28px;
    font-weight: 400;
    color: rgba(6,13,31,0.6);
  }

  .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(6,13,31,0.6);
    margin-top: 6px;
  }

  /* ─── ATTORNEY SPOTLIGHT ─── */
  .attorney-section {
    background: var(--off-white);
    padding: 100px 0;
  }

  .attorney-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
  }

  .attorney-photo {
    position: relative;
  }

  .attorney-photo-frame {
    aspect-ratio: 3/4;
    background: var(--cream);
    overflow: hidden;
    position: relative;
  }

  .attorney-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    filter: contrast(1.04) saturate(0.96);
  }

  .attorney-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #0c1830, #060d1f);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .attorney-photo-placeholder svg { opacity: 0.15; width: 80px; height: 80px; }

  .attorney-photo::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1.5px solid var(--gold);
    z-index: -1;
  }

  .attorney-content .section-header { margin-bottom: 24px; }

  .attorney-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 8px;
    line-height: 1.1;
  }

  .attorney-role {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: 8px;
    text-transform: uppercase;
  }

  .attorney-divider {
    width: 40px;
    height: 1.5px;
    background: var(--gold);
    margin: 24px 0;
  }

  .attorney-bio {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .attorney-credentials {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .attorney-credentials li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text-dark);
  }

  .cred-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    margin-top: 7px;
    flex-shrink: 0;
  }

  /* ─── TEAM ─── */
  .team-section {
    background: var(--navy);
    padding: 100px 0;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 16px;
  }

  .team-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
  }

  .team-card:hover { border-color: rgba(200,151,59,0.35); transform: translateY(-4px); }

  .team-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #0c1830 0%, #060d1f 100%);
    overflow: hidden;
    position: relative;
  }

  .team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 28%, rgba(200,151,59,0.12) 0%, transparent 65%),
      linear-gradient(to bottom, transparent 55%, rgba(6,13,31,0.55) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200,151,59,0.2);
    z-index: 2;
    pointer-events: none;
  }

  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    filter: contrast(1.04) saturate(0.96);
    transition: transform 0.5s ease;
  }

  .team-photo.avatar-photo {
    background: #f8f6f2;
  }

  .team-photo.avatar-photo::before,
  .team-photo.avatar-photo::after {
    display: none;
  }

  .team-photo.avatar-photo img {
    object-fit: contain;
    object-position: center top;
    filter: none;
    padding: 16px 12px 0;
  }

  .team-card:hover .team-photo img { transform: scale(1.03); }

  .team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #132040, #060d1f);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .team-photo-placeholder svg { opacity: 0.15; width: 48px; height: 48px; }

  .team-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(6,13,31,0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    gap: 8px;
  }

  .team-card:hover .team-photo-overlay { opacity: 1; }

  /* team-social-btn — see shared.css */

  .team-info {
    padding: 20px;
    border-top: 1px solid var(--border-light);
  }

  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
  }

  .team-role {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    line-height: 1.4;
  }

  /* ─── PUBLICATIONS ─── */
  .publications-section {
    background: var(--off-white);
    padding: 100px 0;
  }

  .pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0,0,0,0.08);
    margin-top: 16px;
  }

  .pub-card {
    background: var(--white);
    padding: 36px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .pub-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.4s;
  }

  .pub-card:hover { background: var(--off-white); }
  .pub-card:hover::after { height: 100%; }

  .pub-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .pub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
  }

  .pub-excerpt {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    flex-grow: 1;
  }

  .pub-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .pub-date { font-size: 12px; color: var(--text-light); }

  .pub-read-more {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }

  .pub-card:hover .pub-read-more { gap: 10px; color: #6B4F2A; }

  /* ─── ACT & LAWS ─── */
  .laws-section {
    background: var(--navy-mid);
    padding: 80px 0;
  }

  .laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .law-item {
    border: 1px solid var(--border);
    padding: 24px 20px;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s;
    text-align: center;
  }

  .law-item:hover { border-color: var(--gold); background: rgba(200,151,59,0.04); }

  .law-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border: 1px solid rgba(200,151,59,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .law-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .law-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
  }

  /* ─── CTA ─── */
  .cta-section {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,151,59,0.07) 0%, transparent 60%);
  }

  .cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .cta-title em { font-style: italic; color: var(--gold-light); }

  .cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 44px;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-contact-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }

  .cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .cta-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cta-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .cta-contact-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2px;
  }

  .cta-contact-value {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
  }

  /* ─── FOOTER (uses shared.css fg/fsc/fct classes) ─── */

  /* ─── WHATSAPP FLOAT ─── */

  .wa-tooltip {
    background: var(--navy);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 6px 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
  }

  .wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

  .wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  .wa-btn svg { width: 28px; height: 28px; fill: white; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
  }
  @keyframes heroAutoSlide {
    0%, 26% { opacity: 1; transform: scale(1); z-index: 2; }
    33%, 100% { opacity: 0; transform: scale(1.06); z-index: 0; }
  }
  @keyframes heroCaption {
    0%, 4% { opacity: 0; transform: translateY(8px); }
    8%, 26% { opacity: 1; transform: translateY(0); }
    33%, 100% { opacity: 0; transform: translateY(8px); }
  }
  @keyframes heroDotProgress {
    0%, 26% { transform: scaleX(1); }
    33%, 100% { transform: scaleX(0); }
  }

  /* ─── MOBILE MENU ─── */

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 36px;
      padding-top: 116px;
    }
    .hero-left { max-width: 760px; }
    .hero-right {
      display: block;
      max-width: 620px;
      width: 100%;
    }
    .hero-slider-frame {
      aspect-ratio: 16 / 9;
      max-height: 320px;
    }
    .about-grid, .attorney-grid { grid-template-columns: 1fr; }
    .about-img-wrap { max-width: 480px; }
    .attorney-photo { max-width: 360px; }

  }

  @media (max-width: 768px) {

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(6,13,31,0.15); }
    .pub-grid { grid-template-columns: 1fr; }

    .practice-grid { grid-template-columns: 1fr 1fr; }
    .cta-contact-strip { gap: 24px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-scroll { display: none; }
  }

  @media (max-width: 480px) {
    .practice-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-slider-frame { aspect-ratio: 4 / 3; }
  }
