:root {
  --blue: #183a5a;
  --blue-dark: #0d1b2a;
  --blue-bright: #007ac1;
  --crimson: #841617;
  --blue-gray: #d6dde4;
  --blue-soft: #edf3f7;
  --orange: #c97d1b;
  --orange-dark: #9e5d11;
  --paper: #fbfcfd;
  --ink: #151922;
  --text: #4d5663;
  --line: rgba(24, 58, 90, 0.13);
  --glass: rgba(255, 255, 255, 0.66);
  --shadow: 0 28px 80px rgba(13, 27, 42, 0.16);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(132, 22, 23, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 6%, rgba(0, 122, 193, 0.18), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(201, 125, 27, 0.1), transparent 25rem),
    linear-gradient(135deg, #f7f9fb, var(--blue-soft) 42%, var(--paper));
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.72;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.38), transparent 68%);
  content: "";
}

img { display: block; max-width: 100%; }
a { color: var(--orange-dark); font-weight: 700; text-decoration: none; }
a:hover, a:focus-visible { color: var(--crimson); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--blue-dark);
  color: white;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,0.38);
  background: rgba(251, 252, 253, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
}
.nav {
  width: min(100% - 32px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  color: var(--blue-dark);
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 12px 30px rgba(34, 73, 100, 0.24);
  font-size: 1.45rem;
  font-weight: 800;
}
.brand strong,
.brand small { display: block; }
.brand strong {
  color: var(--blue-dark);
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand small {
  color: var(--text);
  font-size: 0.76rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: var(--blue-dark);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 760;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.62);
  color: var(--crimson);
}
.nav-links .call-link {
  background: linear-gradient(135deg, var(--crimson), var(--blue-dark));
  color: white;
  box-shadow: 0 14px 28px rgba(132, 22, 23, 0.2);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 15px;
  background: rgba(255,255,255,0.62);
  cursor: pointer;
}
.menu-toggle span:first-child,
.menu-toggle span:first-child::before,
.menu-toggle span:first-child::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  border-radius: 4px;
  background: var(--blue-dark);
  content: "";
  transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
}
.menu-toggle span:first-child::before { transform: translateY(-6px); }
.menu-toggle span:first-child::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] span:first-child::before {
  transform: translateY(2px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:first-child::after {
  transform: translateY(0) rotate(-45deg);
}

.glass {
  border: 1px solid rgba(255,255,255,0.62);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(145%);
}
.hero {
  width: min(100% - 32px, var(--max));
  min-height: calc(92vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 1.25rem;
  align-items: center;
  padding: 2rem 0 3rem;
}
.hero > img {
  width: 100%;
  height: min(680px, 78vh);
  min-height: 460px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}
.hero-card {
  min-width: 0;
  margin-left: -7rem;
  padding: clamp(1.35rem, 3.4vw, 2.8rem);
  border-radius: calc(var(--radius) + 8px);
}
.eyebrow,
.section-label,
.meta {
  color: var(--crimson);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2,
h3 {
  color: var(--blue);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.7rem, 5.7vw, 5.35rem);
  line-height: 0.98;
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.08;
}
h3 {
  margin-bottom: 0.4rem;
  font-size: 1.45rem;
  line-height: 1.15;
}
.office-lines p {
  margin: 0.12rem 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.hero-intro {
  max-width: 660px;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}
.primary-button {
  background: linear-gradient(135deg, var(--crimson), var(--blue-dark));
  color: white;
}
.primary-button:hover,
.primary-button:focus-visible {
  color: white;
  transform: translateY(-1px);
}
.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.64);
  color: var(--blue-dark);
}
.page-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 4rem 0;
}
.mission {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
}
.snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0 3rem;
}
.snapshot-card {
  min-height: 138px;
  padding: 1.35rem;
  border-radius: var(--radius);
}
.snapshot-card span,
.card-number {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--crimson);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.snapshot-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}
.copy-panel,
.content-card {
  min-width: 0;
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2.5rem);
}
.copy-panel p:last-child,
.content-card p:last-child { margin-bottom: 0; }
.page-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 5rem 0 2rem;
}
.page-hero .glass {
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
}
.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}
.grid {
  display: grid;
  gap: 1.1rem;
}
.attorney-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.attorney-card,
.gallery-card,
.link-group,
.news-card {
  overflow: hidden;
  border-radius: var(--radius);
}
.attorney-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.1rem;
  padding: 1rem;
}
.attorney-card img {
  width: 160px;
  height: 205px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}
.staff-list,
.client-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.client-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.client-list li,
.staff-list li {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.54);
  color: var(--ink);
}
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-card {
  display: block;
  color: var(--text);
}
.gallery-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}
.gallery-card div {
  padding: 1.2rem;
}
.gallery-card h2,
.link-group h2,
.news-body h2 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.12;
}
.photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.photo-grid img,
.feature-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-grid img {
  height: 420px;
  object-fit: cover;
}
.feature-photo {
  max-height: 760px;
  object-fit: contain;
  background: rgba(255,255,255,0.5);
}
.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.link-group {
  padding: 1.5rem;
  overflow-wrap: anywhere;
}
.link-group ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}
.news-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
}
.news-preview {
  display: block;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  background: var(--blue-dark);
}
.news-preview img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 500ms ease;
}
.news-preview:hover img,
.news-preview:focus-visible img {
  transform: scale(1.04);
}
.news-body {
  padding: 2rem;
}
.article-image {
  width: min(100%, 760px);
  margin: 2rem auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.approach-section {
  padding-top: 2rem;
}
.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.approach-grid .content-card {
  min-height: 300px;
}
.closing-cta .content-card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.closing-cta .button {
  margin-top: 0.5rem;
}
.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 2rem auto 0;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: rgba(36, 23, 37, 0.72);
  font-size: 0.9rem;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0.8rem;
    border-radius: 22px;
    background: rgba(255,254,252,0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
  }
  .nav-links[data-open="true"] {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-links a { min-height: 48px; }
  .hero,
  .mission,
  .snapshot,
  .approach-grid,
  .attorney-grid,
  .gallery-grid,
  .photo-grid,
  .link-grid,
  .news-card {
    grid-template-columns: 1fr;
  }
  .hero-card { margin-left: 0; margin-top: -7rem; }
  .hero > img { min-height: 420px; height: 54vh; }
  .client-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav {
    min-height: 68px;
  }
  .brand {
    max-width: calc(100% - 58px);
  }
  .brand > span:last-child {
    min-width: 0;
  }
  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand small { display: none; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  h1 {
    font-size: clamp(2.18rem, 10vw, 3.05rem);
    line-height: 1.03;
  }
  h2 {
    font-size: clamp(1.45rem, 8vw, 2.05rem);
  }
  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }
  .hero,
  .page-section,
  .page-hero,
  .site-footer,
  .nav { width: min(100% - 22px, var(--max)); }
  .hero {
    min-height: auto;
    padding-top: 1rem;
  }
  .hero > img {
    min-height: 300px;
    height: 38vh;
    border-radius: 24px;
  }
  .hero-card {
    margin-top: -3.5rem;
    padding: 1.15rem;
  }
  .hero-card,
  .copy-panel,
  .content-card,
  .page-hero .glass { border-radius: 22px; }
  .snapshot-card {
    min-height: 118px;
  }
  .snapshot-card span,
  .card-number {
    margin-bottom: 1rem;
  }
  .attorney-card { grid-template-columns: 94px 1fr; }
  .attorney-card img { width: 94px; height: 122px; border-radius: 16px; }
  .gallery-card img,
  .photo-grid img { height: 260px; }
  .client-list { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}
