/* ═══════════════════════════════════════════════════════
   GLOBAL AUCTION — MAIN STYLESHEET (NVIDIA DESIGN SYSTEM)
   Theme: Angular engineering-grade, monochrome canvas with
          NVIDIA Green (#76b900) highlights.
   No soft shadows, flat geometric surfaces, 2px border radius.
   ═══════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --primary:          #76b900; /* NVIDIA Green */
  --on-primary:       #000000;
  --primary-dark:     #5a8d00;
  
  --ink:              #000000;
  --canvas:           #ffffff;
  
  --surface-dark:     #000000;
  --surface-soft:     #f7f7f7;
  --surface-elevated: #1a1a1a;
  
  --hairline:         #cccccc;
  --hairline-strong:  #5e5e5e;
  
  --body:             #1a1a1a;
  --mute:             #757575;
  --stone:            #898989;
  --ash:              #a7a7a7;
  
  --on-dark:          #ffffff;
  --on-dark-mute:     rgba(255, 255, 255, 0.7);
  --link-blue:        #0046a4;

  /* Layout Constants */
  --nav-h: 64px;
  --transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
  --spacing-section: 64px;
  --max-width: 1280px;
}

/* ── Reset & Base Styles ────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--canvas);
  color: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: 0;
}

.section-dark h1, .section-dark h2, .section-dark h3,
.hero h1, .hero h2, .hero h3,
.footer h1, .footer h2, .footer h3 {
  color: var(--on-dark);
}

/* ── Layout Container ───────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.mt-2 { margin-top: 8px; }

/* ── Header / Primary Navigation ────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background-color: var(--surface-dark);
  border-bottom: 1px solid var(--hairline-strong);
  transition: var(--transition);
}

.nav.scrolled {
  height: 56px;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.nav-container {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  border: 2px solid var(--primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-firm {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.5px;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--on-dark-mute);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--surface-elevated);
  border: 1px solid var(--hairline-strong);
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: var(--transition);
  border-radius: var(--radius);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--on-dark-mute);
}

.nav-dropdown-item:hover {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-all {
  border-top: 1px solid var(--hairline-strong);
  margin-top: 4px;
  color: var(--primary);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background-color: var(--primary-dark);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--on-dark);
  transition: var(--transition);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  line-height: 1.25;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-ghost {
  background-color: transparent;
  color: var(--on-dark);
  border: 1px solid var(--on-dark);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--ink);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: rgba(118, 185, 0, 0.05);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--on-dark);
  border: 1px solid var(--hairline-strong);
}

.btn-outline-light:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 13px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* ── Hero Section (Deep Black Canvas) ───────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 64px) 0 var(--spacing-section);
  background-color: var(--surface-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000 30%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-badge-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--on-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 18px;
  color: var(--on-dark-mute);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  background-color: var(--surface-elevated);
  border-top: 1px solid var(--hairline-strong);
  margin-top: 64px;
}

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

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  border-right: 1px solid var(--hairline-strong);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-top: 8px;
  text-align: center;
}

/* ── Section Rhythm & Spacing ───────────────────────── */
.section {
  padding: var(--spacing-section) 0;
  background-color: var(--canvas);
}

.section-dark {
  background-color: var(--surface-dark);
}

.section-header {
  text-align: left;
  max-width: 800px;
  margin-bottom: 40px;
  position: relative;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--mute);
  font-size: 16px;
  line-height: 1.6;
}

.section-dark .section-title {
  color: var(--on-dark);
}

.section-dark .section-subtitle {
  color: var(--on-dark-mute);
}

.section-cta {
  text-align: left;
  margin-top: 32px;
}

/* ── Card Systems (Angular, 1px Border, Corner Squares) ─ */

/* Signature NVIDIA Corner Square auto-injection */
.practice-card, .service-card, .result-card, .insight-card {
  position: relative;
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.practice-card::after, .service-card::after, .result-card::after, .insight-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
}

/* Card Hover States - Hairline transitions and slight scale or background shift */
.practice-card:hover, .service-card:hover, .result-card:hover, .insight-card:hover {
  border-color: var(--primary);
}

