/* =============================================
   STYLE.CSS — Law Firm Website
   =============================================
   Table of Contents:
   1.  CSS Variables (Design Tokens)
   2.  CSS Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Navigation
   7.  Hero Section
   8.  Section Shared Styles
   9.  Practice Areas Section
   10. Stats Section
   11. Attorney Cards (Homepage Snapshot)
   12. Testimonials Section
   13. Footer CTA Banner
   14. Site Footer
   15. Floating Action Buttons (FAB)
   16. Attorney Profile Modal
   17. Page Hero Banners (Inner Pages)
   18. About Page
   19. Services Page
   20. Attorneys Page
   21. Contact Page
   22. Skip Link (Accessibility)
   23. Responsive — Tablet (768px+)
   24. Responsive — Desktop (1024px+)
   ============================================= */

/* ─── 1. CSS VARIABLES ─────────────────────── */
:root {
  --navy:       #1a2a4a;
  --navy-dark:  #111d33;
  --gold:       #c9a84c;
  --gold-dark:  #b08a35;
  --gold-light: #e0bf74;
  --cream:      #f5f5f0;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --overlay:    rgba(26, 42, 74, 0.88);
  --whatsapp:   #25D366;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --max-width:  1200px;
  --nav-height: 80px;

  --transition:      0.3s ease;
  --transition-slow: 0.6s ease;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);

  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ─── 2. CSS RESET & BASE ──────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

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

/* ─── 3. TYPOGRAPHY ────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: var(--space-2);
}

p:last-child {
  margin-bottom: 0;
}

/* ─── 4. LAYOUT UTILITIES ──────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.section {
  padding-block: var(--space-6);
}

.section-alt {
  background-color: var(--cream);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-1);
}

.section-title {
  margin-bottom: var(--space-2);
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.gold-line {
  display: block;
  width: 56px;
  height: 3px;
  background-color: var(--gold);
  margin: var(--space-2) auto 0;
}

/* ─── 5. BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ─── 6. NAVIGATION ────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--navy);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.transparent {
  background-color: transparent;
}

.site-header.scrolled {
  background-color: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.85;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(201, 168, 76, 0.45);
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy-dark);
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  z-index: 999;
}

.nav-menu.open {
  display: flex;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 2px;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 6px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── 7. HERO SECTION ──────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-height);
  background-color: #0d1829;
}

/* ── Left: Text Panel ── */
.hero-left {
  flex: 1;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(201, 168, 76, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, #0d1829 0%, #1a2a4a 65%, #111d33 100%);
  display: flex;
  align-items: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  pointer-events: none;
}

.hero-left-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  text-align: center;
}

/* ── Right: Visual Panel ── */
.hero-right {
  flex: 1;
  background: linear-gradient(160deg, #0a1520 0%, #1a2a4a 50%, #0d1829 100%);
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
  /* When hero image is ready:
     background: url('../images/hero-bg.jpg') center / cover no-repeat; */
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
  /* When hero image is added, change to: background: rgba(10, 21, 32, 0.55); */
}

.hero-right-decor {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.22);
  position: relative;
}

.hero-emblem::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.hero-emblem::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

/* Corner ornaments */
.hero-corner-tl,
.hero-corner-br {
  position: absolute;
  width: 52px;
  height: 52px;
  pointer-events: none;
}

.hero-corner-tl {
  top: var(--space-4);
  left: var(--space-4);
  border-top: 2px solid rgba(201, 168, 76, 0.45);
  border-left: 2px solid rgba(201, 168, 76, 0.45);
}

.hero-corner-br {
  bottom: var(--space-4);
  right: var(--space-4);
  border-bottom: 2px solid rgba(201, 168, 76, 0.45);
  border-right: 2px solid rgba(201, 168, 76, 0.45);
}

/* Floating stats badge */
.hero-badge-float {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background-color: var(--gold);
  color: var(--navy);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 2;
  text-align: center;
}

.hero-badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}

.hero-badge-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Text elements */
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 6px 16px;
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

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

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-4);
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  justify-content: center;
}

.hero-actions .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hero-actions .btn-outline-white {
  font-size: 14px !important;
  padding: 0.45em 1em;
  border-width: 2px;
  border-radius: 1em;
  line-height: inherit;
  font-weight: 900;
}

.hero-actions .btn-hero-cta {
  background: #fbca1f;
  color: #000;
  font-family: inherit;
  font-weight: 900;
  font-size: 14px;
  padding: 0.45em 1em;
  border: 2px solid #000;
  border-radius: 1em;
  box-shadow: 3px 3px 0 #000;
  transform: none;
}

