/* ============================================================
   LAWRENCE ANDERSEN — Global Law Firm
   Primary Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --gold: #b8965a;
  --gold-light: #d4aa70;
  --gold-pale: #f5ede0;
  --cream: #faf8f5;
  --white: #ffffff;
  --gray-100: #f4f3f0;
  --gray-200: #e8e5df;
  --gray-400: #a09e99;
  --gray-600: #6b6762;
  --gray-800: #2d2b28;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.1);
  --shadow-lg: 0 24px 64px rgba(10,22,40,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-800);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 0;
}
.btn-primary:hover { border-color: var(--gold); color: var(--white); }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--navy); border-color: var(--navy); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.nav-top {
  background: var(--gold);
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  align-items: center;
}
.nav-top a {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-top a:hover { opacity: 1; }
.nav-main {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 76px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-mark {
  width: 52px;
  height: 52px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item > a {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  font-weight: 400;
  padding: 0 22px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item.active > a { color: var(--gold); }
.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-item > a:hover::after, .nav-item.active > a::after { transform: scaleX(1); }
.nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  border-top: 3px solid var(--gold);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s, color 0.2s, padding 0.2s;
}
.nav-dropdown a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 32px;
}
.nav-cta {
  margin-left: 24px;
  font-size: 12px;
  color: var(--white);
  background: var(--gold);
  padding: 10px 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #0a1628 0%, #1a3050 45%, #0d1f3a 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(184, 150, 90, 0.04) 79px,
      rgba(184, 150, 90, 0.04) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(184, 150, 90, 0.04) 79px,
      rgba(184, 150, 90, 0.04) 80px
    );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.9) 50%, rgba(10,22,40,0.3) 100%);
}
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-visual-inner {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 900"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0" stop-color="%231a3050"/><stop offset="1" stop-color="%230d1f3a"/></linearGradient></defs><rect fill="url(%23g)" width="800" height="900"/><g opacity="0.08" fill="%23b8965a"><rect x="0" y="0" width="2" height="900"/><rect x="100" y="0" width="2" height="900"/><rect x="200" y="0" width="2" height="900"/><rect x="300" y="0" width="2" height="900"/><rect x="400" y="0" width="2" height="900"/><rect x="500" y="0" width="2" height="900"/><rect x="600" y="0" width="2" height="900"/><rect x="700" y="0" width="2" height="900"/></g></svg>') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,90,0.2);
  padding: 48px;
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 420px;
}
.hero-stat h3 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 44%;
  max-width: 44%;
  padding-top: 120px;
  margin-left: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.4s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.6s both;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 40px;
  transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 38px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1.2s both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(184,150,90,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── TICKER / MARQUEE ── */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 80px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-left {}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-heading em { font-style: italic; color: var(--gold); }
.about-body {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
}
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.about-stat-box {
  background: var(--navy);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.about-stat-box:hover { background: var(--gold); }
.about-stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transition: background var(--transition);
}
.about-stat-box:hover::before { background: rgba(255,255,255,0.3); }
.about-stat-box h3 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.about-stat-box:hover h3 { color: var(--white); }
.about-stat-box p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.about-stat-box:hover p { color: rgba(255,255,255,0.8); }

/* ── PRACTICE AREAS ── */
.practices {
  padding: 120px 0;
  background: var(--white);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: gap var(--transition);
}
.section-link:hover { gap: 14px; }
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.practice-card {
  background: var(--gray-100);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  display: block;
  color: inherit;
}
.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 0;
  background: var(--navy);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.practice-card:hover::before { height: 100%; }
.practice-card-content { position: relative; z-index: 1; }
.practice-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--gold);
  transition: color var(--transition);
}
.practice-card:hover .practice-icon { color: var(--gold-light); }
.practice-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  transition: color var(--transition);
  line-height: 1.2;
}
.practice-card:hover h3 { color: var(--white); }
.practice-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  transition: color var(--transition);
}
.practice-card:hover p { color: rgba(255,255,255,0.65); }
.practice-card-arrow {
  position: absolute;
  bottom: 36px;
  right: 36px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
  z-index: 1;
}
.practice-card:hover .practice-card-arrow {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

/* ── FEATURED MATTERS ── */
.matters {
  padding: 120px 0;
  background: var(--navy);
}
.matters-header .section-tag { color: var(--gold); }
.matters-header .section-title { color: var(--white); }
.matters-header .section-link { color: var(--gold); }
.matters-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  margin-top: 50px;
}
.matter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 36px;
  transition: var(--transition);
  cursor: pointer;
}
.matter-card:hover {
  background: rgba(184,150,90,0.1);
  border-color: rgba(184,150,90,0.3);
  transform: translateY(-4px);
}
.matter-card.featured {
  background: var(--gold);
  border-color: transparent;
}
.matter-card.featured:hover { background: var(--gold-light); }
.matter-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.matter-card.featured .matter-tag { color: rgba(255,255,255,0.75); }
.matter-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.matter-card.featured .matter-amount { color: var(--white); font-size: 58px; }
.matter-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}
.matter-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.matter-card.featured p { color: rgba(255,255,255,0.8); }