/* Practice Card specifics */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.practice-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.practice-card-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.practice-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.practice-card-desc {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.6;
  flex: 1;
}

.practice-card-arrow {
  margin-top: 24px;
  color: var(--primary);
  font-weight: 700;
}

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

/* Service Card (3:2 visual style) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--surface-soft);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--surface-soft);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.5;
  flex: 1;
}

.service-cta {
  margin-top: 16px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}

/* ── Distinction / Highlights Section ────────────────── */
.section-distinction {
  background-color: var(--surface-soft);
}

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

.distinction-content .section-title {
  text-align: left;
}

.distinction-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.distinction-pillars {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  gap: 16px;
}

.pillar-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  width: 32px;
}

.pillar-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.5;
}

.distinction-visual {
  position: relative;
}

.distinction-card {
  background-color: var(--surface-dark);
  color: var(--on-dark);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-strong);
}

.distinction-quote {
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.distinction-card p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.distinction-sig {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.distinction-accent {
  position: absolute;
  top: 12px; left: 12px;
  width: 100%; height: 100%;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

/* ── Case Results Section (Alternating Theme) ───────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  padding: 24px;
  border: 1px solid var(--hairline-strong);
  background-color: var(--surface-elevated);
}

.result-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.result-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-bottom: 8px;
}

.result-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 12px;
}

.result-desc {
  font-size: 15px;
  color: var(--on-dark-mute);
  line-height: 1.5;
}

.result-year {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hairline-strong);
}

.results-grid-sm .result-card, .results-grid-lg .result-card {
  background-color: var(--canvas);
  border-color: var(--hairline);
}

.results-grid-sm .result-title, .results-grid-lg .result-title {
  color: var(--ink);
}

.results-grid-sm .result-desc, .results-grid-lg .result-desc {
  color: var(--body);
}

/* ── Team Grids (Attorneys) ─────────────────────────── */
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.attorney-card {
  display: flex;
  flex-direction: column;
}

.attorney-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attorney-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-soft);
}

.attorney-photo-placeholder span {
  font-size: 32px;
  font-weight: 700;
  color: var(--mute);
}

.attorney-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.attorney-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.attorney-focus {
  font-size: 13px;
  color: var(--mute);
}

/* ── Testimonials (User Feedback) ───────────────────── */
.section-testimonials {
  background-color: var(--surface-soft);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  padding: 32px;
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author strong {
  display: block;
  color: var(--ink);
}

.testimonial-author span {
  color: var(--mute);
  font-weight: 400;
}

.testimonials-nav {
  display: none;
}

/* ── Insights (Blog) ────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.insight-image {
  margin: -24px -24px 16px -24px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.insight-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.insight-excerpt {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.5;
  flex: 1;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mute);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--surface-soft);
}

/* ── CTA Banner ──────────────────────────────────────── */
.section-cta-banner {
  background-color: var(--surface-dark);
  padding: 64px 0;
  border-top: 1px solid var(--hairline-strong);
}

.cta-banner-content {
  text-align: left;
  max-width: 800px;
}

.cta-banner-content h2 {
  font-size: 28px;
  color: var(--on-dark);
  margin-bottom: 12px;
}

.cta-banner-content p {
  color: var(--on-dark-mute);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
}

/* ── Subpages Base / Page Hero ──────────────────────── */
.page-hero {
  background-color: var(--surface-dark);
  padding: calc(var(--nav-h) + 40px) 0 40px;
  border-bottom: 1px solid var(--hairline-strong);
}

.page-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 8px;
}

.page-hero-sub {
  color: var(--on-dark-mute);
  font-size: 16px;
}

.breadcrumb-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--on-dark-mute);
  margin-top: 8px;
}

.post-main-image {
  margin-bottom: 32px;
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.post-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Detail layout (2-Columnsplit) ─────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.detail-content {
  font-size: 16px;
  line-height: 1.6;
}

.detail-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 32px;
}

.detail-content h2:first-child {
  margin-top: 0;
}

.detail-content p {
  margin-bottom: 16px;
}

.detail-text {
  color: var(--body);
}

.detail-section {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.detail-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  background-color: var(--canvas);
}

.tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.detail-results {
  margin-top: 40px;
}