.hero-actions .btn-hero-cta:hover,
.hero-actions .btn-hero-cta:focus-visible {
  background: #fbca1f;
  color: #000;
  border-color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

.hero-actions .btn-hero-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

/* Trust bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}

.hero-trust-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ─── 8. SECTION SHARED ────────────────────── */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-gold-top {
  border-top: 3px solid var(--gold);
}

/* ─── 9. PRACTICE AREAS SECTION ────────────── */
.practice-areas {
  background-color: var(--white);
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.practice-card {
  padding: var(--space-4);
  text-align: center;
}

.practice-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  font-size: 1.6rem;
  color: var(--gold);
  transition: background-color var(--transition), transform var(--transition);
}

.practice-card:hover .practice-icon {
  background-color: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}

.practice-card h3 {
  margin-bottom: var(--space-1);
  font-size: 1.2rem;
}

.practice-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.practice-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-2);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: gap var(--transition);
}

.practice-card .card-link:hover {
  gap: 10px;
}

/* ─── 9c. PRACTICE CATEGORY PANELS ─────────── */
.practice-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.practice-category-panel {
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: var(--space-5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.category-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.category-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap var(--transition);
  margin-top: var(--space-2);
}

.category-link:hover {
  gap: 10px;
}

@media (min-width: 768px) {
  .practice-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── 10. STATS SECTION ────────────────────── */
.stats-section {
  background-color: var(--navy);
  padding-block: var(--space-6);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  text-align: center;
}

.stat-item {
  padding: var(--space-3);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-1);
  display: block;
}

.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ─── 11. ATTORNEY CARDS (HOMEPAGE) ─────────── */
.attorneys-section {
  background-color: var(--cream);
}

.attorneys-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 720px;
  margin-inline: auto;
}

.attorney-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
}

.attorney-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  margin-bottom: var(--space-3);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attorney-initials {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--navy);
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.attorney-name {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.attorney-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.attorney-bio-short {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.attorney-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.specialty-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
}

/* ─── 12. TESTIMONIALS ─────────────────────── */
.testimonials-section {
  background-color: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.testimonial-card {
  padding: var(--space-4);
  position: relative;
  background: var(--white);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  padding-top: var(--space-3);
  margin-bottom: var(--space-3);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-case {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ─── 13. FOOTER CTA BANNER ────────────────── */
.footer-cta {
  background-color: var(--gold);
  padding-block: var(--space-5);
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.footer-cta-sub {
  font-size: 1rem;
  color: rgba(26, 42, 74, 0.78);
  margin-bottom: 0;
}

/* ─── 14. SITE FOOTER ──────────────────────── */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-3);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-practice {
  margin-top: var(--space-4);
}

.social-links {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: var(--space-3);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── 15. FLOATING ACTION BUTTONS ──────────── */
.fab-container {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-3);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.fab {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.fab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.fab-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  animation: fabPulse 2.8s ease-in-out infinite;
}

.fab-call {
  background-color: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--navy-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-dark);
}

.fab:hover .fab-tooltip {
  opacity: 1;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ─── 16. ATTORNEY PROFILE MODAL ───────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--white);
  border-radius: var(--radius-md);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  background-color: var(--navy);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.modal-close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background-color var(--transition);
  cursor: pointer;
  border: none;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.modal-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.modal-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.modal-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.modal-title-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-body {
  padding: var(--space-4);
}

.modal-section {
  margin-bottom: var(--space-4);
}

.modal-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--border);
}

.modal-bio {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-dark);
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-education li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.modal-education i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.modal-footer {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

/* ─── 17. PAGE HERO BANNERS (INNER PAGES) ───── */
.page-hero {
  background-color: var(--navy);
  padding: var(--space-7) 0 var(--space-5);
  margin-top: var(--nav-height);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-3);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: var(--gold);
}

.breadcrumb-current {
  color: var(--gold);
}

/* ─── 18. ABOUT PAGE ───────────────────────── */
.about-story {
  background-color: var(--white);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}

.about-story-text h2 {
  margin-bottom: var(--space-3);
}

.about-story-text p {
  color: var(--text-muted);
  line-height: 1.85;
}

.about-highlight {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3);
  background-color: rgba(201, 168, 76, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--space-4);
}

.about-highlight-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.values-section {
  background-color: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.value-card {
  padding: var(--space-4);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-1);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── 19. SERVICES PAGE ────────────────────── */
.services-nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-2);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.services-nav-inner {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav-inner::-webkit-scrollbar {
  display: none;
}

.service-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 2px;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition);
  border: 1px solid transparent;
}

