:root {
  --navy-950: #081321;
  --navy-900: #111e31;
  --navy-800: #1a2a42;
  --navy-700: #263b59;
  --gold: #f0ad00;
  --gold-deep: #d79600;
  --lime: #b9cc3b;
  --steel: #8090a6;
  --mist: #e7ebee;
  --paper: #f4f5f2;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5e6876;
  --line: rgba(17, 30, 49, 0.16);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: var(--lime);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.04;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(8, 19, 33, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: flex;
  width: 48px;
  height: 40px;
  padding: 0.25rem 0.4rem;
  align-items: end;
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 7px 7px 0 var(--navy-700);
}

.brand-symbol i {
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.18em;
  line-height: 1;
}

.brand-symbol i:last-child {
  transform: translateY(-0.22rem);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 0.34rem;
  color: var(--lime);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-copy {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  content: "";
  left: 0;
}

.menu-lines::before {
  top: -7px;
}

.menu-lines::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.primary-navigation {
  position: absolute;
  top: 76px;
  left: -1rem;
  right: -1rem;
  display: none;
  min-height: calc(100vh - 76px);
  padding: 2rem 1rem;
  background: var(--navy-950);
}

.primary-navigation.is-open {
  display: grid;
  align-content: start;
}

.primary-navigation a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: clamp(1.3rem, 6vw, 1.9rem);
  font-weight: 760;
  text-decoration: none;
}

.primary-navigation .contact-link {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  color: var(--navy-950);
  background: var(--lime);
  border: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-900);
  background-size: 72px 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 11vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2)) 4rem;
}

.eyebrow,
.section-index,
.card-label {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 12vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.78rem 1.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--lime);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline:hover {
  color: var(--navy-950);
  background: var(--white);
}

.hero-credential {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  max-width: 620px;
  margin-top: 2.4rem;
  align-items: center;
}

.hero-credential span {
  width: 48px;
  height: 2px;
  background: var(--lime);
}

.hero-credential p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.hero-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--mist);
}

.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 19, 33, 0.46));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 17% center;
}

.media-code {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  min-width: 130px;
  padding: 0.7rem 0.8rem;
  color: var(--white);
  background: var(--navy-950);
  border-left: 5px solid var(--gold);
}