.detail-results h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ── Sidebar ─────────────────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background-color: var(--surface-soft);
  position: relative;
}

.sidebar-widget::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Sidebar details page sub-classes */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background-color: var(--surface-soft);
  position: relative;
}

.sidebar-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
}

.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.sidebar-attorney {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.sidebar-attorney:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-attorney-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
}

.sidebar-attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-attorney-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hairline);
  font-weight: 700;
  color: var(--mute);
  font-size: 13px;
}

.sidebar-attorney strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.sidebar-attorney span {
  display: block;
  font-size: 12px;
  color: var(--mute);
}

.sidebar-cta p {
  font-size: 14px;
  color: var(--mute);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ── Tables & Profile Info ──────────────────────────── */
.profile-table, .data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}

.profile-table td, .data-table th, .data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
}

.data-table th {
  font-weight: 700;
  background-color: var(--surface-soft);
  border-bottom: 2px solid var(--hairline);
}

.profile-table tr:hover, .data-table tr:hover {
  background-color: rgba(118, 185, 0, 0.02);
}

/* ── Global Footer (Black Canvas, 6 Columns) ────────── */
.footer {
  background-color: var(--surface-dark);
  color: var(--on-dark-mute);
  padding: 64px 0 32px;
  border-top: 1px solid var(--hairline-strong);
  font-size: 14px;
}

.footer-top {
  margin-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-logo img {
  max-height: 48px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-est {
  font-size: 12px;
  color: var(--mute);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: var(--on-dark);
}

.footer-social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-nav-group, .footer-contact-group {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: var(--on-dark-mute);
}

.footer-nav-list a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-info p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact-info a {
  color: var(--on-dark-mute);
}

.footer-contact-info a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--surface-elevated);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--mute);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--mute);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ── Form Inputs & Focus Styling ────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid var(--hairline);
  background-color: var(--canvas);
  color: var(--ink);
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%235e5e5e' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ── Contact Page Specifics ─────────────────────────── */
.page-hero-sm {
  padding: 80px 0 50px;
  background-color: var(--surface-dark);
  border-bottom: 1px solid var(--hairline-strong);
  margin-top: var(--nav-h);
  position: relative;
}

.page-hero-sm::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background-color: var(--primary);
}

.page-hero-sm .section-label {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.page-hero-sm .page-hero-title {
  color: var(--on-dark);
  font-size: 38px;
  font-weight: 800;
  margin-top: 8px;
}

.page-hero-sm .page-hero-sub {
  color: var(--on-dark-mute);
  font-size: 16px;
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  position: relative;
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  z-index: 2;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--mute);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-disclaimer {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.6;
  margin-top: 32px;
  padding: 20px;
  background-color: var(--surface-soft);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  position: relative;
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 12px;
  height: 12px;
  background-color: var(--hairline-strong);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary);
  background-color: var(--canvas);
}

.contact-info-card:hover::before {
  background-color: var(--primary);
}

.contact-info-card h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--link-blue);
  font-weight: 700;
}

.contact-info-card a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.message {
  padding: 16px 20px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.message--success {
  background-color: rgba(118, 185, 0, 0.08);
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.message--error {
  background-color: rgba(224, 36, 36, 0.08);
  border: 1px solid #e02424;
  color: #c81e1e;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrap {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* ── Inline Link Blue override ───────────────────────── */
.link-inline, .detail-content a:not(.btn):not(.tag) {
  color: var(--link-blue);
  text-decoration: underline;
}

.link-inline:hover, .detail-content a:not(.btn):not(.tag):hover {
  color: var(--primary);
}

/* ── Responsive Adaptations ─────────────────────────── */
@media (max-width: 1024px) {
  .practice-grid, .services-grid, .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attorneys-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hamburger drawer toggle required on real mobile */
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stat {
    border-bottom: 1px solid var(--hairline-strong);
  }
  
  .hero-stat:nth-child(even) {
    border-right: none;
  }
  
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) {
    border-bottom: none;
  }
  
  .distinction-grid, .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .practice-grid, .services-grid, .insights-grid, .attorneys-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--hairline-strong);
  }
  
  .hero-stat:last-child {
    border-bottom: none;
  }
}