.service-nav-link:hover,
.service-nav-link.active {
  color: var(--navy);
  background-color: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-section {
  padding-block: var(--space-6);
  scroll-margin-top: calc(var(--nav-height) + 56px);
}

.service-section:nth-child(even) {
  background-color: var(--cream);
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}

.service-icon-large {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.service-content h2 {
  margin-bottom: var(--space-3);
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.service-list li i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-cta-box {
  background-color: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  color: var(--white);
}

.service-cta-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.service-cta-box p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-3);
}

/* ─── 20. ATTORNEYS PAGE ───────────────────── */
.attorneys-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 720px;
  margin-inline: auto;
}

/* ─── 21. CONTACT PAGE ─────────────────────── */
.contact-info-strip {
  background-color: var(--navy);
  padding-block: var(--space-5);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  text-align: center;
}

.contact-info-item i {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-2);
}

.contact-info-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-map-section {
  background-color: var(--white);
  padding-block: var(--space-5);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.contact-wa-section {
  background-color: var(--cream);
  padding-block: var(--space-5);
}

.contact-wa-card {
  max-width: 560px;
  margin-inline: auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--whatsapp);
}

.contact-wa-icon {
  font-size: 3rem;
  color: var(--whatsapp);
  margin-bottom: var(--space-3);
}

.contact-wa-card h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.contact-wa-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border: 2px solid var(--whatsapp);
  font-size: 1rem;
  padding: 14px 32px;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.office-hours {
  background-color: var(--white);
  padding-block: var(--space-5);
}

.hours-table {
  max-width: 480px;
  margin-inline: auto;
  border-collapse: collapse;
  width: 100%;
}

.hours-table th,
.hours-table td {
  padding: 12px var(--space-2);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hours-table th {
  font-weight: 700;
  color: var(--navy);
  background-color: var(--cream);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-closed {
  color: #dc2626;
  font-style: italic;
}

/* ─── 9b. PRACTICE AREA TABS ───────────────── */
.practice-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.tab-btn {
  padding: 9px 22px;
  border: 2px solid rgba(201, 168, 76, 0.45);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.practice-card.hidden {
  display: none;
}

/* ─── 22. DISCLAIMER OVERLAY ───────────────── */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 30, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  overflow-y: auto;
}

.disclaimer-overlay.hidden {
  display: none;
}

.disclaimer-box {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  border-radius: 4px;
  border-top: 5px solid var(--gold);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  margin: auto;
}

.disclaimer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-3);
}

.disclaimer-firm-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.disclaimer-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}

.disclaimer-body {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid #deded6;
  border-radius: 3px;
  padding: var(--space-4);
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: var(--space-5);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.disclaimer-body p {
  margin-bottom: var(--space-3);
  text-align: justify;
}

.disclaimer-body p:last-child {
  margin-bottom: 0;
}

.disclaimer-agree-btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  min-width: 220px;
}

.disclaimer-agree-btn:hover {
  background-color: #b8953e;
  transform: translateY(-1px);
}

.disclaimer-agree-btn:active {
  transform: translateY(0);
}

/* ─── 22b. SKIP LINK ────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-3);
  z-index: 9999;
  background-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-2);
}

/* ─── 23. RESPONSIVE — TABLET (768px+) ──────── */
@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    align-items: center;
    gap: var(--space-4);
    z-index: auto;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  /* Hero split layout activates at tablet */
  .hero {
    flex-direction: row;
    min-height: 100vh;
  }

  .hero-left {
    flex: 0 0 54%;
    padding: var(--space-7) var(--space-5);
  }

  .hero-left-inner {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .hero-right {
    flex: 0 0 46%;
    min-height: auto;
    order: 0;
  }

  .hero-emblem {
    width: 240px;
    height: 240px;
    font-size: 6rem;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .attorneys-grid,
  .attorneys-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-section-inner {
    grid-template-columns: 1fr 280px;
    gap: var(--space-6);
  }
}

/* ─── 24. RESPONSIVE — DESKTOP (1024px+) ────── */
@media (min-width: 1024px) {
  .hero-left {
    flex: 0 0 52%;
    padding: var(--space-7) 80px;
  }

  .hero-right {
    flex: 0 0 48%;
  }

  .hero-emblem {
    width: 280px;
    height: 280px;
    font-size: 7rem;
  }

  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .about-story-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .attorneys-grid,
  .attorneys-page-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-inline: auto;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