/* ── ATTORNEYS ── */
.attorneys {
  padding: 120px 0;
  background: var(--cream);
}
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.attorney-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.attorney-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.attorney-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attorney-initials {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: rgba(184,150,90,0.3);
  letter-spacing: -0.04em;
}
.attorney-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.attorney-card:hover .attorney-photo-overlay { opacity: 1; }
.attorney-photo-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
  white-space: nowrap;
}
.attorney-card:hover .attorney-photo-link {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.attorney-info { padding: 28px 24px 32px; }
.attorney-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.attorney-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.attorney-practice {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── NEWS INSIGHTS ── */
.insights {
  padding: 120px 0;
  background: var(--white);
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}
.insight-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.insight-card:hover .insight-img { transform: scale(1.04); }
.insight-img-wrap {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.insight-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 14px;
  transition: color var(--transition);
}
.insight-card:hover h3 { color: var(--gold); }
.insight-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.insight-meta {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
}
.insight-meta::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.insight-card.small .insight-img-wrap { aspect-ratio: 4/3; }
.insight-card.small h3 { font-size: 18px; }

/* ── GLOBAL OFFICES ── */
.offices {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.offices::before {
  content: 'GLOBAL';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
}
.offices-header { text-align: center; margin-bottom: 70px; }
.offices-header .section-title { color: var(--white); }
.offices-header .section-tag { color: var(--gold); }
.offices-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.offices-region {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px;
  transition: var(--transition);
}
.offices-region:hover {
  background: rgba(184,150,90,0.08);
  border-color: rgba(184,150,90,0.2);
}
.offices-region h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offices-region ul { display: flex; flex-direction: column; gap: 10px; }
.offices-region li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  cursor: pointer;
}
.offices-region li:hover { color: rgba(255,255,255,0.9); }
.offices-region li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.offices-region li:hover::before { opacity: 1; }

/* ── AWARDS & RECOGNITION ── */
.awards {
  padding: 80px 0;
  background: var(--gold-pale);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.award-item {
  text-align: center;
  opacity: 0.65;
  transition: opacity var(--transition);
  cursor: default;
}
.award-item:hover { opacity: 1; }
.award-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.award-desc {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.awards-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 140px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner .section-tag { color: var(--gold); margin-bottom: 24px; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta-inner h2 em { font-style: italic; color: var(--gold-light); }
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #060e1a;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,90,0.1);
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; }
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE HEADER ── */
.page-hero {
  background: var(--navy);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 59px,
    rgba(184,150,90,0.02) 59px,
    rgba(184,150,90,0.02) 60px
  );
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
  max-width: 760px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.8;
  margin-top: 24px;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── PRACTICE DETAIL ── */
.practice-detail { padding: 100px 0; }
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.practice-main h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.practice-main p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}
.practice-sidebar {
  position: sticky;
  top: 120px;
}
.sidebar-card {
  background: var(--navy);
  padding: 36px;
  margin-bottom: 16px;
}
.sidebar-card h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 12px; }
.sidebar-card li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-card li a::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.sidebar-card li a:hover { color: var(--white); }
.contact-sidebar {
  background: var(--gold);
  padding: 36px;
  text-align: center;
}
.contact-sidebar h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-sidebar p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-sidebar .btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.contact-sidebar .btn-white:hover { background: var(--navy); color: var(--white); }

/* ── ATTORNEY PROFILE ── */
.attorney-profile-section { padding: 80px 0 120px; }
.attorney-profile-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.attorney-profile-photo {
  position: sticky;
  top: 120px;
}
.attorney-photo-large {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.attorney-photo-large .initials {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(184,150,90,0.25);
}
.attorney-contact-info { display: flex; flex-direction: column; gap: 12px; }
.attorney-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.attorney-contact-item svg { color: var(--gold); flex-shrink: 0; }
.attorney-profile-info {}
.attorney-profile-name {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.attorney-profile-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 32px;
}
.profile-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 40px;
}
.profile-tab {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.profile-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.profile-tab:hover { color: var(--navy); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-area {}
.contact-form-area h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.contact-form-area > p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.75;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  border-radius: 0;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-area {}
.contact-office-card {
  background: var(--navy);
  padding: 40px;
  margin-bottom: 16px;
}
.contact-office-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-office-card address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}
.contact-office-card .phone {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1.1); transform-origin: top; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container, .container-wide { padding: 0 28px; }
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid, .attorney-profile-grid { grid-template-columns: 1fr; gap: 50px; }
  .practices-grid { grid-template-columns: 1fr 1fr; }
  .matters-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .offices-regions { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .hero-content { width: 100%; max-width: 100%; padding: 80px 0 60px; }
  .hero-content { max-width: 100%; }
  .practice-layout { grid-template-columns: 1fr; }
  .practice-sidebar { position: static; }
  .nav-top { display: flex; flex-wrap: wrap; gap: 10px; padding: 8px 20px; justify-content: center; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container, .container-wide { padding: 0 20px; }
  .practices-grid { grid-template-columns: 1fr; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .offices-regions { grid-template-columns: 1fr; }
  .awards-inner { gap: 32px; }
  .hero { min-height: auto; padding: 60px 0; height: auto; }
  .hero-content { padding-top: 80px; padding-bottom: 60px; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