.media-code span {
  color: var(--lime);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.media-code strong {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.hero-side {
  display: none;
}

.area-ribbon {
  display: grid;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.area-ribbon > div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.area-ribbon span {
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 900;
}

.area-ribbon strong {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.focus {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.8rem, 10vw, 8.5rem) 0;
}

.focus-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}

.section-index {
  color: var(--navy-700);
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.focus-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.focus-grid {
  display: grid;
  gap: 1rem;
}

.focus-card {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: 1.5rem;
  overflow: hidden;
  align-content: space-between;
}

.focus-card::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  right: -55px;
  bottom: -55px;
  transform: rotate(45deg);
  background: currentColor;
  opacity: 0.06;
}

.focus-card-main {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--navy-900);
  background-size: 64px 100%;
}

.focus-card-secondary {
  color: var(--navy-950);
  background: var(--gold);
}

.focus-code {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.focus-card-main .focus-code {
  color: var(--lime);
}

.focus-card .card-label {
  margin-top: 4rem;
}

.focus-card-secondary .card-label {
  color: var(--navy-700);
}

.focus-card h3 {
  max-width: 620px;
  margin-bottom: 1.1rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.focus-card p:not(.card-label) {
  max-width: 620px;
  opacity: 0.7;
}

.focus-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.focus-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.focus-card li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0.68em;
  left: 0;
  background: var(--lime);
}

.focus-arrow {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.25rem;
  font-size: 2rem;
}

.practice {
  padding: clamp(4.8rem, 10vw, 8.5rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy-950);
}

.practice-head h2 {
  color: var(--white);
}

.practice .section-index {
  color: var(--lime);
}

.practice-grid {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-grid article {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-grid span {
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.practice-grid h3 {
  margin: 1.6rem 0 0.9rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.practice-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.practice-note {
  max-width: 740px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.69rem;
}

.firm {
  display: grid;
  background: var(--white);
}

.firm-mark {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
  align-items: center;
  justify-items: center;
  color: var(--navy-950);
  background:
    linear-gradient(90deg, rgba(17, 30, 49, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(17, 30, 49, 0.07) 1px, transparent 1px),
    var(--mist);
  background-size: 52px 52px;
}

.firm-mark::before {
  position: absolute;
  content: "";
  width: 56%;
  height: 70%;
  top: 15%;
  left: 22%;
  background: var(--gold);
  box-shadow: 28px 28px 0 var(--navy-700);
}

.firm-mark span {
  position: relative;
  z-index: 2;
  font-size: clamp(6rem, 28vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 1;
}

.firm-mark span:first-child {
  transform: translateX(20%);
}

.firm-mark span:last-child {
  transform: translate(-20%, -10%);
}

.firm-copy {
  padding: clamp(4rem, 10vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.firm-lead {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 4vw, 1.55rem);
}

.firm-copy > p:not(.section-index):not(.firm-lead) {
  color: var(--muted);
}

.firm-principles {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.firm-principles span {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.8rem, 10vw, 8.5rem) 0;
}

.team-head {
  margin-bottom: 2.7rem;
}

.team-grid {
  display: grid;
  gap: 3.5rem;
}

.person {
  display: grid;
  gap: 1.5rem;
}

.person-photo {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.person-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  border: 1px solid rgba(17, 30, 49, 0.13);
  pointer-events: none;
}

.person-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 280ms ease;
}

.person:hover .person-photo img {
  transform: scale(1.02);
}

.person-photo span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
}

.person-role {
  margin: 0 0 0.7rem;
  color: var(--navy-700);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person h3 {
  margin-bottom: 1rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.person-copy > p:not(.person-role) {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  display: grid;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-900);
  background-size: 70px 100%;
}

.contact-copy {
  padding: clamp(4.8rem, 10vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.contact h2 {
  color: var(--white);
}

.contact .section-index {
  color: var(--lime);
}

.contact-copy > p:not(.section-index) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-copy .button {
  margin-top: 1rem;
}

.contact-panel {
  padding: 1.5rem;
  color: var(--navy-950);
  background: var(--gold);
}

.contact-panel > div {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(17, 30, 49, 0.25);
}

.contact-panel > div > span {
  color: var(--navy-700);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel a,
.contact-panel address,
.contact-panel p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.contact-panel > div a + a {
  margin-top: 0.2rem;
}

.map-link {
  display: flex;
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--sans) !important;
  font-size: 0.67rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.5);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.69rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  font-weight: 950;
}

.footer-brand p,
.footer-legal {
  margin: 0;
}

.footer-brand p {
  color: var(--white);
  font-weight: 800;
}

.site-footer > a {
  color: var(--lime);
}

@media (min-width: 660px) {
  .area-ribbon {
    grid-template-columns: repeat(5, 1fr);
  }

  .area-ribbon > div {
    grid-template-columns: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  .area-ribbon > div:last-child {
    border-right: 0;
  }

  .focus-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .focus-heading .section-index {
    grid-row: 1 / span 2;
  }

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

  .practice-grid article {
    padding: 1.8rem;
  }

  .practice-grid article:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-panel > div {
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
  }

  .site-footer {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
  }

  .site-footer > a {
    grid-column: 2;
  }
}

@media (min-width: 940px) {
  body.nav-open {
    overflow: auto;
  }

  .header-inner {
    min-height: 86px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-navigation,
  .primary-navigation.is-open {
    position: static;
    display: flex;
    min-height: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
  }

  .primary-navigation a {
    padding: 0.4rem 0;
    border: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .primary-navigation .contact-link {
    margin: 0 0 0 0.35rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.64rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr) 56px;
    min-height: calc(100svh - 86px);
  }

  .hero-copy {
    display: grid;
    padding-top: 4.5rem;
    padding-right: clamp(3rem, 6vw, 6rem);
    padding-bottom: 4rem;
    align-content: center;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 5.15vw, 4.7rem);
  }

  .hero-media {
    min-height: calc(100svh - 86px);
  }

  .hero-media img {
    min-height: calc(100svh - 86px);
  }

  .hero-side {
    display: flex;
    padding: 1.5rem 0;
    align-items: center;
    justify-content: space-around;
    color: var(--navy-950);
    background: var(--lime);
    writing-mode: vertical-rl;
  }

  .hero-side span {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.18em;
  }

  .focus-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .focus-card {
    min-height: 610px;
    padding: 2rem;
  }

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

  .practice-grid article {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .practice-grid article:nth-child(2n) {
    border-left: 0;
  }

  .practice-grid article:last-child {
    border-right: 0;
  }

  .firm {
    grid-template-columns: 1fr 1fr;
  }

  .firm-mark {
    min-height: 680px;
  }

  .firm-copy {
    display: grid;
    padding-left: clamp(4rem, 7vw, 7rem);
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    align-content: center;
  }

  .person {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
    align-items: end;
  }

  .contact {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-copy {
    display: grid;
    padding-right: clamp(4rem, 8vw, 8rem);
    align-content: center;
  }

  .contact-panel {
    padding: clamp(3rem, 7vw, 6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
